roomFeeImportLang.js
4.7 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
export const messages = {
en: {
roomFeeImport: {
search: {
title: 'Search Conditions',
importFeeId: 'Please enter import ID',
feeTypeCd: 'Please select fee type'
},
table: {
title: 'Fee Import',
importFeeId: 'Import ID',
feeTypeCd: 'Fee Type',
createTime: 'Create Time',
remark: 'Remark'
},
button: {
import: 'Import Fee'
},
fetchError: 'Failed to fetch fee import data'
},
importRoomFee: {
title: 'Fee Import',
form: {
feeTypeCd: 'Fee Type',
objType: 'Fee Object',
file: 'Select File',
template: 'Download Template'
},
placeholder: {
feeTypeCd: 'Required, please select fee type',
objType: 'Required, please select fee object'
},
options: {
room: 'Room',
parking: 'Parking'
},
rules: {
feeTypeCdRequired: 'Fee type is required',
objTypeRequired: 'Fee object is required',
fileRequired: 'File is required'
},
tips: {
fileFormat: 'Only .xls, .xlsx files can be uploaded',
downloadTemplate1: 'Please download',
downloadTemplate2: 'import template',
downloadTemplate3: 'to prepare data before uploading'
},
button: {
selectFile: 'Select File'
},
message: {
importSuccess: 'Import successfully',
importFailed: 'Import failed',
downloadSuccess: 'Download template successfully',
downloadFailed: 'Download template failed'
}
},
roomFeeImportDetail: {
search: {
title: 'Search Conditions',
floorNum: 'Please enter floor number',
unitNum: 'Please enter unit number',
roomNum: 'Please enter room number',
moreCondition: 'More',
hideCondition: 'Hide'
},
table: {
title: 'Import Fee Details',
floorNum: 'Floor Number',
unitNum: 'Unit Number',
roomNum: 'Room Number',
feeName: 'Fee Name',
startTime: 'Start Time',
endTime: 'End Time',
amount: 'Total Amount',
remark: 'Remark',
state: 'Status'
},
status: {
success: 'Import Success',
failed: 'Import Failed'
},
button: {
back: 'Back'
},
message: {
fetchError: 'Failed to fetch data'
}
}
},
zh: {
roomFeeImport: {
search: {
title: '查询条件',
importFeeId: '请输入导入ID',
feeTypeCd: '请选择费用类型'
},
table: {
title: '费用导入',
importFeeId: '导入ID',
feeTypeCd: '费用类型',
createTime: '创建时间',
remark: '备注'
},
button: {
import: '费用导入'
},
fetchError: '获取费用导入数据失败'
},
importRoomFee: {
title: '费用导入',
form: {
feeTypeCd: '费用类型',
objType: '费用对象',
file: '选择文件',
template: '下载模板'
},
placeholder: {
feeTypeCd: '必填,请选择费用类型',
objType: '必填,请选择费用对象'
},
options: {
room: '房屋',
parking: '车位车辆'
},
rules: {
feeTypeCdRequired: '费用类型不能为空',
objTypeRequired: '费用对象不能为空',
fileRequired: '文件不能为空'
},
tips: {
fileFormat: '只能上传.xls, .xlsx格式文件',
downloadTemplate1: '请先下载',
downloadTemplate2: '导入模板',
downloadTemplate3: '准备数据后上传导入'
},
button: {
selectFile: '选择文件'
},
message: {
importSuccess: '导入成功',
importFailed: '导入失败',
downloadSuccess: '下载模板成功',
downloadFailed: '下载模板失败'
}
},
roomFeeImportDetail: {
search: {
title: '查询条件',
floorNum: '请输入楼栋编号',
unitNum: '请输入单元编号',
roomNum: '请输入房屋编号',
moreCondition: '更多',
hideCondition: '隐藏'
},
table: {
title: '导入费用详情',
floorNum: '楼栋编号',
unitNum: '单元编号',
roomNum: '房屋编号',
feeName: '费用名称',
startTime: '开始时间',
endTime: '结束时间',
amount: '总金额',
remark: '备注',
state: '状态'
},
status: {
success: '导入成功',
failed: '导入失败'
},
button: {
back: '返回'
},
message: {
fetchError: '获取数据失败'
}
}
}
}