63ef3e7f
wuxw
v1.9 加入天麟收据模版
|
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: {
printPayFeeXinShiDai: {
feeItem: 'Fee Item',
summary: 'Summary',
lateFee: 'Late Fee',
amount: 'Amount',
to: ' to ',
none: 'None',
capitalFormat: 'Capital',
receiptNum: 'Receipt No.',
vehicle: 'Vehicle'
}
},
zh: {
printPayFeeXinShiDai: {
feeItem: '收费项目',
summary: '摘要',
lateFee: '滞纳金',
amount: '金额',
to: '至',
none: '无',
capitalFormat: '大写',
receiptNum: '单号',
vehicle: '车辆'
}
}
}
|