From d5425d48bb5a9e20b37b067393b40afc9abfded6 Mon Sep 17 00:00:00 2001
From: yujialong <479214531@qq.com>
Date: Thu, 5 Dec 2024 17:36:56 +0800
Subject: [PATCH] fix
---
src/views/system/staff.vue | 39 +++-----------------------------------
1 file changed, 3 insertions(+), 36 deletions(-)
diff --git a/src/views/system/staff.vue b/src/views/system/staff.vue
index f22c984..c77acb5 100644
--- a/src/views/system/staff.vue
+++ b/src/views/system/staff.vue
@@ -88,7 +88,7 @@
show-overflow-tooltip>
-
+
查看
@@ -113,8 +113,8 @@
-
-
+
+ {{ form.account }}
@@ -170,19 +170,6 @@ import OrgTree from "@/components/org-tree/src/tree";
export default {
components: { OrgTree },
data () {
- const accountPass = (rule, value, callback) => {
- if (value === '') {
- callback(new Error('请输入账号'))
- } else {
- const pattern = /^[A-Za-z0-9]*$/
- if (pattern.test(value)) {
- this.accountChange()
- callback()
- } else {
- callback(new Error('请输入正确账号格式'))
- }
- }
- }
const userNamePass = (rule, value, callback) => {
if (value === '') {
callback(new Error('请输入姓名'))
@@ -272,9 +259,6 @@ export default {
]
},
rules: {
- account: [
- { required: true, validator: accountPass, trigger: 'blur' }
- ],
userName: [
{ required: true, validator: userNamePass, trigger: "blur" }
],
@@ -299,7 +283,6 @@ export default {
staffVisible: false,
accountReapeat: false,
- originAccount: '',
workNumberReapeat: false,
originWorkNumber: '',
phoneRepeat: false,
@@ -556,7 +539,6 @@ export default {
data.staffArchitectureId = archId
}
this.form = data
- this.originAccount = data.account
this.originWorkNumber = data.workNumber
}).catch(res => { })
},
@@ -566,21 +548,6 @@ export default {
this.roleList = res.rolePage.records
}).catch(res => { })
},
- // 账号判重
- accountChange () {
- const form = this.form
- const { account } = form
- if (account === this.originAccount) {
- this.accountReapeat = false
- } else {
- const { accountId } = form
- this.$post(`${this.api.checkWorkNumOrAccount}?platformId=${Setting.platformId}&type=2&account=${account}${accountId ? `&accountId=${accountId}` : ''}`).then(res => {
- this.accountReapeat = false
- }).catch(err => {
- this.accountReapeat = true
- })
- }
- },
// 工号判重
worknumberChange () {
const form = this.form