shareReadingLang.js
4.9 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
export const messages = {
en: {
shareReading: {
search: {
title: 'Search Conditions',
selectMeter: 'Please select shared meter',
startTime: 'Please select start time',
endTime: 'Please select end time'
},
list: {
title: 'Shared Meter Reading',
addReading: 'Add Reading'
},
table: {
id: 'ID',
name: 'Name',
preDegrees: 'Previous Degrees',
curDegrees: 'Current Degrees',
degrees: 'Degrees',
preReadingTime: 'Previous Reading Time',
curReadingTime: 'Current Reading Time',
reader: 'Reader',
status: 'Status',
remark: 'Remark',
auditor: 'Auditor',
auditOpinion: 'Audit Opinion',
shareProgress: 'Share Progress',
readingTime: 'Reading Time',
shareFee: 'Share Fee',
operation: 'Operation'
},
status: {
waiting: 'Waiting',
passed: 'Passed',
rejected: 'Rejected',
all: 'All'
},
add: {
title: 'Add Shared Reading',
meter: 'Shared Meter',
selectMeter: 'Please select shared meter',
preDegrees: 'Previous Degrees',
inputPreDegrees: 'Please input previous degrees',
curDegrees: 'Current Degrees',
inputCurDegrees: 'Please input current degrees',
preReadingTime: 'Previous Reading Time',
selectPreTime: 'Please select previous reading time',
curReadingTime: 'Current Reading Time',
selectCurTime: 'Please select current reading time',
remark: 'Remark',
inputRemark: 'Please input remark (optional)'
},
audit: {
title: 'Audit Shared Reading',
status: 'Status',
selectStatus: 'Please select status',
remark: 'Remark',
inputRemark: 'Please input remark'
},
delete: {
title: 'Delete Confirmation',
confirm: 'Are you sure to delete this shared reading?'
},
validate: {
selectMeter: 'Please select shared meter',
inputPreDegrees: 'Please input previous degrees',
inputCurDegrees: 'Please input current degrees',
selectPreTime: 'Please select previous reading time',
selectCurTime: 'Please select current reading time',
selectStatus: 'Please select audit status',
number: 'Please input valid number'
},
message: {
addSuccess: 'Add shared reading successfully',
auditSuccess: 'Audit shared reading successfully',
deleteSuccess: 'Delete shared reading successfully'
}
}
},
zh: {
shareReading: {
search: {
title: '查询条件',
selectMeter: '请选择公摊表',
startTime: '请选择开始时间',
endTime: '请选择结束时间'
},
list: {
title: '公摊抄表',
addReading: '抄表'
},
table: {
id: '编号',
name: '名称',
preDegrees: '上期度数',
curDegrees: '本期度数',
degrees: '度数',
preReadingTime: '上期读表时间',
curReadingTime: '本期读表时间',
reader: '抄表人',
status: '状态',
remark: '说明',
auditor: '审核人',
auditOpinion: '审核意见',
shareProgress: '公摊进度',
readingTime: '抄表时间',
shareFee: '公摊费用',
operation: '操作'
},
status: {
waiting: '待审核',
passed: '审核通过',
rejected: '审核不通过',
all: '全部'
},
add: {
title: '公摊抄表',
meter: '公摊表',
selectMeter: '请选择公摊表',
preDegrees: '上期度数',
inputPreDegrees: '请填写上期度数',
curDegrees: '本期度数',
inputCurDegrees: '请填写本期度数',
preReadingTime: '上期读表时间',
selectPreTime: '请选择上期读表时间',
curReadingTime: '本期读表时间',
selectCurTime: '请选择本期读表时间',
remark: '备注',
inputRemark: '请填写备注(选填)'
},
audit: {
title: '公摊审核',
status: '审核',
selectStatus: '请选择审核',
remark: '说明',
inputRemark: '请填写说明'
},
delete: {
title: '删除确认',
confirm: '确定删除公摊抄表?'
},
validate: {
selectMeter: '请选择公摊表',
inputPreDegrees: '请填写上期度数',
inputCurDegrees: '请填写本期度数',
selectPreTime: '请选择上期读表时间',
selectCurTime: '请选择本期读表时间',
selectStatus: '请选择审核状态',
number: '请输入有效数字'
},
message: {
addSuccess: '添加公摊抄表成功',
auditSuccess: '审核公摊抄表成功',
deleteSuccess: '删除公摊抄表成功'
}
}
}
}