Browse Source

用户管理调整

master
huminghao 3 days ago
parent
commit
59630790fa
1 changed files with 14 additions and 1 deletions
  1. 14
    1
      src/views/system/userManage/index.vue

+ 14
- 1
src/views/system/userManage/index.vue View File

@@ -117,7 +117,7 @@
computed,
} from 'vue'
import { ElMessage } from 'element-plus'
import { getDictLabel } from '@/utils/utils'
import {dataDesensitization, getDictLabel} from '@/utils/utils'
import BaseService from '@/utils/baseService'
import { IObject } from '@/types/interface'
import AddOrUpdate from './addorupdate.vue'
@@ -264,10 +264,23 @@
label: '员工工号',
width: 100,
},
{
prop: 'idNum',
label: '员工证件号',
width: 150,
funRuleStarts: true,
funRule: (val: any) => {
return dataDesensitization(val)
},
},
{
prop: 'mobile',
label: '手机号',
width: 100,
funRuleStarts: true,
funRule: (val: any) => {
return dataDesensitization(val)
},
},
{
prop: 'identityType',

Loading…
Cancel
Save