10d3499d
wuxw
开发完成 admin 台账功能
|
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
|
export const messages = {
en: {
adminOweFeeDetail: {
search: {
title: 'Search Conditions',
feeTypeCd: 'Please select fee type',
objNameLike: 'Please enter room number',
startTime: 'Please select start time',
endTime: 'Please select end time',
ownerNameLike: 'Please enter owner name'
},
list: {
title: 'Arrears Details'
},
table: {
index: 'No.',
communityName: 'Community Name',
objName: 'Room Number',
ownerName: 'Owner',
ownerTel: 'Owner Tel',
builtUpArea: 'Area',
feeName: 'Fee Item',
startTime: 'Start Time',
endTime: 'End Time',
oweDay: 'Arrears Days',
oweAmount: 'Arrears Amount'
},
summary: {
subtotal: 'Subtotal',
total: 'Total',
owe: 'Arrears',
yuan: 'Yuan'
},
tips: {
startTime: 'Start time: the billing start time of the created fee',
oweDayDeposit: 'Arrears days (days): The arrears days of the deposit fee item is the number of days from the start time of the fee to the current day',
oweDayOther: 'For fee items other than deposits, the arrears days are the number of days from the start time to the end time of the fee',
oweAmount: 'Arrears amount: the fee payable during the arrears period'
},
feeType: {
property: 'Property Fee',
parking: 'Parking Fee'
},
fetchError: 'Failed to fetch arrears details'
}
},
zh: {
adminOweFeeDetail: {
search: {
title: '查询条件',
feeTypeCd: '请选择费用大类',
objNameLike: '请填写房屋编号',
startTime: '请选择开始时间',
endTime: '请选择结束时间',
ownerNameLike: '请填写业主名称'
},
list: {
title: '欠费明细表'
},
table: {
index: '费用编号',
communityName: '小区名称',
objName: '房号',
ownerName: '业主',
ownerTel: '业主电话',
builtUpArea: '面积',
feeName: '费用项',
startTime: '开始时间',
endTime: '结束时间',
oweDay: '欠费时长(天)',
oweAmount: '欠费金额'
},
summary: {
subtotal: '小计',
total: '大计',
owe: '欠费',
yuan: '元'
},
tips: {
startTime: '费用开始时间:所创建费用的计费起始时间',
oweDayDeposit: '欠费时长(天):押金费用项欠费时长是费用开始时间到当天的天数',
oweDayOther: '除押金外的费用项欠费时长是费用的开始时间到费用的结束时间的天数',
oweAmount: '欠费金额:欠费周期内应缴费用'
},
feeType: {
property: '物业费',
parking: '停车费'
},
fetchError: '获取欠费明细失败'
}
}
}
|