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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
| <template>
| <el-dialog :title="titleMap[mode]" v-model="visible" :width="800" destroy-on-close @closed="$emit('closed')">
| <el-form :model="form" :rules="rules" :disabled="mode=='show'" ref="dialogForm" label-width="120px" label-position="center">
| <el-row>
| <el-col :span="12">
| <el-form-item label="岗位编号" prop="userName">
| <el-input v-model="form.userName" placeholder="岗位编号" clearable></el-input>
| </el-form-item>
| </el-col>
| <el-col :span="12">
| <el-form-item label="岗位" prop="name">
| <el-input v-model="form.name" placeholder="岗位" clearable></el-input>
| </el-form-item>
| </el-col>
| <el-col :span="12">
| <el-form-item label="使用状态" prop="name">
| <el-switch v-model="value1" />
| </el-form-item>
| </el-col>
| </el-row>
| </el-form>
| <template #footer>
| <el-button @click="visible=false" >取 消</el-button>
| <el-button v-if="mode!='show'" type="primary" :loading="isSaveing" @click="submit()">保 存</el-button>
| </template>
| </el-dialog>
| </template>
|
| <script>
| export default {
| emits: ['success', 'closed'],
| data() {
| return {
| value1: true,
| mode: "add",
| titleMap: {
| add: '添加岗位',
| edit: '修改岗位',
| show: '查看'
| },
| visible: false,
| isSaveing: false,
| //表单数据
| form: {
| id:"",
| userName: "",
| avatar: "",
| name: "",
| dept: "",
| group: []
| },
| //验证规则
| rules: {
| avatar:[
| {required: true, message: '请上传头像'}
| ],
| userName: [
| {required: true, message: '请输入登录账号'}
| ],
| name: [
| {required: true, message: '请输入真实姓名'}
| ],
| password: [
| {required: true, message: '请输入登录密码'},
| {validator: (rule, value, callback) => {
| if (this.form.password2 !== '') {
| this.$refs.dialogForm.validateField('password2');
| }
| callback();
| }}
| ],
| password2: [
| {required: true, message: '请再次输入密码'},
| {validator: (rule, value, callback) => {
| if (value !== this.form.password) {
| callback(new Error('两次输入密码不一致!'));
| }else{
| callback();
| }
| }}
| ],
| dept: [
| {required: true, message: '请选择所属部门'}
| ],
| group: [
| {required: true, message: '请选择所属角色', trigger: 'change'}
| ]
| },
| //所需数据选项
| groups: [],
| groupsProps: {
| value: "id",
| multiple: true,
| checkStrictly: true
| },
| depts: [],
| deptsProps: {
| value: "id",
| checkStrictly: true
| }
| }
| },
| mounted() {
| // this.getGroup()
| // this.getDept()
| },
| methods: {
| //显示
| open(mode='add'){
| this.mode = mode;
| this.visible = true;
| return this
| },
| //加载树数据
| async getGroup(){
| var res = await this.$API.system.role.list.get();
| this.groups = res.data.rows;
| },
| async getDept(){
| var res = await this.$API.system.dept.list.get();
| this.depts = res.data;
| },
| //表单提交方法
| submit(){
| this.$refs.dialogForm.validate(async (valid) => {
| if (valid) {
| this.isSaveing = true;
| var res = await this.$API.demo.post.post(this.form);
| this.isSaveing = false;
| if(res.code == 200){
| this.$emit('success', this.form, this.mode)
| this.visible = false;
| this.$message.success("操作成功")
| }else{
| this.$alert(res.message, "提示", {type: 'error'})
| }
| }else{
| return false;
| }
| })
| },
| //表单注入数据
| setData(data){
| this.form.id = data.id
| this.form.userName = data.userName
| this.form.avatar = data.avatar
| this.form.name = data.name
| this.form.group = data.group
| this.form.dept = data.dept
|
| //可以和上面一样单个注入,也可以像下面一样直接合并进去
| //Object.assign(this.form, data)
| }
| }
| }
| </script>
|
| <style>
| </style>
|
|