浏览代码

用户管理调整

master
huminghao 4 天前
父节点
当前提交
59630790fa
共有 1 个文件被更改,包括 14 次插入1 次删除
  1. 14
    1
      src/views/system/userManage/index.vue

+ 14
- 1
src/views/system/userManage/index.vue 查看文件

@@ -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',

正在加载...
取消
保存