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

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