jinlin
2024-02-23 1772fc5e211f9e9e0ab4cdc6c29b436aac178c2a
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
const t = {}
 
t.loading = '加载中...'
 
t.brand = {}
t.brand.lg = '公交智通后台管理系统'
t.brand.mini = '智通'
 
t.add = '新增'
t.delete = '删除'
t.deleteBatch = '删除'
t.view = '查看'
t.update = '修改'
t.query = '查询'
t.export = '导出'
t.import = '上传'
t.handle = '操作'
t.confirm = '确定'
t.cancel = '取消'
t.clear = '清除'
t.logout = '退出'
t.manage = '处理'
t.createDate = '创建时间'
t.keyword = '关键字:'
t.choose = '请选择'
t.changeTheme = '更换主题'
t.close = '关闭'
 
t.prompt = {}
t.prompt.title = '提示'
t.prompt.info = '确定进行[{handle}]操作?'
t.prompt.success = '操作成功'
t.prompt.failed = '操作失败'
t.prompt.deleteBatch = '请选择删除项'
 
t.validate = {}
t.validate.required = '必填项不能为空'
t.validate.required2 = '{label}不能为空'
t.validate.min = '长度不能小于 {min} 个字符'
t.validate.max = '长度不能小于 {max} 个字符'
t.validate.minmax = '长度在 {min} 到 {max} 个字符'
t.validate.format = '{attr}格式错误'
 
t.upload = {}
t.upload.text = '将文件拖到此处,或<em>点击上传</em>'
t.upload.tip = '只支持{format}格式文件!'
t.upload.button = '点击上传'
t.upload.fileUpload = '文件上传'
t.upload.singleImgUpload = '单个图片上传'
t.upload.multipleImgUpload = '多个图片上传'
t.upload.dragUpload = '拖拽上传'
t.upload.cutUpload = '裁剪上传'
 
t.datePicker = {}
t.datePicker.range = '至'
t.datePicker.start = '开始日期'
t.datePicker.end = '结束日期'
 
t.fullscreen = {}
t.fullscreen.prompt = '您的浏览器不支持此操作'
 
t.updatePassword = {}
t.updatePassword.title = '修改密码'
t.updatePassword.username = '账号'
t.updatePassword.password = '原密码'
t.updatePassword.newPassword = '新密码'
t.updatePassword.confirmPassword = '确认密码'
t.updatePassword.validate = {}
t.updatePassword.validate.confirmPassword = '确认密码与新密码输入不一致'
 
t.contentTabs = {}
t.contentTabs.closeCurrent = '关闭当前标签页'
t.contentTabs.closeOther = '关闭其它标签页'
t.contentTabs.closeAll = '关闭全部标签页'
 
/* 页面 */
t.notFound = {}
t.notFound.desc = '抱歉!您访问的页面<em>失联</em>啦...'
t.notFound.back = '上一页'
t.notFound.home = '首页'
 
t.login = {}
t.login.title = '用户登录'
t.login.username = '用户名'
t.login.password = '密码'
t.login.captcha = '验证码'
t.login.clickTitle = '登录'
 
t.home = {}
t.home.sysInfo = {}
t.home.sysInfo.name = '系统名称'
t.home.sysInfo.nameVal = t.brand.lg
t.home.sysInfo.version = '版本信息'
t.home.sysInfo.versionVal = window.SITE_CONFIG['version']
t.home.sysInfo.osName = '操作系统'
t.home.sysInfo.osVersion = '系统版本'
t.home.sysInfo.osArch = '系统架构'
t.home.sysInfo.processors = 'CPU核数'
t.home.sysInfo.totalPhysical = '系统内存'
t.home.sysInfo.freePhysical = '剩余内存'
t.home.sysInfo.memoryRate = '内存使用'
t.home.sysInfo.userLanguage = '系统语言'
t.home.sysInfo.jvmName = 'JVM信息'
t.home.sysInfo.javaVersion = 'JVM版本'
t.home.sysInfo.javaHome = 'JAVA_HOME'
t.home.sysInfo.userDir = '工作目录'
t.home.sysInfo.javaTotalMemory = 'JVM占用内存'
t.home.sysInfo.javaFreeMemory = 'JVM空闲内存'
t.home.sysInfo.javaMaxMemory = 'JVM最大内存'
t.home.sysInfo.userName = '当前用户'
t.home.sysInfo.systemCpuLoad = 'CPU负载'
t.home.sysInfo.userTimezone = '系统时区'
 
