| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- <template>
- <div class="label-wrapper">
- <div v-if="!labelList[0]" class="nonefont">暂无标签</div>
- <div v-else class="label-box" v-for="(item, index) in labelList" :key="index">
- <div class="title">{{ item.name }}</div>
- <div class="list">
- <div
- class="label-item"
- :class="{ on: label.disabled }"
- v-for="(label, j) in item.label"
- :key="j"
- @click="selectLabel(label)"
- >
- {{ label.label_name }}
- </div>
- </div>
- </div>
- <div class="footer">
- <Button type="primary" class="btns" @click="subBtn">确定</Button>
- <Button type="primary" class="btns" ghost @click="cancel">取消</Button>
- </div>
- </div>
- </template>
- <script>
- import { getUserLabel, putUserLabel } from '@/api/user';
- export default {
- name: 'userLabel',
- props: {
- uid: {
- type: String | Number,
- default: 0,
- },
- only_get: {
- default: false,
- },
- selectDataLabel: {
- type: Array,
- default: () => {
- [];
- },
- },
- },
- data() {
- return {
- labelList: [],
- activeIds: [],
- unLaberids: [],
- };
- },
- watch: {
- uid: {
- handler(nVal, oVal) {
- if (nVal != oVal) {
- this.getList();
- }
- },
- deep: true,
- },
- },
- mounted() {
- this.getList();
- },
- methods: {
- getList() {
- getUserLabel(this.uid || 0).then((res) => {
- if (this.selectDataLabel && this.selectDataLabel.length) {
- this.selectDataLabel.map((el) => {
- res.data.map((re) => {
- re.label.map((label) => {
- if (label.id === el.id) {
- label.disabled = true;
- }
- });
- });
- });
- }
- res.data.map((el) => {
- el.label.map((label) => {
- if (label.disabled) {
- this.activeIds.push(label.id);
- }
- });
- });
- this.labelList = res.data;
- });
- },
- selectLabel(label) {
- if (label.disabled) {
- let index = this.activeIds.indexOf(label.id);
- this.activeIds.splice(index, 1);
- label.disabled = false;
- } else {
- this.activeIds.push(label.id);
- label.disabled = true;
- }
- },
- // 确定
- subBtn() {
- let unLaberids = [];
- if (this.only_get) {
- this.labelList.map((item) => {
- item.label.map((i) => {
- if (i.disabled == true) {
- unLaberids.push({ id: i.id, label_name: i.label_name });
- }
- });
- });
- this.$emit('activeData', unLaberids);
- return;
- }
- this.labelList.map((item) => {
- item.label.map((i) => {
- if (i.disabled == false) {
- unLaberids.push(i.id);
- }
- });
- });
- this.unLaberids = unLaberids;
- putUserLabel(this.uid, {
- label_ids: this.activeIds,
- un_label_ids: this.unLaberids,
- })
- .then((res) => {
- this.$emit('onceGetList');
- this.activeIds = [];
- this.unLaberids = [];
- this.$Message.success(res.msg);
- this.$emit('close');
- })
- .catch((error) => {
- this.$Message.error(error.msg);
- });
- },
- cancel() {
- this.activeIds = [];
- this.unLaberids = [];
- this.$emit('close');
- },
- },
- };
- </script>
- <style lang="stylus" scoped>
- .label-wrapper {
- .list {
- display: flex;
- flex-wrap: wrap;
- .label-item {
- margin: 10px 8px 10px 0;
- padding: 3px 8px;
- background: #EEEEEE;
- color: #333333;
- border-radius: 2px;
- cursor: pointer;
- font-size: 12px;
- &.on {
- color: #fff;
- background: #1890FF;
- }
- }
- }
- .footer {
- display: flex;
- justify-content: flex-end;
- margin-top: 40px;
- button {
- margin-left: 10px;
- }
- }
- }
- .btn {
- width: 60px;
- height: 24px;
- }
- .title {
- font-size: 13px;
- }
- .nonefont {
- text-align: center;
- padding-top: 20px;
- }
- </style>
|