Browse Source

feat: [模板管理] 样品

lkf
memorylkf 2 months ago
parent
commit
ff2c6005a4
7 changed files with 19 additions and 14 deletions
  1. +5
    -1
      src/lang/en.js
  2. +2
    -6
      src/lang/en/template/lba.js
  3. +2
    -0
      src/lang/en/template/yp.js
  4. +4
    -1
      src/lang/zh.js
  5. +2
    -6
      src/lang/zh/template/lba.js
  6. +2
    -0
      src/lang/zh/template/yp.js
  7. +2
    -0
      src/views/business/comps/template/TemplateTable.vue

+ 5
- 1
src/lang/en.js View File

@ -23,6 +23,9 @@ import gspmb from './en/template/gsp'
import pcr from './en/template/pcr'
//LBA模板
import lba from './en/template/lba'
//样品模板
import yp from './en/template/yp'
// 试验管理
import study from './en/business/study/study'
import studyEnter from './en/business/study/studyEnter'
@ -192,6 +195,7 @@ export default {
sp: sp,
gsp: gspmb,
pcr: pcr,
lba: lba
lba: lba,
yp: yp
}
}

+ 2
- 6
src/lang/en/template/lba.js View File

@ -1,6 +1,2 @@
//色谱
export default {
lba001: {
title: 'Ligand Binding Analysis Solution Preparation Record'
}
}
//LBA
export default {}

+ 2
- 0
src/lang/en/template/yp.js View File

@ -0,0 +1,2 @@
//样品
export default {}

+ 4
- 1
src/lang/zh.js View File

@ -23,6 +23,8 @@ import gspmb from './zh/template/gsp'
import pcr from './zh/template/pcr'
//LBA模板
import lba from './zh/template/lba'
//样品模板
import yp from './zh/template/yp'
// 试验管理
import study from './zh/business/study/study'
@ -188,6 +190,7 @@ export default {
sp: sp,
gsp: gspmb,
pcr: pcr,
lba: lba
lba: lba,
yp: yp
}
}

+ 2
- 6
src/lang/zh/template/lba.js View File

@ -1,6 +1,2 @@
//色谱
export default {
lba001: {
title: '配体结合分析溶液配制表'
}
}
//LBA
export default {}

+ 2
- 0
src/lang/zh/template/yp.js View File

@ -0,0 +1,2 @@
//样品
export default {}

+ 2
- 0
src/views/business/comps/template/TemplateTable.vue View File

@ -119,6 +119,8 @@ export default {
'PCR002': 'PCR002',
//LBA
'LBA001': 'SP001',
//
'YP001': 'SP001',
}
}
return this.componentMap || "Demo"

Loading…
Cancel
Save