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
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
|
export const messages = {
en: {
propertyCommunity: {
search: {
title: 'Search Conditions',
communityId: 'Please enter community ID',
name: 'Please enter community name'
},
list: {
title: 'Community Information',
add: 'Join Community',
quit: 'Quit Community'
},
table: {
communityId: 'Community ID',
name: 'Community Name',
nearbyLandmarks: 'Nearby Landmarks',
cityCode: 'City Code',
state: 'Status'
},
add: {
title: 'Add Community',
openCommunity: 'Open Community',
selectCommunity: 'Optional, please select community',
functions: 'Functions',
all: 'All'
},
edit: {
title: 'Edit Community',
openCommunity: 'Open Community',
functions: 'Functions',
all: 'All'
},
delete: {
title: 'Confirm Operation',
confirm: 'Are you sure to quit this community?',
cancel: 'Cancel',
confirmButton: 'Confirm Quit'
},
fetchError: 'Failed to fetch community data'
},
},
zh: {
propertyCommunity: {
search: {
title: '查询条件',
communityId: '请输入小区编号',
name: '请输入小区名称'
},
list: {
title: '小区信息',
add: '加入小区',
quit: '退出小区'
},
table: {
communityId: '小区ID',
name: '小区名称',
nearbyLandmarks: '附近地标',
cityCode: '城市编码',
state: '状态'
},
add: {
title: '添加小区',
openCommunity: '开通小区',
selectCommunity: '选填,请选择开通小区',
functions: '功能',
all: '全部'
},
edit: {
title: '修改小区',
openCommunity: '开通小区',
functions: '功能',
all: '全部'
},
delete: {
title: '请确认您的操作',
confirm: '确定退出小区吗?',
cancel: '点错了',
confirmButton: '确认退出'
},
fetchError: '获取小区数据失败'
},
}
}
|