a2547628
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
|
export const messages = {
en: {
aRoomDetailRepair: {
repairId: 'Work Order Code',
location: 'Location',
repairType: 'Repair Type',
repairPerson: 'Repair Person',
contact: 'Contact',
appointmentTime: 'Appointment Time',
state: 'Status',
taskProcessing: 'Task Processing',
detail: 'Detail'
}
},
zh: {
aRoomDetailRepair: {
repairId: '工单编码',
location: '位置',
repairType: '报修类型',
repairPerson: '报修人',
contact: '联系方式',
appointmentTime: '预约时间',
state: '状态',
taskProcessing: '定时任务处理',
detail: '详情'
}
}
}
|