t.menu = {}
t.menu.name = '名称'
t.menu.icon = '图标'
t.menu.type = '类型'
t.menu.sort = '排序'
t.menu.url = '路由'
t.menu.permissions = '授权标识'
t.menu.permissionsTips = '多个用逗号分隔,如:sys:menu,sys:menu:update'
t.menu.parentName = '上级菜单'
t.menu.resource = '授权资源'
t.menu.resourceUrl = '资源URL'
t.menu.remark = '描述'
 
t.user = {}
t.user.title = '用户信息'
t.user.username = '用户名'
t.user.avatar = '头像'
t.user.sign = '签名'
t.user.deptName = '所属部门'
t.user.dept = '用户部门'
t.user.nickName = '昵称'
t.user.simpleSpelling = '姓名简拼'
t.user.fullSpelling = '姓名全拼'
t.user.email = '邮箱'
t.user.mobile = '手机号'
t.user.dingcode = '钉钉号'
t.user.wechat = '微信号'
t.user.jobIdList = '职位'
t.user.postIdList = '岗位'
t.user.status = '状态'
t.user.createDate = '创建时间'
t.user.password = '密码'
t.user.confirmPassword = '确认密码'
t.user.resetPassword = '重置密码'
t.user.userCode = '工号'
t.user.realName = '真实姓名'
t.user.secretClass = '用户密级'
t.user.gender = '性别'
t.user.select = '选择用户'
t.user.selecterror = '请选择一条记录'
t.user.setPost = '岗位配置'
 
t.user.setRole = '设置角色'
 
t.dept = {}
t.dept.code = '部门编号'
t.dept.name = '部门名称'
t.dept.shortName = '部门简称'
t.dept.type = '部门类型'
t.dept.parentName = '上级部门'
t.dept.sort = '排序'
 
t.job = {}
t.job.name = '职位名称'
t.job.code = '职位编号'
t.job.sort = '排序'
t.job.remark = '描述'
t.job.parentJob = '上级职位'
t.job.inputName = '请输入职位名称'
 
t.post = {}
t.post.name = '岗位名称'
t.post.code = '岗位编号'
t.post.remark = '描述'
t.post.inputName = '请输入岗位名称'
t.post.deptName = '所属部门'
t.post.sort = '排序'
 
t.file = {}
t.file.sort = '序号'
t.file.modelName = '工程项目'
t.file.name = '文件类型'
t.file.fileTitle = '文件主题'
t.file.fileName = '文件名'
t.file.edition = '版本'
t.file.shortName = '单位'
 
t.file.fileSize = '文件大小(KB)'
 
 
t.company = {}
t.company.name = '公司名称'
t.company.code = '公司代码'
t.company.shortName = '公司简称'
t.company.type = '公司类型'
t.company.sort = '排序'
t.company.parentCompany = '上级公司'
t.company.select = '选择公司'
 
t.role = {}
t.role.name = '角色名称'
t.role.remark = '角色描述'
t.role.code = '角色编码'
t.role.sort = '排序'
t.role.createDate = '创建时间'
t.role.menuRight = '菜单权限'
t.role.dataRight = '数据权限'
 
t.interface = {}
t.interface.name = '接口名称'
t.interface.field = '接口参数'
t.interface.op = '操作符'
t.role.controlType = '控制类型'
t.role.companyControlType = '公司控制类型'
t.role.deptControlType = '部门控制类型'
t.role.userControlType = '用户控制类型'
t.role.paramsValue = '参数值'
 
t.dict = {}
t.dict.pid = '上级类型'
t.dict.dictName = '字典名称'
t.dict.dictType = '字典类型'
t.dict.dictLabel = '字典标签'
t.dict.dictValue = '字典值'
t.dict.canView = '租户可见'
t.dict.canOverload = '允许重载'
t.dict.sort = '排序'
t.dict.remark = '备注'
t.dict.createDate = '创建时间'
t.dict.copy = '拷贝'
 
