c104a84f
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
|
export const messages = {
en: {
myItemOutAuditHistoryOrders: {
title: 'Item Out Audit History Orders',
orderId: 'Order ID',
orderType: 'Order Type',
orderStatus: 'Order Status',
applicant: 'Applicant',
createTime: 'Create Time',
operation: 'Operation',
view: 'View',
back: 'Back',
refresh: 'Refresh'
}
},
zh: {
myItemOutAuditHistoryOrders: {
title: '领用已办单',
orderId: '订单号',
orderType: '订单类型',
orderStatus: '订单状态',
applicant: '申请人',
createTime: '创建时间',
operation: '操作',
view: '查看',
back: '返回',
refresh: '刷新'
}
}
}
|