fc9bd1db
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
|
export const messages = {
en: {
contractDetailOwner: {
ownerFace: 'Owner Face',
name: 'Name',
sex: 'Sex',
idCard: 'ID Card',
address: 'Address',
roomCount: 'Room Count',
memberCount: 'Member Count',
carCount: 'Car Count',
complaintCount: 'Complaint',
repairCount: 'Repair',
oweFee: 'Owe Fee',
contractCount: 'Contract'
}
},
zh: {
contractDetailOwner: {
ownerFace: '业主人脸',
name: '姓名',
sex: '性别',
idCard: '身份证',
address: '家庭住址',
roomCount: '房屋数',
memberCount: '业主成员',
carCount: '车辆数',
complaintCount: '投诉',
repairCount: '报修',
oweFee: '欠费',
contractCount: '业主合同'
}
}
}
|