t.tenant = {}
t.tenant.title = '租户信息'
t.tenant.inputName = '请输入租户名称'
t.tenant.inputCode = '请输入租户代码'
t.tenant.name = '租户名称'
t.tenant.code = '租户编号'
t.tenant.shortName = '租户简称'
t.tenant.nature = '租户性质'
t.tenant.gmtBegin = '有效期开始'
t.tenant.gmtEnd = '有效期结束'
t.tenant.selectgmtBegin = '选择有效期开始'
t.tenant.selectgmtEnd = '选择有效期结束'
t.tenant.status = '状态'
t.tenant.adminMobile = '管理员电话'
t.tenant.businessScope = '经营范围'
t.tenant.foundedTime = '成立时间'
t.tenant.selectFoundedTime = '选择成立时间'
t.tenant.webAddress = '网址'
t.tenant.manager = '负责人'
t.tenant.phone = '联系电话'
t.tenant.email = '电子邮箱'
t.tenant.fax = '传真'
t.tenant.contacter = '联系人'
t.tenant.contactPhone = '联系人电话'
t.tenant.postalCode = '邮编'
t.tenant.remark = '备注'
t.tenant.province = '所属地区'
t.tenant.address = '详细地址'
t.tenant.adminTitle = '租户管理员信息'
t.tenant.adminRealName = '真实姓名'
t.tenant.menuRight = '菜单权限'
 
t.params = {}
t.params.paramCode = '编码'
t.params.paramValueType = '值类型'
t.params.paramValue = '值'
t.params.isToWeb = '前端是否可见'
t.params.isCanOverload = '允许重载'
t.params.remark = '备注'
 
t.news = {}
t.news.title = '标题'
t.news.pubDate = '发布时间'
t.news.createDate = '创建时间'
t.news.content = '内容'
 
t.mail = {}
t.mail.name = '名称'
t.mail.config = '邮件配置'
t.mail.subject = '主题'
t.mail.createDate = '创建时间'
t.mail.send = '发送邮件'
t.mail.content = '内容'
t.mail.smtp = 'SMTP'
t.mail.port = '端口号'
t.mail.username = '邮箱账号'
t.mail.password = '邮箱密码'
t.mail.mailTo = '收件人'
t.mail.mailCc = '抄送'
t.mail.params = '模板参数'
t.mail.paramsTips = '如:{"code": "123456"}'
t.mail.templateId = '模版ID'
t.mail.status = '状态'
t.mail.status0 = '发送失败'
t.mail.status1 = '发送成功'
t.mail.mailFrom = '发送者'
t.mail.createDate = '发送时间'
 
t.sms = {}
t.sms.mobile = '手机号'
t.sms.status = '状态'
t.sms.status0 = '发送失败'
t.sms.status1 = '发送成功'
t.sms.config = '短信配置'
t.sms.send = '发送短信'
t.sms.platform = '平台类型'
t.sms.platform1 = '阿里云'
t.sms.platform2 = '腾讯云'
t.sms.params = '参数'
t.sms.paramsTips = '如:{"code": "123456"}'
t.sms.params1 = '参数1'
t.sms.params2 = '参数2'
t.sms.params3 = '参数3'
t.sms.params4 = '参数4'
t.sms.createDate = '发送时间'
t.sms.aliyunAccessKeyId = 'Key'
t.sms.aliyunAccessKeyIdTips = '阿里云AccessKeyId'
t.sms.aliyunAccessKeySecret = 'Secret'
t.sms.aliyunAccessKeySecretTips = '阿里云AccessKeySecret'
t.sms.aliyunSignName = '短信签名'
t.sms.aliyunTemplateCode = '短信模板'
t.sms.aliyunTemplateCodeTips = '短信模板CODE'
t.sms.qcloudAppId = 'AppId'
t.sms.qcloudAppIdTips = '腾讯云AppId'
t.sms.qcloudAppKey = 'AppKey'
t.sms.qcloudAppKeyTips = '腾讯云AppKey'
t.sms.qcloudSignName = '短信签名'
t.sms.qcloudTemplateId = '短信模板'
t.sms.qcloudTemplateIdTips = '短信模板ID'
 
t.oss = {}
t.oss.upload = '上传文件'
t.oss.name = '文件名称'
t.oss.size = '文件大小(KB)'
t.oss.channel = '上传渠道'
t.oss.busiType = '业务类型'
t.oss.busiField = '业务字段'
t.oss.status = '状态'
t.oss.createDate = '上传时间'
 
t.logError = {}
t.logError.requestUri = '请求URI'
t.logError.requestMethod = '请求方式'
t.logError.requestParams = '请求参数'
t.logError.ip = '操作IP'
t.logError.userAgent = '用户代理'
t.logError.createDate = '创建时间'
t.logError.errorInfo = '异常信息'
 
t.logLogin = {}
t.logLogin.creatorName = '用户名'
t.logLogin.status = '状态'
t.logLogin.status0 = '失败'
t.logLogin.status1 = '成功'
t.logLogin.status2 = '账号已锁定'
t.logLogin.operation = '操作类型'
t.logLogin.operation0 = '登录'
t.logLogin.operation1 = '退出'
t.logLogin.ip = '操作IP'
t.logLogin.userAgent = 'User-Agent'
t.logLogin.createDate = '创建时间'
 
t.logOperation = {}
t.logOperation.status = '状态'
t.logOperation.status0 = '失败'
t.logOperation.status1 = '成功'
t.logOperation.creatorName = '用户名'
t.logOperation.operation = '用户操作'
t.logOperation.requestUri = '请求URI'
t.logOperation.requestMethod = '请求方式'
t.logOperation.requestParams = '请求参数'
t.logOperation.requestTime = '请求时长'
t.logOperation.ip = '操作IP'
t.logOperation.userAgent = 'User-Agent'
t.logOperation.createDate = '创建时间'
 
t.oss.type6 = 'MinIO'
t.oss.minioEndPoint = 'EndPoint'
t.oss.minioEndPointTips = 'MinIO EndPoint'
t.oss.minioAccessKey = 'AccessKey'
t.oss.minioAccessKeyTips = 'AccessKey'
t.oss.minioSecretKey = 'SecretKey'
t.oss.minioSecretKeyTips = 'SecretKey'
t.oss.minioBucketName = 'BucketName'
t.oss.minioBucketNameTips = 'BucketName'
t.oss.minioPrefix = '路径前缀'
t.oss.minioPrefixTips = '不设置默认为空'
 
t.sms.platform3 = '七牛'
t.sms.qiniuAccessKey = 'AccessKey'
t.sms.qiniuAccessKeyTips = 'AccessKey'
t.sms.qiniuSecretKey = 'SecretKey'
t.sms.qiniuSecretKeyTips = 'SecretKey'
t.sms.qiniuTemplateId = '短信模板'
t.sms.qiniuTemplateIdTips = '短信模板ID'
t.sms.smsCode = '短信编码'
t.sms.remark = '备注'
 
t.notice = {}
t.notice.title = '标题'
t.notice.type = '类型'
t.notice.senderName = '发送者'
t.notice.senderDate = '发送时间'
t.notice.status = '状态'
t.notice.status0 = '草稿'
t.notice.status1 = '已发'
t.notice.view = '查看'
t.notice.view1 = '通知管理 - 查看'
t.notice.view2 = '我的通知 - 查看'
t.notice.readStatus = '阅读状态'
t.notice.readStatus0 = '未读'
t.notice.readStatus1 = '已读'
t.notice.content = '内容'
t.notice.receiverType = '接收者'
t.notice.selectDept = '选择部门'
t.notice.draft = '保存草稿'
t.notice.release = '发布通知'
t.notice.close = '关闭'
t.notice.receiverName = '接收者'
t.notice.readDate = '阅读时间'
t.notice.new = '有新通知'
t.notice.disconnect = '连接断开'
t.notice.disconnectMessage = 'WebSocket连接已断开,请检查网络'
 
export default t