ebc1053d
wuxw
加入运营员工详情功能
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
export const messages = {
en: {
aStaffDetailList: {
staffInfo: 'Staff Information',
back: 'Back',
edit: 'Edit',
resetPwd: 'Reset Password',
staffId: 'Staff ID',
userName: 'Name',
idCard: 'ID Card',
tel: 'Phone',
sex: 'Gender',
male: 'Male',
female: 'Female',
address: 'Address',
orgPrivilege: 'Organization Privilege',
community: 'Community',
loadError: 'Failed to load staff information',
resetSuccess: 'Password reset successful',
editSuccess: 'Staff information updated',
addCommunitySuccess: 'Community added successfully',
deleteCommunitySuccess: 'Community removed successfully'
},
"staffDetailOrgPrivilege": {
"relatedOrg": "Related Organization",
"org": "Organization",
"position": "Position",
"relatedRole": "Related Roles",
"staffPrivilege": "Staff Privileges",
"loadOrgsError": "Failed to load organizations",
"loadRolesError": "Failed to load roles",
"loadPrivilegesError": "Failed to load privileges"
},
"aStaffDetailCommunitys": {
"relateCommunity": "Relate Community",
"staffName": "Staff Name",
"staffId": "Staff ID",
"communityId": "Community ID",
"communityName": "Community Name",
"operation": "Operation",
"delete": "Delete",
"loadError": "Failed to load community data"
},
"addAStaffCommunity": {
"community": "Community",
"searchPlaceholder": "Enter community name",
"communityId": "Community ID",
"communityName": "Community Name",
"communityAddress": "Community Address",
"cancel": "Cancel",
"submit": "Submit",
"loadError": "Failed to load community data",
"selectCommunity": "Please select at least one community",
"addSuccess": "Community added successfully",
"addError": "Failed to add community"
},
"deleteAStaffCommunity": {
"confirmOperation": "Confirm Your Operation",
"confirmDelete": "Are you sure you want to delete this community?",
"cancel": "Cancel",
"confirm": "Confirm Delete",
"deleteSuccess": "Community deleted successfully",
"deleteError": "Failed to delete community"
}
},
zh: {
aStaffDetailList: {
staffInfo: '员工信息',
back: '返回',
edit: '修改',
resetPwd: '重置密码',
staffId: '编号',
userName: '名称',
idCard: '身份证',
tel: '手机',
sex: '性别',
male: '男',
female: '女',
address: '住址',
orgPrivilege: '组织权限',
community: '小区',
loadError: '加载员工信息失败',
resetSuccess: '密码重置成功',
editSuccess: '员工信息修改成功',
addCommunitySuccess: '小区关联成功',
deleteCommunitySuccess: '小区删除成功'
},
"staffDetailOrgPrivilege": {
"relatedOrg": "关联组织",
"org": "组织",
"position": "岗位",
"relatedRole": "关联角色",
"staffPrivilege": "员工权限",
"loadOrgsError": "加载组织失败",
"loadRolesError": "加载角色失败",
"loadPrivilegesError": "加载权限失败"
},
"aStaffDetailCommunitys": {
"relateCommunity": "关联小区",
"staffName": "员工名称",
"staffId": "员工编号",
"communityId": "小区编号",
"communityName": "小区名称",
"operation": "操作",
"delete": "删除",
"loadError": "加载小区数据失败"
},
"addAStaffCommunity": {
"community": "小区",
"searchPlaceholder": "输入小区名称",
"communityId": "小区ID",
"communityName": "小区名称",
"communityAddress": "小区地址",
"cancel": "取消",
"submit": "提交",
"loadError": "加载小区数据失败",
"selectCommunity": "请至少选择一个小区",
"addSuccess": "小区关联成功",
"addError": "小区关联失败"
},
"deleteAStaffCommunity": {
"confirmOperation": "请确认您的操作",
"confirmDelete": "确定删除隶属小区?",
"cancel": "点错了",
"confirm": "确认删除",
"deleteSuccess": "小区删除成功",
"deleteError": "小区删除失败"
}
}
}
|