diff --git a/src/lang/en.js b/src/lang/en.js index 95b1c92..c84bee1 100644 --- a/src/lang/en.js +++ b/src/lang/en.js @@ -30,7 +30,9 @@ import ada from './en/template/ada' //毒理模板 import dl from './en/template/dl' //细胞模板 -import xb from './zh/template/xb' +import xb from './en/template/xb' +//动技模板 +import dj from './en/template/dj' // 试验管理 import study from './en/business/study/study' @@ -208,5 +210,6 @@ export default { ada: ada, dl: dl, xb: xb, + dj: dj, } } diff --git a/src/lang/en/template/dj.js b/src/lang/en/template/dj.js new file mode 100644 index 0000000..c5a1c00 --- /dev/null +++ b/src/lang/en/template/dj.js @@ -0,0 +1,7 @@ +//动技 +export default { + dj001: { + syts: '试验天数', + }, + +} diff --git a/src/lang/en/template/dl.js b/src/lang/en/template/dl.js index 8a59693..97b5e6f 100644 --- a/src/lang/en/template/dl.js +++ b/src/lang/en/template/dl.js @@ -30,6 +30,21 @@ const common = { export default { dl001: {}, common, + dl003: { + ...common, + pytj: '培养条件', + jzkssj: '接种开始时间', + jzjssj: '接种结束时间', + fssygbh: '复苏水浴锅编号', + pyx: '培养箱', + fstj: '复苏条件', + jzjzhbh: '菌种接种后编号', + jzlybh: '菌种来源编号', + rtbh: '肉汤编号', + jzjrtj: '菌种加入体积', + ksButton: 'Start', + jsButton: 'End' + }, dl007: { ...common, czxx: 'Operation Information', diff --git a/src/lang/zh.js b/src/lang/zh.js index fe0b989..49bc816 100644 --- a/src/lang/zh.js +++ b/src/lang/zh.js @@ -31,6 +31,8 @@ import ada from './zh/template/ada' import dl from './zh/template/dl' //细胞模板 import xb from './zh/template/xb' +//动技模板 +import dj from './zh/template/dj' // 试验管理 import study from './zh/business/study/study' @@ -204,5 +206,6 @@ export default { ada: ada, dl: dl, xb: xb, + dj: dj, } } diff --git a/src/lang/zh/template/dj.js b/src/lang/zh/template/dj.js new file mode 100644 index 0000000..c5a1c00 --- /dev/null +++ b/src/lang/zh/template/dj.js @@ -0,0 +1,7 @@ +//动技 +export default { + dj001: { + syts: '试验天数', + }, + +} diff --git a/src/lang/zh/template/dl.js b/src/lang/zh/template/dl.js index a2417c0..754cbfa 100644 --- a/src/lang/zh/template/dl.js +++ b/src/lang/zh/template/dl.js @@ -30,6 +30,22 @@ const common = { export default { dl001: {}, common, + dl003: { + ...common, + pytj: '培养条件', + jzkssj: '接种开始时间', + jzjssj: '接种结束时间', + fssygbh: '复苏水浴锅编号', + pyx: '培养箱', + fstj: '复苏条件', + frswd: '放入时温度', + jzjzhbh: '菌种接种后编号', + jzlybh: '菌种来源编号', + rtbh: '肉汤编号', + jzjrtj: '菌种加入体积', + ksButton: '开始', + jsButton: '结束' + }, dl007: { ...common, czxx: '操作信息', diff --git a/src/views/business/comps/template/TemplateTable.vue b/src/views/business/comps/template/TemplateTable.vue index 813a95b..25d70cc 100644 --- a/src/views/business/comps/template/TemplateTable.vue +++ b/src/views/business/comps/template/TemplateTable.vue @@ -81,9 +81,13 @@ import YP005 from "./comps/yp/YP005.vue"; //细胞 import XB001 from "./comps/xb/XB001.vue"; +//动技 +import DJ001 from "./comps/dj/DJ001.vue"; + //毒理 // DL001-SYWZPZJHB // DL002-使用SP001 +import DL003 from './comps/dl/DL003.vue' import DL007 from './comps/dl/DL007.vue' import DL008 from './comps/dl/DL008.vue' import DL009 from './comps/dl/DL009.vue' @@ -130,6 +134,7 @@ export default { YP004, YP005, // 毒理 + DL003, DL007, DL008, DL009, @@ -148,7 +153,10 @@ export default { DL022, DL023, DL024, - XB001,//细胞 + //细胞 + XB001, + //动技 + DJ001, }, data() { return { @@ -256,11 +264,14 @@ export default { 'YP003': 'YP003', 'YP004': 'YP004', 'YP005': 'YP005', - //细胞 + //细胞 'XB001': 'XB001', + //动技 + 'DJ001': 'DJ001', //毒理 //DL001-SYWZPZJHB 'DL002': 'SP001', + 'DL003': 'DL003', 'DL007': 'DL007', 'DL008': 'DL008', 'DL009': 'DL009', diff --git a/src/views/business/comps/template/comps/dj/DJ001.vue b/src/views/business/comps/template/comps/dj/DJ001.vue new file mode 100644 index 0000000..ffafc5e --- /dev/null +++ b/src/views/business/comps/template/comps/dj/DJ001.vue @@ -0,0 +1,165 @@ + + + + + \ No newline at end of file diff --git a/src/views/business/comps/template/comps/dl/DL003.vue b/src/views/business/comps/template/comps/dl/DL003.vue new file mode 100644 index 0000000..92c18fc --- /dev/null +++ b/src/views/business/comps/template/comps/dl/DL003.vue @@ -0,0 +1,507 @@ + + + + + diff --git a/src/views/business/comps/template/comps/xb/XB001.vue b/src/views/business/comps/template/comps/xb/XB001.vue index d1ccc09..530b115 100644 --- a/src/views/business/comps/template/comps/xb/XB001.vue +++ b/src/views/business/comps/template/comps/xb/XB001.vue @@ -13,7 +13,7 @@ - +
第1步:准备分析批: