f92fd6ac
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
|
export const messages = {
en: {
carStructure: {
noOwner: 'No Owner',
oweAmount: 'Arrears',
yuan: 'Yuan',
searchPlaceholder: 'Please enter house number building-unit-room such as 1-1-1',
fetchError: 'Failed to fetch car structure data'
},
floorUnitTree: {
noBuilding: 'No building currently',
building: 'Building',
unit: 'Unit',
fetchError: 'Failed to fetch floor and unit data'
}
},
zh: {
carStructure: {
noOwner: '无',
oweAmount: '欠费',
yuan: '元',
searchPlaceholder: '请输入房屋编号 楼栋-单元-房屋 如1-1-1',
fetchError: '获取车位结构数据失败'
},
floorUnitTree: {
noBuilding: '当前没有楼栋',
building: '栋',
unit: '单元',
fetchError: '获取楼栋单元数据失败'
}
}
}
|