ecinc-cloud-yoabase 9.5.215 → 9.5.216

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.js CHANGED
@@ -307,10 +307,11 @@ const install = function (Vue) {
307
307
  if (typeof window !== 'undefined' && window.Vue) {
308
308
  install(window.Vue)
309
309
  }
310
-
310
+ const $messages = require('./lang/index')
311
311
  export default {
312
312
  // 导出的对象必须具备一个 install 方法
313
313
  install,
314
314
  // 组件列表
315
- ...components
315
+ ...components,
316
+ $messages
316
317
  }
package/lang/en.js ADDED
@@ -0,0 +1,65 @@
1
+ module.exports = {
2
+ ecoa: {
3
+ formTitle: '工作台',
4
+ moduleMenu: {
5
+ workbench: '工作台',
6
+ personalAffairs: '个人事务',
7
+ todoTasks: '待办工作',
8
+ todoFile: '待办文件',
9
+ toReadFile: '待阅文件',
10
+ organizerFile: '协办文件',
11
+ suspendFile: '挂起文件',
12
+ completedWork: '已办工作',
13
+ myRead: '我已阅的',
14
+ urgencyWork: '催办工作',
15
+ urgencyMe: '催办我的',
16
+ urgencyProcessed: '已处理',
17
+ Myurgency: '我催办的',
18
+ attentionFiles: '关注的文件',
19
+ myMessage: '我的消息',
20
+ Unread: '未读',
21
+ read: '已读',
22
+ scheduleManagement: '日程管理',
23
+ personalSchedule: '个人日程安排',
24
+ leadershipOfficial: '领导公务安排',
25
+ searchRetrieve: '查询检索',
26
+ fileSearch: '文件查询',
27
+ InformationSearch: '资料查询',
28
+ fullText: '全文查询',
29
+ workSettings: '工作设置',
30
+ ToDoReminder: '待办提醒',
31
+ commonOpinions: '常用意见',
32
+ opinionSignature: '意见签名',
33
+ processTemplate: '办理模板',
34
+ outboundAut: '外出授权',
35
+ simulationForm: '仿真表单验证',
36
+ qualityAnomaly: '质量异常信息',
37
+ mailList: '通讯录',
38
+ personalSettings: '个人设置',
39
+ skinPeeler: '个性换肤',
40
+ personalData: '个人资料',
41
+ modifyAvatar: '修改头像',
42
+ changePassword: '修改密码',
43
+ // 公共
44
+ todo: '待办',
45
+ done: '已办',
46
+ myDraft: '我起草的',
47
+ all: '全部',
48
+ draft: '草稿',
49
+ processingProgress: '处理中',
50
+ Ended: '已结束',
51
+ tobeReviewed: '待阅',
52
+ readAlready: '已阅',
53
+ myCreated: '我创建的',
54
+ notSubmit: '未提交',
55
+ submitted: '已提交',
56
+ pendingProcessing: '待处理',
57
+ myHandled: '我处理的'
58
+ },
59
+ ytRecord: {
60
+ title: '',
61
+ name: ''
62
+ }
63
+
64
+ }
65
+ }
package/lang/es.js ADDED
@@ -0,0 +1,7 @@
1
+ module.exports = {
2
+ hygl: {
3
+ ytRecord: {
4
+ title: '选择议题'
5
+ }
6
+ }
7
+ }
package/lang/index.js ADDED
@@ -0,0 +1,25 @@
1
+ const enLocale = require('./en.js')
2
+ const zhCNLocale = require('./zhCN.js')
3
+ const esLocale = require('./es.js')
4
+ const jaLocale = require('./ja.js')
5
+
6
+ const $messages = {
7
+ en: {
8
+ ...enLocale
9
+ },
10
+ zhCN: {
11
+ ...zhCNLocale
12
+ },
13
+ es: {
14
+ ...esLocale
15
+ },
16
+ ja: {
17
+ ...jaLocale
18
+ }
19
+ }
20
+
21
+ // export const messages = $messages
22
+
23
+ module.exports = {
24
+ ...$messages
25
+ }
package/lang/ja.js ADDED
@@ -0,0 +1,7 @@
1
+ module.exports = {
2
+ hygl: {
3
+ ytRecord: {
4
+ title: '选择议题'
5
+ }
6
+ }
7
+ }