diff --git a/src/utils/strUtil.js b/src/utils/strUtil.js new file mode 100644 index 0000000..255ec28 --- /dev/null +++ b/src/utils/strUtil.js @@ -0,0 +1,7 @@ +//封装字符串相关的方法 +export function isBlank(value) { + value = value.trim(); + if (value === "" || value === null || value === "string") { + return true; + } +} diff --git a/src/views/userManage/admin/authAdmin.vue b/src/views/userManage/admin/authAdmin.vue index 211af95..3e53fa2 100644 --- a/src/views/userManage/admin/authAdmin.vue +++ b/src/views/userManage/admin/authAdmin.vue @@ -195,6 +195,7 @@ import { import store from "../../../store/index"; import {findConfig} from "@/api/thrsys/spsSyncStatus"; +import {isBlank} from "@/utils/strUtil"; const formJson = { id: "", @@ -364,6 +365,20 @@ export default { } }, formSubmit() { + if (isBlank(this.formData.userName)) { + this.$message.error("用户账号不能为空"); + return; + } else if (isBlank(this.formData.passWord)) { + this.$message.error("密码不能为空") + return; + }else if (isBlank(this.formData.employeeName)) { + this.$message.error("用户名称不能为空"); + return; + } else if (this.formData.roles.length === 0) { + this.$message.error("未指定角色!") + return; + } + this.$refs["dataForm"].validate(valid => { if (valid) { this.formLoading = true;