1.修改新增,编辑弹窗校验清除,调整代码格式

fencang
x_z 3 years ago
parent f44c61dbc9
commit 0d449eb395

@ -99,6 +99,7 @@
:before-close="hideForm"
:close-on-click-modal="false"
:close-on-press-escape="false"
v-if="formVisible"
width="70%"
top="5vh"
>
@ -334,24 +335,23 @@ export default {
},
//
resetForm() {
if (this.$refs["dataForm"]) {
//
this.$refs["dataForm"].clearValidate();
//
this.$nextTick(() => {
this.$refs["dataForm"].resetFields();
}
this.$refs["dataForm"].clearValidate();
})
},
//
hideForm() {
//
this.formVisible = !this.formVisible;
//
this.$refs["dataForm"].resetFields();
this.$refs["dataForm"].resetFields(); //
return true;
},
//
handleForm(index, row) {
this.formVisible = true;
this.resetForm();
this.formData = JSON.parse(JSON.stringify(formJson));
if (row !== null) {
this.formData = Object.assign({}, row);
@ -371,7 +371,7 @@ export default {
} else if (isBlank(this.formData.passWord)) {
this.$message.error("密码不能为空")
return;
}else if (isBlank(this.formData.employeeName)) {
} else if (isBlank(this.formData.employeeName)) {
this.$message.error("用户名称不能为空");
return;
} else if (this.formData.roles.length === 0) {

Loading…
Cancel
Save