华西海圻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.

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