华西海圻ELN前端工程
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

179 lines
4.7 KiB

4 months ago
  1. // 工作台-首页
  2. import home from './zh/business/home/home'
  3. //系统管理
  4. // 菜单管理
  5. import menu from './zh/system/menu'
  6. // 角色管理
  7. import role from './zh/system/role'
  8. // 部门管理
  9. import dept from './zh/system/dept'
  10. // 部门管理
  11. import user from './zh/system/user'
  12. // 模板管理
  13. import template from './zh/system/template'
  14. // 公共模板语言配置
  15. import commonTemplate from './zh/template/commonTemplate'
  16. //色谱模板
  17. import sp from './zh/template/sp'
  18. //供试品模板
  19. import gspmb from './zh/template/gsp'
  20. // 试验管理
  21. import study from './zh/business/study/study'
  22. import studyEnter from './zh/business/study/studyEnter'
  23. //非试验表单
  24. import nonTrial from './zh/business/study/nonTrial'
  25. //麻精药表单
  26. import drug from './zh/business/study/drug'
  27. //预填表单
  28. import studyFormPre from './zh/business/study/studyFormPre'
  29. //填报表单
  30. import studyFormFill from './zh/business/study/studyFormFill'
  31. //计划表单
  32. import studyFormPlan from './zh/business/study/studyFormPlan'
  33. //申请表单
  34. import studyFormApply from './zh/business/study/studyFormApply'
  35. //饲养间
  36. import studyRoom from './zh/business/study/studyRoom'
  37. //试验方法
  38. import studyMethod from './zh/business/study/studyMethod'
  39. //物资列表-细胞、细菌
  40. import cell from './zh/business/study/cell'
  41. //表单
  42. import form from './zh/business/form/form'
  43. //资源库管理
  44. import resource from './zh/business/resource/resource'
  45. // 仪器管理
  46. import yq from './zh/business/resource/yq'
  47. // 暂存柜
  48. import zcg from './zh/business/resource/zcg'
  49. // 麻精药
  50. import mjy from './zh/business/resource/mjy'
  51. // 给药制剂
  52. import gyzj from './zh/business/resource/gyzj'
  53. // 试剂库存
  54. import sj from './zh/business/resource/sj'
  55. // 供试品
  56. import gsp from './zh/business/resource/gsp'
  57. //档案记录
  58. import archive from './zh/business/archive/archive'
  59. export default {
  60. system: {
  61. name: '华西海圻ELN系统',
  62. title: '华西海圻管理系统',
  63. tip: '提示',
  64. logOut: '确认注销并退出系统吗?',
  65. crowdOut: '该账户已在其他地方登录,是否继续登录,继续登录挤掉原登录账号',
  66. timeOutContent: '登录状态已过期,您可以输入密码进入页面,或者取消',
  67. timeOutEnter: '进入页面',
  68. timeOutTip: '无效的会话,或者会话已过期,请重新登录。'
  69. },
  70. form: {
  71. search: '查询',
  72. reset: '重置',
  73. add: '新增',
  74. edit: '编辑',
  75. export: '导出',
  76. saveConfirm: '确定',
  77. confirm: '确认',
  78. reject: '拒绝',
  79. approve: '同意',
  80. cancel: '取消',
  81. close: '关闭',
  82. operate: '操作',
  83. delete: '删除',
  84. detail: '详情',
  85. placeholderInput: '请输入',
  86. placeholderSelect: '请选择',
  87. confirmDelete: '确认删除?',
  88. startDate: '开始日期',
  89. endDate: '结束日期',
  90. password: '密码',
  91. signer: '签名人',
  92. signerUser: '签名人用户名',
  93. signerPsw: '签名人密码',
  94. qmyy: '签名意义',
  95. signTime: '签名时间',
  96. remark: '备注',
  97. reason: '原因',
  98. modify: '修改',
  99. modifyRecord: '修改记录',
  100. lengthLimit: '长度不能超过',
  101. notEmpty: '不能为空',
  102. operationSuccess: '操作成功',
  103. OperationFailed: '操作失败',
  104. selectMember: '选择成员'
  105. },
  106. login: {
  107. title: '欢迎登录系统',
  108. logIn: '登录',
  109. username: '请输入账号',
  110. usernameRequired: '请输入账号',
  111. password: '请输入密码',
  112. passwordRequired: '请输入密码',
  113. code: '验证码',
  114. codeRequired: '请输入验证码',
  115. rememberMe: '记住密码',
  116. loginIng: 'Loading...',
  117. logOut: '退出登录',
  118. profile: '个人中心'
  119. },
  120. tagsView: {
  121. refresh: '刷新',
  122. close: '关闭',
  123. closeOthers: '关闭其它',
  124. closeAll: '关闭所有'
  125. },
  126. settings: {
  127. title: '系统布局配置',
  128. theme: '主题色',
  129. tagsView: '开启 Tags-View',
  130. fixedHeader: '固定 Header',
  131. sidebarLogo: '侧边栏 Logo'
  132. },
  133. page: {
  134. system: {
  135. menu,
  136. role,
  137. dept,
  138. user,
  139. template
  140. },
  141. business: {
  142. home: home,
  143. resource: {
  144. resource: resource,
  145. zcg: zcg,
  146. mjy: mjy,
  147. yq: yq,
  148. sj: sj,
  149. gyzj: gyzj,
  150. gsp: gsp
  151. },
  152. study: {
  153. study: study,
  154. studyEnter: studyEnter,
  155. studyFormPre: studyFormPre,
  156. studyFormFill: studyFormFill,
  157. studyFormPlan: studyFormPlan,
  158. studyFormApply: studyFormApply,
  159. studyRoom: studyRoom,
  160. studyMethod: studyMethod,
  161. nonTrial: nonTrial,
  162. drug: drug,
  163. cell: cell
  164. },
  165. form: form,
  166. archive: archive
  167. }
  168. },
  169. template: {
  170. common: commonTemplate,
  171. sp: sp,
  172. gsp: gspmb
  173. }
  174. }