1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
| <template>
| <el-dialog title="会员标签" :visible.sync="dialogVisible" @close='dialogFormVisible' :close-on-click-modal="false"
| :close-on-press-escape="false">
| <el-form size="small">
| <el-form-item label="标签">
| <el-checkbox-group v-model="checkedTag">
| <el-checkbox v-for="(item,index) in allTag" :label="item.tag_id" :key="index" border>{{item.tag_name}}</el-checkbox>
| </el-checkbox-group>
| </el-form-item>
| </el-form>
| <div slot="footer" class="dialog-footer">
| <el-button @click="dialogFormVisible">取 消</el-button>
| <el-button type="primary" @click="onSubmit" :loading="loading">确 定</el-button>
| </div>
| </el-dialog>
| </template>
|
| <script>
| import UserApi from '@/api/user.js';
| export default {
| data() {
| return {
| /*左边长度*/
| formLabelWidth: '120px',
| /*是否显示*/
| loading: false,
| dialogVisible: false,
| allTag: [],
| checkedTag: []
| };
| },
| props: ['open_tag', 'form'],
| created() {
| this.dialogVisible = this.open_tag;
| this.getData();
| },
| methods: {
| /*获取数据*/
| getData() {
| let self = this;
| UserApi.toEditTag({
| user_id: self.form.user_id
| }, true)
| .then(res => {
| self.allTag = res.data.allTag;
| self.checkedTag = res.data.userTag;
| })
| .catch(error => {});
| },
| /*添加用户*/
| onSubmit() {
| let self = this;
| self.loading = true;
| UserApi.editTag({
| user_id: self.form.user_id,
| checkedTag: self.checkedTag
| }, true)
| .then(data => {
| self.loading = false;
| self.$message({
| message: '恭喜你,修改成功',
| type: 'success'
| });
| self.dialogFormVisible(true);
| })
| .catch(error => {
| self.loading = false;
| });
| },
| /*关闭弹窗*/
| dialogFormVisible(e) {
| if (e) {
| this.$emit('closeDialog', {
| type: 'success',
| openDialog: false
| })
| } else {
| this.$emit('closeDialog', {
| type: 'error',
| openDialog: false
| })
| }
| }
|
| }
| };
| </script>
|
| <style></style>
|
|