eafabeed
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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
export const messages = {
en: {
parkingBoxManage: {
searchTitle: 'Search Conditions',
boxIdPlaceholder: 'Please enter booth number',
boxNamePlaceholder: 'Please enter booth name',
tempCarInPlaceholder: 'Please select temporary car entry',
yes: 'Yes',
no: 'No',
searchBtn: 'Search',
resetBtn: 'Reset',
listTitle: 'Booth Information',
boxId: 'Booth Number',
boxName: 'Booth Name',
parkingLot: 'Parking Lot',
tempCarIn: 'Temporary Car Entry',
tempAuth: 'Temporary Car Audit',
fee: 'Chargeable',
blueCarIn: 'Already Present',
yelowCarIn: 'Not Present',
remark: 'Remark',
operation: 'Operation',
console: 'Console',
dataSource: 'Data comes from IoT system',
pagination: 'Pagination'
},
addParkingBox: {
title: 'Add Booth',
boothName: 'Booth Name',
parkingLot: 'Parking Lot',
tempCarIn: 'Temporary Car Entry',
tempAuth: 'Temporary Car Audit',
fee: 'Chargeable',
blueCarIn: 'Already Present',
yelowCarIn: 'Not Present',
remark: 'Remark',
required: 'Required',
optional: 'Optional',
save: 'Save',
cancel: 'Cancel'
},
editParkingBox: {
title: 'Edit Booth',
boothName: 'Booth Name',
parkingLot: 'Parking Lot',
tempCarIn: 'Temporary Car Entry',
tempAuth: 'Temporary Car Audit',
fee: 'Chargeable',
blueCarIn: 'Already Present',
yelowCarIn: 'Not Present',
remark: 'Remark',
save: 'Save',
cancel: 'Cancel'
},
deleteParkingBox: {
title: 'Confirm Operation',
confirmDelete: 'Confirm delete booth?',
cancel: 'Cancel',
confirm: 'Confirm Delete'
}
},
zh: {
parkingBoxManage: {
searchTitle: '查询条件',
boxIdPlaceholder: '请输入岗亭编号',
boxNamePlaceholder: '请输入岗亭名称',
tempCarInPlaceholder: '请选择临时车进场',
yes: '是',
no: '否',
searchBtn: '查询',
resetBtn: '重置',
listTitle: '岗亭信息',
boxId: '岗亭编号',
boxName: '岗亭名称',
parkingLot: '停车场',
tempCarIn: '临时车进场',
tempAuth: '临时车审核',
fee: '是否收费',
blueCarIn: '已在场',
yelowCarIn: '未在场',
remark: '备注',
operation: '操作',
console: '控制台',
dataSource: '数据来源于物联网系统,请到物联网系统管理数据',
pagination: '分页'
},
addParkingBox: {
title: '添加岗亭',
boothName: '岗亭名称',
parkingLot: '停车场',
tempCarIn: '临时车进场',
tempAuth: '临时车审核',
fee: '是否收费',
blueCarIn: '已在场',
yelowCarIn: '未在场',
remark: '备注',
required: '必填',
optional: '选填',
save: '保存',
cancel: '取消'
},
editParkingBox: {
title: '修改岗亭',
boothName: '岗亭名称',
parkingLot: '停车场',
tempCarIn: '临时车进场',
tempAuth: '临时车审核',
fee: '是否收费',
blueCarIn: '已在场',
yelowCarIn: '未在场',
remark: '备注',
save: '保存',
cancel: '取消'
},
deleteParkingBox: {
title: '请确认您的操作',
confirmDelete: '确定删除岗亭?',
cancel: '点错了',
confirm: '确认删除'
}
}
}
|