Merge branch 'uat'
continuous-integration/drone/push Build is passing Details

uat
wangxiaoshuang 2025-02-17 09:46:49 +08:00
commit c0eab7e896
1 changed files with 4 additions and 0 deletions

View File

@ -69,6 +69,7 @@ export default {
'LastName', 'LastName',
'EMail', 'EMail',
'Phone', 'Phone',
'Status',
'OrganizationName', 'OrganizationName',
'PositionName', 'PositionName',
'DepartmentName', 'DepartmentName',
@ -92,6 +93,9 @@ export default {
value: obj[key], value: obj[key],
prop: key, prop: key,
} }
if (key === 'Status') {
o.value = this.$fd('IsUserEnable', obj[key])
}
curData.push(o) curData.push(o)
} }
}) })