repairPoolManageLang.js
3.25 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
export const messages = {
en: {
repairPoolManage: {
queryConditions: 'Query Conditions',
repairOrderPool: 'Repair Order Pool',
workOrderCode: 'Work Order Code',
location: 'Location',
repairType: 'Repair Type',
maintenanceType: 'Maintenance Type',
repairPerson: 'Repair Person',
contact: 'Contact',
appointmentTime: 'Appointment Time',
submissionTime: 'Submission Time',
submissionDuration: 'Submission Duration',
completionTime: 'Completion Time',
status: 'Status',
operation: 'Operation',
modify: 'Modify',
dispatch: 'Dispatch',
grabOrder: 'Grab Order',
end: 'End',
details: 'Details',
delete: 'Delete',
search: 'Search',
reset: 'Reset',
more: 'More',
hide: 'Hide',
all: 'All',
timeoutOrders: 'Timeout Orders',
workOrderNumber: 'Work Order Number',
repairPersonName: 'Repair Person Name',
repairPhone: 'Repair Phone',
selectRepairType: 'Select Repair Type',
selectRepairSettingType: 'Select Repair Setting Type',
repairLocation: 'Repair Location',
selectMaintenanceType: 'Select Maintenance Type',
startTime: 'Start Time',
endTime: 'End Time',
repairSettingType: 'Repair Setting Type',
repairContent: 'Repair Content',
operationSuggestions: 'Operation Suggestions',
endReason: 'End Reason',
paidService: 'Paid Service',
freeService: 'Free Service',
needMaterials: 'Need Materials',
noMaterialsNeeded: 'No Materials Needed',
timedTaskProcessing: 'Timed Task Processing',
cannotTransferSelf:' can not transfer to yourself'
}
},
zh: {
repairPoolManage: {
queryConditions: '查询条件',
repairOrderPool: '报修工单池',
workOrderCode: '工单编码',
location: '位置',
repairType: '报修类型',
maintenanceType: '维修类型',
repairPerson: '报修人',
contact: '联系方式',
appointmentTime: '预约时间',
submissionTime: '提交时间',
submissionDuration: '提单时长',
completionTime: '完成时间',
status: '状态',
operation: '操作',
modify: '修改',
dispatch: '派单',
grabOrder: '抢单',
end: '结束',
details: '详情',
delete: '删除',
search: '查询',
reset: '重置',
more: '更多',
hide: '隐藏',
all: '全部',
timeoutOrders: '超时工单',
workOrderNumber: '工单编号',
repairPersonName: '报修人',
repairPhone: '报修电话',
selectRepairType: '请选择报修类型',
selectRepairSettingType: '请选择报修设置类型',
repairLocation: '报修位置',
selectMaintenanceType: '请选择维修类型',
startTime: '开始时间',
endTime: '结束时间',
repairSettingType: '报修设置类型',
repairContent: '报修内容',
operationSuggestions: '说明',
endReason: '结束原因',
paidService: '付费服务',
freeService: '免费服务',
needMaterials: '需要材料',
noMaterialsNeeded: '不需要材料',
timedTaskProcessing: '定时任务处理中',
cannotTransferSelf: '不能转单给自己'
}
}
}