payFeeBatchLang.js
3.62 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
export const messages = {
en: {
payFeeBatch: {
search: {
title: 'Search Conditions',
batchId: 'Please enter batch number',
state: 'Please select status',
createUserName: 'Please enter creator'
},
list: {
title: 'Fee Cancellation'
},
table: {
batchId: 'Batch Number',
createUserName: 'Employee',
createTime: 'Time',
remark: 'Cancellation Reason',
noRemark: 'None',
stateName: 'Audit Status',
msg: 'Audit Opinion',
operation: 'Operation'
},
state: {
normal: 'Normal',
applyCancel: 'Apply for Cancellation',
auditPass: 'Audit Passed',
auditFail: 'Audit Failed'
},
button: {
applyCancel: 'Apply for Cancellation',
audit: 'Audit'
},
message: {
auditSuccess: 'Audit successful'
}
},
applyDeleteFeeBatch: {
title: 'Fee Cancellation Application',
form: {
batchId: 'Batch Number',
createUserName: 'Employee',
createTime: 'Creation Time',
remark: 'Cancellation Reason'
},
rules: {
remarkRequired: 'Cancellation reason cannot be empty'
},
placeholder: {
remark: 'Please enter the cancellation reason'
},
message: {
success: 'Cancellation application submitted successfully'
}
},
audit: {
title: 'Audit Information',
form: {
state: 'Audit Status',
remark: 'Reason'
},
state: {
agree: 'Agree',
reject: 'Reject'
},
rules: {
stateRequired: 'Audit status cannot be empty',
remarkRequired: 'Reason cannot be empty',
remarkMaxLength: 'Reason cannot exceed 200 characters'
},
placeholder: {
state: 'Please audit',
remark: 'Please enter the reason (required)'
}
}
},
zh: {
payFeeBatch: {
search: {
title: '查询条件',
batchId: '请输入批次号',
state: '请选择状态',
createUserName: '请填写创建员工'
},
list: {
title: '取消费用'
},
table: {
batchId: '批次号',
createUserName: '员工',
createTime: '时间',
remark: '取消原因',
noRemark: '无',
stateName: '审核状态',
msg: '审核意见',
operation: '操作'
},
state: {
normal: '正常',
applyCancel: '申请取消',
auditPass: '审核通过',
auditFail: '审核失败'
},
button: {
applyCancel: '申请取消',
audit: '审核'
},
message: {
auditSuccess: '审核成功'
}
},
applyDeleteFeeBatch: {
title: '费用取消申请',
form: {
batchId: '批次号',
createUserName: '员工',
createTime: '创建时间',
remark: '取消原因'
},
rules: {
remarkRequired: '取消原因不能为空'
},
placeholder: {
remark: '请填写取消原因'
},
message: {
success: '取消申请提交成功'
}
},
audit: {
title: '审核信息',
form: {
state: '审核状态',
remark: '原因'
},
state: {
agree: '同意',
reject: '拒绝'
},
rules: {
stateRequired: '审核状态不能为空',
remarkRequired: '原因内容不能为空',
remarkMaxLength: '原因内容不能超过200字'
},
placeholder: {
state: '请审核',
remark: '请填写原因(必填)'
}
}
}
}