8592fee7
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
|
export const messages = {
en: {
dataPrivilege: {
title: 'Data Privilege',
add: 'Add',
edit: 'Edit',
delete: 'Delete',
addTitle: 'Add Data Privilege',
editTitle: 'Edit Data Privilege',
deleteTitle: 'Delete Confirmation',
name: 'Name',
code: 'Code',
remark: 'Remark',
namePlaceholder: 'Please enter name',
codePlaceholder: 'Please enter code',
remarkPlaceholder: 'Please enter remark',
nameRequired: 'Name is required',
nameMaxLength: 'Name cannot exceed 50 characters',
codeRequired: 'Code is required',
codeMaxLength: 'Code cannot exceed 30 characters',
remarkRequired: 'Remark is required',
remarkMaxLength: 'Remark cannot exceed 256 characters',
addSuccess: 'Added successfully',
editSuccess: 'Modified successfully',
deleteSuccess: 'Deleted successfully',
deleteFailed: 'Delete failed',
deleteConfirm: 'Are you sure to delete this data privilege?',
confirmOperation: 'Please confirm your operation',
unitAuth: 'Unit Authorization',
staffRelation: 'Staff Relation',
building: 'Building',
unit: 'Unit',
operation: 'Operation',
associateUnit: 'Associate Unit',
buildingUnit: 'Building Unit',
inputBuildingNum: 'Input building number',
inputUnitNum: 'Input unit number',
buildingNum: 'Building Number',
unitNum: 'Unit Number',
confirmCancelUnit: 'Confirm to cancel building unit authorization?',
associateSuccess: 'Association successful',
staff: 'Staff',
staffName: 'Staff Name',
phone: 'Phone',
email: 'Email',
address: 'Address',
gender: 'Gender',
male: 'Male',
female: 'Female',
inputStaffName: 'Input staff name',
inputPhone: 'Input phone number',
inputStaffId: 'Input staff ID',
staffId: 'Staff ID',
staffAddress: 'Staff Address',
associateStaff: 'Associate Staff',
confirmCancelAuth: 'Confirm to cancel staff authorization?',
detail: 'Detail'
}
},
zh: {
dataPrivilege: {
title: '数据权限',
add: '添加',
edit: '修改',
delete: '删除',
addTitle: '添加数据权限',
editTitle: '修改数据权限',
deleteTitle: '删除确认',
name: '名称',
code: '编号',
remark: '备注',
namePlaceholder: '请输入名称',
codePlaceholder: '请输入编号',
remarkPlaceholder: '请输入备注',
nameRequired: '名称不能为空',
nameMaxLength: '名称不能超过50个字符',
codeRequired: '编号不能为空',
codeMaxLength: '编号不能超过30个字符',
remarkRequired: '备注不能为空',
remarkMaxLength: '备注不能超过256个字符',
addSuccess: '添加成功',
editSuccess: '修改成功',
deleteSuccess: '删除成功',
deleteFailed: '删除失败',
deleteConfirm: '确定删除此数据权限吗?',
confirmOperation: '请确认您的操作',
unitAuth: '单元授权',
staffRelation: '员工关联',
building: '楼栋',
unit: '单元',
operation: '操作',
associateUnit: '关联单元',
buildingUnit: '楼栋单元',
inputBuildingNum: '输入楼栋编号',
inputUnitNum: '输入单元编号',
buildingNum: '楼栋编号',
unitNum: '单元编号',
confirmCancelUnit: '确定取消楼栋单元授权吗?',
associateSuccess: '关联成功',
staff: '员工',
staffName: '员工名称',
phone: '手机号',
email: '邮箱',
address: '地址',
gender: '性别',
male: '男',
female: '女',
inputStaffName: '输入员工名称',
inputPhone: '输入手机号',
inputStaffId: '输入员工编号',
staffId: '员工编号',
staffAddress: '员工地址',
associateStaff: '关联员工',
confirmCancelAuth: '确定取消员工授权吗?',
detail: '详情'
}
}
}
|