communityManageLang.js
6.64 KB
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
export const messages = {
en: {
communityManage: {
search: {
title: 'Search Conditions',
communityId: 'Please enter community ID',
name: 'Please enter community name'
},
list: {
title: 'Community Information',
addCommunity: 'Add Community'
},
table: {
communityId: 'Community ID',
name: 'Community Name',
storeName: 'Property Company',
nearbyLandmarks: 'Nearby Landmarks',
cityCode: 'City Code',
createTime: 'Create Time',
state: 'Status',
syncIot: 'Sync IOT'
}
},
addCommunity: {
title: 'Add Community',
name: 'Community Name',
namePlaceholder: 'Required, please enter community name',
area: 'Community Area',
address: 'Community Address',
addressPlaceholder: 'Required, please enter community address',
nearbyLandmarks: 'Nearby Landmarks',
nearbyLandmarksPlaceholder: 'Required, please enter nearby landmarks',
tel: 'Customer Service Phone',
telPlaceholder: 'Required, please enter customer service phone',
payFeeMonth: 'Payment Cycle',
payFeeMonthPlaceholder: 'Required, please enter payment cycle (months)',
feePrice: 'Monthly Price',
feePricePlaceholder: 'Required, please enter monthly price (yuan)',
saveSuccess: 'Community added successfully',
validate: {
name: 'Community name cannot be empty',
cityCode: 'City code cannot be empty',
address: 'Community address cannot be empty',
nearbyLandmarks: 'Nearby landmarks cannot be empty',
tel: 'Customer service phone cannot be empty'
}
},
editCommunity: {
title: 'Edit Community',
name: 'Community Name',
namePlaceholder: 'Required, please enter community name',
address: 'Community Address',
addressPlaceholder: 'Required, please enter community address',
nearbyLandmarks: 'Nearby Landmarks',
nearbyLandmarksPlaceholder: 'Required, please enter nearby landmarks',
payFeeMonth: 'Payment Cycle',
payFeeMonthPlaceholder: 'Required, please enter payment cycle (months)',
feePrice: 'Monthly Price',
feePricePlaceholder: 'Required, please enter monthly price (yuan)',
tel: 'Customer Service Phone',
telPlaceholder: 'Required, please enter customer service phone',
saveSuccess: 'Community updated successfully',
validate: {
name: 'Community name cannot be empty',
address: 'Community address cannot be empty',
nearbyLandmarks: 'Nearby landmarks cannot be empty',
communityId: 'Community ID cannot be empty'
}
},
deleteCommunity: {
title: 'Confirm Operation',
confirmText: 'Confirm to delete the community?',
cancel: 'Cancel',
confirm: 'Confirm Delete',
deleteSuccess: 'Community deleted successfully'
},
communityDataToIot: {
title: 'Confirm Operation',
confirmText: 'Sync owner information (house information associated with owners), vehicle information and staff information in the community',
cancel: 'Cancel',
confirm: 'Confirm Sync',
syncSuccess: 'Sync submitted successfully'
},
recallAuditFinishCommunity: {
title: 'Confirm Operation',
confirmText: 'Confirm to recall the audit?',
cancel: 'Cancel',
confirm: 'Confirm Recall'
},
areaSelect: {
province: 'Select Province',
city: 'Select City',
area: 'Select Area',
fetchError: 'Failed to query area'
}
},
zh: {
communityManage: {
search: {
title: '查询条件',
communityId: '请输入小区ID',
name: '请输入小区名称'
},
list: {
title: '小区信息',
addCommunity: '添加小区'
},
table: {
communityId: '小区ID',
name: '小区名称',
storeName: '物业公司',
nearbyLandmarks: '附近地标',
cityCode: '城市编码',
createTime: '创建时间',
state: '状态',
syncIot: '同步IOT'
}
},
addCommunity: {
title: '添加小区',
name: '小区名称',
namePlaceholder: '必填,请填写小区名称',
area: '小区地区',
address: '小区地址',
addressPlaceholder: '必填,请填写小区地址',
nearbyLandmarks: '附近地标',
nearbyLandmarksPlaceholder: '必填,请填写附近地标',
tel: '客服电话',
telPlaceholder: '必填,请填写客服电话',
payFeeMonth: '缴费周期',
payFeeMonthPlaceholder: '必填,请填写缴费周期(月)',
feePrice: '每月单价',
feePricePlaceholder: '必填,请填写每月单价(元)',
saveSuccess: '小区添加成功',
validate: {
name: '小区名称不能为空',
cityCode: '城市编码不能为空',
address: '小区地址不能为空',
nearbyLandmarks: '附近地标不能为空',
tel: '客服电话不能为空'
}
},
editCommunity: {
title: '修改小区',
name: '小区名称',
namePlaceholder: '必填,请填写小区名称',
address: '小区地址',
addressPlaceholder: '必填,请填写小区地址',
nearbyLandmarks: '附近地标',
nearbyLandmarksPlaceholder: '必填,请填写附近地标',
payFeeMonth: '缴费周期',
payFeeMonthPlaceholder: '必填,请填写缴费周期(月)',
feePrice: '每月单价',
feePricePlaceholder: '必填,请填写每月单价(元)',
tel: '客服电话',
telPlaceholder: '必填,请填写客服电话',
saveSuccess: '小区修改成功',
validate: {
name: '小区名称不能为空',
address: '小区地址不能为空',
nearbyLandmarks: '附近地标不能为空',
communityId: '小区ID不能为空'
}
},
deleteCommunity: {
title: '请确认您的操作',
confirmText: '确定删除小区',
cancel: '点错了',
confirm: '确认删除',
deleteSuccess: '小区删除成功'
},
communityDataToIot: {
title: '请确认您的操作',
confirmText: '同步小区中的业主信息(业主关联的房屋信息),车辆信息和员工信息',
cancel: '点错了',
confirm: '确认同步',
syncSuccess: '同步提交成功'
},
recallAuditFinishCommunity: {
title: '请确认您的操作',
confirmText: '确定撤回审核',
cancel: '点错了',
confirm: '确认撤回'
},
areaSelect: {
province: '请选择省',
city: '请选择城市',
area: '请选择区县',
fetchError: '查询地区失败'
}
}
}