batchPayFeeOrderLang.js
3.38 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
101
102
103
104
105
106
107
108
109
110
111
112
export const messages = {
en: {
batchPayFeeOrder: {
title: 'Batch Payment',
feeType: 'Fee Type',
feeItem: 'Fee Item',
feeFlag: 'Fee Flag',
payerObj: 'Payer Object',
receivablePeriod: 'Receivable Period',
receivable: 'Receivable/Owed',
paymentCycle: 'Payment Cycle',
actualAmount: 'Actual Amount',
remark: 'Remark',
month: 'months',
enterActualAmount: 'Enter actual amount',
enterRemark: 'Enter remark',
scanPay: 'Scan Payment',
submitPay: 'Submit Payment'
},
payFeeUserAccount: {
title: 'Account Information',
accountType: 'Account Type',
accountName: 'Account Name',
accountAmount: 'Account Amount',
operation: 'Operation',
preSave: 'Pre-save',
yuan: 'yuan'
},
batchPayConfirm: {
title: 'Payment Confirmation',
amount: 'Amount:',
accountAmount: 'Account Amount:',
paymentMethod: 'Payment Method:',
selectPaymentMethod: 'Please select payment method',
scanCodeTip: 'Please scan with scanner',
confirmPay: 'Confirm Payment',
payResult: 'Payment Result',
paySuccess: 'Payment Successful',
mergePrint: 'Merge Print',
printReceipt: 'Print Receipt',
yuan: 'yuan'
},
batchFeeCycle: {
paymentCycle: 'Payment Cycle',
selectCycleTip: 'Please select payment cycle',
default: 'Default',
customCycle: 'Custom Cycle',
customAmount: 'Custom Amount',
customEndTime: 'Custom End Time',
actualCycle: 'Actual Cycle',
enterActualCycle: 'Enter actual cycle',
endTime: 'End Time',
selectEndTime: 'Select end time',
enterCustomAmount: 'Enter custom amount'
}
},
zh: {
batchPayFeeOrder: {
title: '批量缴费',
feeType: '费用类型',
feeItem: '费用项目',
feeFlag: '费用标识',
payerObj: '收费对象',
receivablePeriod: '应收时间段',
receivable: '应收/欠费',
paymentCycle: '缴费周期',
actualAmount: '实收',
remark: '备注',
month: '个月',
enterActualAmount: '请输入实际金额',
enterRemark: '请输入备注',
scanPay: '扫码收费',
submitPay: '提交收费'
},
payFeeUserAccount: {
title: '账户信息',
accountType: '账户类型',
accountName: '账户名',
accountAmount: '账户金额',
operation: '操作',
preSave: '预存',
yuan: '元'
},
batchPayConfirm: {
title: '收费确认',
amount: '金额:',
accountAmount: '账户金额:',
paymentMethod: '支付方式:',
selectPaymentMethod: '必填,请选择支付方式',
scanCodeTip: '请用扫码枪扫码',
confirmPay: '确定收费',
payResult: '缴费提示',
paySuccess: '缴费成功',
mergePrint: '合并打印',
printReceipt: '打印收据',
yuan: '元'
},
batchFeeCycle: {
paymentCycle: '缴费周期',
selectCycleTip: '必填,请选择缴费周期',
default: '默认',
customCycle: '自定义周期',
customAmount: '自定义金额',
customEndTime: '自定义结束时间',
actualCycle: '实际周期',
enterActualCycle: '请输入实际周期',
endTime: '缴费结束时间',
selectEndTime: '缴费结束时间',
enterCustomAmount: '请输入自定义金额'
}
}
}