e0196f8a
wuxw
开发完成admin下巡检任务
|
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
|
export const messages = {
en: {
adminRepair: {
search: {
title: 'Search Conditions',
repairId: 'Please enter work order number',
repairName: 'Please enter repairer name',
tel: 'Please enter repair phone'
},
list: {
title: 'Community Repair'
},
table: {
repairId: 'Work Order Code',
communityName: 'Community Name',
repairObjName: 'Location',
repairTypeName: 'Repair Type',
maintenanceType: 'Maintenance Type',
repairName: 'Repairer',
tel: 'Contact',
appointmentTime: 'Appointment Time',
createTime: 'Submission Time',
submitHours: 'Submission Duration',
finishTime: 'Completion Time',
state: 'Status',
timedTask: 'Timed Task Processing'
},
maintenanceType: {
paid: 'Paid Service',
free: 'Free Service',
withMaterial: 'Need Materials',
withoutMaterial: 'No Materials Needed'
},
fetchError: 'Failed to get repair list',
treeFetchError: 'Failed to get tree data'
}
},
zh: {
adminRepair: {
search: {
title: '查询条件',
repairId: '请输入工单编号',
repairName: '请输入报修人',
tel: '请输入报修电话'
},
list: {
title: '小区报修'
},
table: {
repairId: '工单编码',
communityName: '小区名称',
repairObjName: '位置',
repairTypeName: '报修类型',
maintenanceType: '维修类型',
repairName: '报修人',
tel: '联系方式',
appointmentTime: '预约时间',
createTime: '提交时间',
submitHours: '提单时长',
finishTime: '完成时间',
state: '状态',
timedTask: '定时任务处理'
},
maintenanceType: {
paid: '有偿服务',
free: '无偿服务',
withMaterial: '需要用料',
withoutMaterial: '无需用料'
},
fetchError: '获取报修列表失败',
treeFetchError: '获取树形数据失败'
}
}
}
|