2e0fd29c
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
|
export const messages = {
en: {
listCarFee: {
fee: 'Fee',
createFee: 'Create Fee',
feeItem: 'Fee Item',
feeFlag: 'Fee Flag',
feeType: 'Fee Type',
amountOwed: 'Amount Owed',
startTime: 'Start Time',
endTime: 'End Time',
remark: 'Remark',
state: 'State',
operation: 'Operation',
pay: 'Pay',
history: 'History',
cancel: 'Cancel',
change: 'Change',
split: 'Split',
detail: 'Detail',
preDegrees: 'Pre Degrees',
curDegrees: 'Cur Degrees',
price: 'Price',
additionalAmount: 'Additional Amount',
algorithm: 'Algorithm',
usage: 'Usage',
note1: 'Note: The end time "-" means the fee is not due or the fee collection has ended.',
note2: 'If the amount owed is -1, it is usually an error in the fee item formula setting, please check.'
},
},
zh: {
listCarFee: {
fee: '费用',
createFee: '创建费用',
feeItem: '费用项目',
feeFlag: '费用标识',
feeType: '费用类型',
amountOwed: '应收金额',
startTime: '建账时间',
endTime: '应收时间段',
remark: '说明',
state: '状态',
operation: '操作',
pay: '缴费',
history: '历史',
cancel: '取消',
change: '变更',
split: '拆分',
detail: '详情',
preDegrees: '上期度数',
curDegrees: '本期度数',
price: '单价',
additionalAmount: '附加费',
algorithm: '算法',
usage: '用量',
note1: '注意:应收结束时间“-”表示未到应收时间或收费已结束。',
note2: '应收金额为-1一般为费用项公式设置出错请检查。'
},
}
}
|