|
|
@ -137,7 +137,7 @@
|
|
|
|
<el-row type="flex">
|
|
|
|
<el-row type="flex">
|
|
|
|
|
|
|
|
|
|
|
|
<el-col :span="11" type="flex">
|
|
|
|
<el-col :span="11" type="flex">
|
|
|
|
<el-form-item label="所属部门" prop="userFlag">
|
|
|
|
<el-form-item label="所属部门" prop="depts">
|
|
|
|
<el-select
|
|
|
|
<el-select
|
|
|
|
v-model="selectDeptList"
|
|
|
|
v-model="selectDeptList"
|
|
|
|
filterable
|
|
|
|
filterable
|
|
|
@ -208,7 +208,6 @@
|
|
|
|
type="primary"
|
|
|
|
type="primary"
|
|
|
|
size="small"
|
|
|
|
size="small"
|
|
|
|
@click.native="formSubmit()"
|
|
|
|
@click.native="formSubmit()"
|
|
|
|
:loading="formLoading"
|
|
|
|
|
|
|
|
>提交
|
|
|
|
>提交
|
|
|
|
</el-button
|
|
|
|
</el-button
|
|
|
|
>
|
|
|
|
>
|
|
|
@ -308,7 +307,10 @@ export default {
|
|
|
|
],
|
|
|
|
],
|
|
|
|
userFlag: [
|
|
|
|
userFlag: [
|
|
|
|
{required: true, message: "请选择状态", trigger: "change"}
|
|
|
|
{required: true, message: "请选择状态", trigger: "change"}
|
|
|
|
]
|
|
|
|
],
|
|
|
|
|
|
|
|
depts: [
|
|
|
|
|
|
|
|
{required: true, message: "请选择所属部门", trigger: "change"}
|
|
|
|
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
editRules: {
|
|
|
|
editRules: {
|
|
|
|
userName: [
|
|
|
|
userName: [
|
|
|
@ -416,6 +418,8 @@ export default {
|
|
|
|
dept: row.dept,
|
|
|
|
dept: row.dept,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
this.selectDeptList = row.depts;
|
|
|
|
this.selectDeptList = row.depts;
|
|
|
|
|
|
|
|
}else {
|
|
|
|
|
|
|
|
this.selectDeptList = [];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.formName = "add";
|
|
|
|
this.formName = "add";
|
|
|
|
this.formRules = this.addRules;
|
|
|
|
this.formRules = this.addRules;
|
|
|
@ -439,10 +443,10 @@ export default {
|
|
|
|
this.$message.error("未指定角色!")
|
|
|
|
this.$message.error("未指定角色!")
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.formData.depts = this.selectDeptList;
|
|
|
|
this.$refs["dataForm"].validate(valid => {
|
|
|
|
this.$refs["dataForm"].validate(valid => {
|
|
|
|
if (valid) {
|
|
|
|
if (valid) {
|
|
|
|
this.formLoading = true;
|
|
|
|
this.formLoading = true;
|
|
|
|
this.formData.depts = this.selectDeptList;
|
|
|
|
|
|
|
|
let data = Object.assign({}, this.formData);
|
|
|
|
let data = Object.assign({}, this.formData);
|
|
|
|
authAdminSave(data, this.formName).then(response => {
|
|
|
|
authAdminSave(data, this.formName).then(response => {
|
|
|
|
this.formLoading = false;
|
|
|
|
this.formLoading = false;
|
|
|
|