v1.9 解决员工关联员工编号不显示bug

This commit is contained in:
wuxw 2025-08-11 09:45:50 +08:00
parent 21d75ed245
commit cbeafa7589
2 changed files with 3 additions and 1 deletions

View File

@ -12,7 +12,7 @@
<el-table :data="staffs" style="width: 100%; margin-top: 15px" @selection-change="handleSelectionChange"> <el-table :data="staffs" style="width: 100%; margin-top: 15px" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" /> <el-table-column type="selection" width="55" align="center" />
<el-table-column prop="userId" :label="$t('role.staffName')" align="center" /> <el-table-column prop="userId" :label="$t('role.staffId')" align="center" />
<el-table-column prop="name" :label="$t('role.staffName')" align="center" /> <el-table-column prop="name" :label="$t('role.staffName')" align="center" />
<el-table-column prop="address" :label="$t('role.address')" align="center" /> <el-table-column prop="address" :label="$t('role.address')" align="center" />
</el-table> </el-table>

View File

@ -23,6 +23,7 @@ export const messages = {
communityId: 'Community ID', communityId: 'Community ID',
communityName: 'Community Name', communityName: 'Community Name',
operation: 'Operation', operation: 'Operation',
staffId: 'Staff ID',
staffName: 'Staff Name', staffName: 'Staff Name',
tel: 'Phone', tel: 'Phone',
email: 'Email', email: 'Email',
@ -59,6 +60,7 @@ export const messages = {
communityId: '小区编号', communityId: '小区编号',
communityName: '小区名称', communityName: '小区名称',
operation: '操作', operation: '操作',
staffId: '员工编号',
staffName: '员工名称', staffName: '员工名称',
tel: '手机号', tel: '手机号',
email: '邮箱', email: '邮箱',