a42b3256
wuxw
HC小区管理系统前段vue版正在开发中
|
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
|
export const messages = {
en: {
community: {
addCommunity: 'Add Community',
province: 'Province',
city: 'City',
district: 'District',
communityName: 'Community Name',
communityCode: 'Community Code',
phone: 'Phone',
area: 'Area(㎡)',
startTime: 'Start Time',
endTime: 'End Time',
status: 'Status'
},
common: {
search: 'Search',
reset: 'Reset',
operation: 'Operation',
edit: 'Edit',
view: 'View',
delete: 'Delete',
confirm: 'Confirm',
cancel: 'Cancel',
warning: 'Warning',
deleteConfirm: 'Are you sure to delete this record?',
deleteSuccess: 'Delete successfully'
}
},
zh: {
community: {
addCommunity: '添加小区',
province: '省份',
city: '市/州',
district: '区/县',
communityName: '小区名称',
communityCode: '小区编码',
phone: '联系电话',
area: '面积(㎡)',
startTime: '开始时间',
endTime: '结束时间',
status: '状态'
},
common: {
search: '搜索',
reset: '重置',
operation: '操作',
edit: '编辑',
view: '查看',
delete: '删除',
confirm: '确定',
cancel: '取消',
warning: '警告',
deleteConfirm: '确定要删除这条记录吗?',
deleteSuccess: '删除成功'
}
}
}
|