Browse Source

feat: [步骤管理] 细胞/菌株配置步骤

ouqian
memorylkf 1 month ago
parent
commit
0094e6202e
17 changed files with 1043 additions and 4 deletions
  1. +57
    -2
      src/components/Template/Step.vue
  2. +1
    -1
      src/components/Template/StepComponents/qxwdx/qxfz.vue
  3. +37
    -0
      src/components/Template/StepComponents/ry/fz.vue
  4. +55
    -0
      src/components/Template/StepComponents/xbjzpz/cd.vue
  5. +90
    -0
      src/components/Template/StepComponents/xbjzpz/cdmd.vue
  6. +107
    -0
      src/components/Template/StepComponents/xbjzpz/cdxs.vue
  7. +71
    -0
      src/components/Template/StepComponents/xbjzpz/copy.vue
  8. +43
    -0
      src/components/Template/StepComponents/xbjzpz/dypyy.vue
  9. +65
    -0
      src/components/Template/StepComponents/xbjzpz/fr_xbjzpz.vue
  10. +51
    -0
      src/components/Template/StepComponents/xbjzpz/gc.vue
  11. +86
    -0
      src/components/Template/StepComponents/xbjzpz/jzzy.vue
  12. +118
    -0
      src/components/Template/StepComponents/xbjzpz/lxqy.vue
  13. +53
    -0
      src/components/Template/StepComponents/xbjzpz/qjz.vue
  14. +53
    -0
      src/components/Template/StepComponents/xbjzpz/qxb.vue
  15. +59
    -0
      src/components/Template/StepComponents/xbjzpz/xbzy.vue
  16. +96
    -0
      src/components/Template/StepComponents/xbjzpz/xd.vue
  17. +1
    -1
      src/components/Template/StepFormPackage.vue

+ 57
- 2
src/components/Template/Step.vue View File

@ -79,6 +79,7 @@ import kbyq from "./StepComponents/ry/kbyq.vue";//溶液-空白仪器
import kbsjgsp from "./StepComponents/ry/kbsjgsp.vue";//-/
import kb from "./StepComponents/ry/kb.vue";//-
import jr from "./StepComponents/ry/jr.vue";//-
import fz from "./StepComponents/ry/fz.vue";//-
//
//
@ -260,6 +261,26 @@ import czzy from './StepComponents/jcb/czzy.vue';//检测板配置-磁珠转移
import sjbj from './StepComponents/jcb/sjbj.vue';//-
///
import qxb from './StepComponents/xbjzpz/qxb.vue';///-
import qjz from './StepComponents/xbjzpz/qjz.vue';///-
import fr_xbjzpz from './StepComponents/xbjzpz/fr_xbjzpz.vue';///-
import lxqy from './StepComponents/xbjzpz/lxqy.vue';///-
import cd from './StepComponents/xbjzpz/cd.vue';///-
import xbzy from './StepComponents/xbjzpz/xbzy.vue';///-
import jzzy from './StepComponents/xbjzpz/jzzy.vue';///-
import dypyy from './StepComponents/xbjzpz/dypyy.vue';///-
import xd from './StepComponents/xbjzpz/xd.vue';///-
///-使/-
///-使/-
import copy from './StepComponents/xbjzpz/copy.vue';///-CO2
import gc from './StepComponents/xbjzpz/gc.vue';///-
import cdmd from './StepComponents/xbjzpz/cdmd.vue';///-
///-使/-
///-使/-
import cdxs from './StepComponents/xbjzpz/cdxs.vue';///-/
import { public_templateStepList } from '@/api/business/public/public';
@ -376,6 +397,7 @@ export default {
kbsjgsp,
kb,
jr,
fz,
//
//
@ -485,6 +507,21 @@ export default {
czzy,
sjbj,
///
qxb,
qjz,
fr_xbjzpz,
lxqy,
cd,
xbzy,
jzzy,
dypyy,
xd,
copy,
gc,
cdmd,
cdxs,
},
computed: {
stepComponentMap() {
@ -536,7 +573,7 @@ export default {
'kbsjgsp': 'kbsjgsp',
'kb': 'kb',
'jr': 'jr',
// 'fz': 'fz',
'fz': 'fz',
//
//
@ -694,7 +731,25 @@ export default {
'ychy':'ychy',
'czzy':'czzy',
'sjbj':'sjbj',
///
'qxb':'qxb',
'qjz':'qjz',
'fr_xbjzpz':'fr_xbjzpz',
'lxqy':'lxqy',
'cd':'cd',
'xbzy':'xbzy',
'jzzy':'jzzy',
'dypyy':'dypyy',
'xd':'xd',
'xh':'xd',
'zzxh':'xd',
'copy':'copy',
'gc':'gc',
'cdmd':'cdmd',
'ds':'xd',
'gd':'xd',
'cdxs':'cdxs',
}
}
return this.componentMap

+ 1
- 1
src/components/Template/StepComponents/qxwdx/qxfz.vue View File

@ -1,4 +1,4 @@
<!-- 匀浆液分装2 -->
<!-- 全血分装 -->
<template>
<StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'qxwdx_qxfz'" @resetRecord = "resetRecord" :form-config="formConfig" :formData="formData" />
</template>

+ 37
- 0
src/components/Template/StepComponents/ry/fz.vue View File

@ -0,0 +1,37 @@
<!-- 分装 -->
<template>
<StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'ry_fz'" @resetRecord = "resetRecord" :form-config="formConfig" :formData="formData" />
</template>
<script>
import StepFormPackage from '@/components/Template/StepFormPackage.vue';
import stepMixins from '@/components/Template/mixins/stepMixins.js';
export default {
mixins: [stepMixins],
props: {
sn: {
type: String,
default: 'fz',
},
},
components: {
StepFormPackage
},
computed: {
formConfig() {
let config = [{
config: {
text1: {
label: "待处理。。。。",
type: "text",
},
}
}]
return config
}
},
}
</script>
<style lang="scss" scoped></style>

+ 55
- 0
src/components/Template/StepComponents/xbjzpz/cd.vue View File

@ -0,0 +1,55 @@
<!-- 吹打 -->
<template>
<StepFormPackage ref = "stepFormPackageRef" :prefixKey="stepIndex+'_'+'xbjzpz_cd'" @resetRecord = "resetRecord" :form-config="formConfig" :formData = "formData" />
</template>
<script>
import StepFormPackage from '@/components/Template/StepFormPackage.vue';
import stepMixins from '@/components/Template/mixins/stepMixins.js';
export default {
mixins: [stepMixins],
props: {
sn: {
type: String,
default: 'cd',
},
},
components: {
StepFormPackage
},
computed: {
formConfig() {
let config = [{
config:{
text1:{
label:"使用",
type:"text",
},
yqmc:{
type:"input",
fillType:"preFill",
},
yq:{
type:"yq",
fillType:"actFill",
},
text2:{
label:"仪器,吹打均匀。",
type:"text",
},
check:{
type:"checkbox",
fillType:"actFill",
},
}
}]
return config
}
},
}
</script>
<style lang="scss" scoped>
</style>

+ 90
- 0
src/components/Template/StepComponents/xbjzpz/cdmd.vue View File

@ -0,0 +1,90 @@
<!-- 测定密度 -->
<template>
<StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'xbjzpz_cdmd'" @resetRecord = "resetRecord" :form-config="formConfig" :formData="formData" />
</template>
<script>
import StepFormPackage from '@/components/Template/StepFormPackage.vue';
import stepMixins from '@/components/Template/mixins/stepMixins.js';
export default {
mixins: [stepMixins],
props: {
sn: {
type: String,
default: 'cdmd',
},
},
components: {
StepFormPackage
},
computed: {
formConfig() {
let config = [{
config: {
text1: {
label: "使用倒置显微镜",
type: "text",
},
yq: {
fillType: "actFill",
type: "yq",
},
text2: {
label: "仪器,进行",
type: "text",
},
cs: {
fillType: "preFill",
type: "inputNumber",
},
text3: {
label: "次测定,每次滴片体积预计为",
type: "text",
},
yjtj:{
fillType: "preFill",
type: "inputNumber",
},
yjtjdw:{
fillType: "preFill",
type: "select",
selectTo: "sjtjdw",
options:this.getDictOptions('business_tjdw'),
},
text4:{
label: ",实际滴片体积为",
type: "text",
},
sjtj:{
fillType: "actFill",
type: "inputNumber",
compareTo:"yjtj",
copyFrom:"yjtj"
},
sjtjdw:{
fillType: "preFill",
type: "select",
options: this.getDictOptions('business_tjdw'),
},
text5:{
label: "平均细胞密度为",
type: "text",
},
gs: {
fillType: "actFill",
type: "inputNumber",
},
text6:{
label: "个/mL。",
type: "text",
},
}
}]
return config
}
},
}
</script>
<style lang="scss" scoped></style>

+ 107
- 0
src/components/Template/StepComponents/xbjzpz/cdxs.vue View File

@ -0,0 +1,107 @@
<!-- 传代/稀释 -->
<template>
<StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'xbjzpz_cdxs'" @resetRecord = "resetRecord" :form-config="formConfig" :formData="formData" />
</template>
<script>
import StepFormPackage from '@/components/Template/StepFormPackage.vue';
import stepMixins from '@/components/Template/mixins/stepMixins.js';
export default {
mixins: [stepMixins],
props: {
sn: {
type: String,
default: 'cdxs',
},
},
components: {
StepFormPackage
},
computed: {
formConfig() {
let config = [{
config: {
text1: {
label: "使用",
type: "text",
},
yqmc: {
fillType: "preFill",
type: "input",
},
yq: {
fillType: "actFill",
type: "yq",
},
text2: {
label: "仪器,吸取细胞悬液",
type: "text",
},
sjtj:{
fillType: "actFill",
type: "inputNumber",
},
sjtjdw:{
fillType: "actFill",
type: "select",
options: this.getDictOptions('business_tjdw'),
},
text3:{
label: ",同时使用",
type: "text",
},
yqmc1: {
fillType: "preFill",
type: "input",
},
yq1: {
fillType: "actFill",
type: "yq",
},
text4: {
label: "吸取",
type: "text",
},
rymc:{
fillType: "preFill",
type: "input",
},
ry:{
fillType: "actFill",
type: "sj",
ylCode: "sjtj2",
dwCode: "sjtjdw2",
},
sjtj2:{
fillType: "actFill",
type: "inputNumber",
},
sjtjdw2:{
fillType: "actFill",
type: "select",
options: this.getDictOptions('business_tjdw'),
},
text5: {
label: "至",
type: "text",
},
pyp:{
fillType: "preFill",
type: "input",
},
text6: {
label: "中。",
type: "text",
},
}
}]
return config
}
},
}
</script>
<style lang="scss" scoped></style>

+ 71
- 0
src/components/Template/StepComponents/xbjzpz/copy.vue View File

@ -0,0 +1,71 @@
<!-- CO2培养 -->
<template>
<StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'xbjzpz_copy'" @resetRecord = "resetRecord" :form-config="formConfig" :formData="formData" />
</template>
<script>
import StepFormPackage from '@/components/Template/StepFormPackage.vue';
import stepMixins from '@/components/Template/mixins/stepMixins.js';
export default {
mixins: [stepMixins],
props: {
sn: {
type: String,
default: 'copy',
},
},
components: {
StepFormPackage
},
computed: {
formConfig() {
let config = [{
config: {
text1: {
label: "使用CO2培养箱",
type: "text",
},
yq: {
type: "yq",
fillType: "actFill",
},
text2: {
label: "仪器,在温度为37±2°C、CO2浓度为5%±0.5%的条件下进行培养,培养",
type: "text",
},
startDate: {
type: "input",
fillType: "actFill",
disabled: true,
},
button1:{
type:"button",
buttonName:"开始",
},
text7:{
type:"text",
label:",培养",
},
endDate: {
type: "input",
fillType: "actFill",
disabled: true,
},
button2:{
type:"button",
buttonName:"结束",
},
text8: {
type: "text",
label: "。",
},
}
}]
return config
}
},
}
</script>
<style lang="scss" scoped></style>

+ 43
- 0
src/components/Template/StepComponents/xbjzpz/dypyy.vue View File

@ -0,0 +1,43 @@
<!-- 倒原培养液 -->
<template>
<StepFormPackage ref = "stepFormPackageRef" :prefixKey="stepIndex+'_'+'xbjzpz_dypyy'" @resetRecord = "resetRecord" :form-config="formConfig" :formData = "formData" />
</template>
<script>
import StepFormPackage from '@/components/Template/StepFormPackage.vue';
import stepMixins from '@/components/Template/mixins/stepMixins.js';
export default {
mixins: [stepMixins],
props: {
sn: {
type: String,
default: 'dypyy',
},
},
components: {
StepFormPackage
},
computed: {
formConfig() {
let config = [{
config:{
text1:{
label:"倒掉原培养液。",
type:"text",
},
check:{
type:"checkbox",
fillType:"actFill",
},
}
}]
return config
}
},
}
</script>
<style lang="scss" scoped>
</style>

+ 65
- 0
src/components/Template/StepComponents/xbjzpz/fr_xbjzpz.vue View File

@ -0,0 +1,65 @@
<!-- 复溶 -->
<template>
<StepFormPackage ref = "stepFormPackageRef" :prefixKey="stepIndex+'_'+'xbjzpz_fr_xbjzpz'" @resetRecord = "resetRecord" :form-config="formConfig" :formData = "formData" />
</template>
<script>
import StepFormPackage from '@/components/Template/StepFormPackage.vue';
import stepMixins from '@/components/Template/mixins/stepMixins.js';
export default {
mixins: [stepMixins],
props: {
sn: {
type: String,
default: 'fr_xbjzpz',
},
},
components: {
StepFormPackage
},
computed: {
formConfig() {
let config = [{
config:{
text1:{
label:"使用恒温水浴锅",
type:"text",
},
yq:{
type:"yq",
fillType:"actFill",
},
text2:{
label:",设置预计温度",
type:"text",
},
temp:{
type:"inputNumber",
fillType:"preFill",
},
text3:{
label:"°C,设置实际温度",
type:"text",
},
actTemp:{
type:"inputNumber",
fillType:"actFill",
compareTo:"temp",
copyFrom:"temp",
},
text4:{
label:"°C,进行融化。",
type:"text",
},
}
}]
return config
}
},
}
</script>
<style lang="scss" scoped>
</style>

+ 51
- 0
src/components/Template/StepComponents/xbjzpz/gc.vue View File

@ -0,0 +1,51 @@
<!-- 观察 -->
<template>
<StepFormPackage ref = "stepFormPackageRef" :prefixKey="stepIndex+'_'+'xbjzpz_gc'" @resetRecord = "resetRecord" :form-config="formConfig" :formData = "formData" />
</template>
<script>
import StepFormPackage from '@/components/Template/StepFormPackage.vue';
import stepMixins from '@/components/Template/mixins/stepMixins.js';
export default {
mixins: [stepMixins],
props: {
sn: {
type: String,
default: 'gc',
},
},
components: {
StepFormPackage
},
computed: {
formConfig() {
let config = [{
config:{
text1:{
label:"使用显微镜",
type:"text",
},
yq:{
type:"yq",
fillType:"actFill",
},
text2:{
label:"仪器,进行观察。",
type:"text",
},
check:{
type:"checkbox",
fillType:"actFill",
},
}
}]
return config
}
},
}
</script>
<style lang="scss" scoped>
</style>

+ 86
- 0
src/components/Template/StepComponents/xbjzpz/jzzy.vue View File

@ -0,0 +1,86 @@
<!-- 菌株转移 -->
<template>
<StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'xbjzpz_jzzy'" @resetRecord = "resetRecord" :form-config="formConfig" :formData="formData" />
</template>
<script>
import StepFormPackage from '@/components/Template/StepFormPackage.vue';
import stepMixins from '@/components/Template/mixins/stepMixins.js';
export default {
mixins: [stepMixins],
props: {
sn: {
type: String,
default: 'jzzy',
},
},
components: {
StepFormPackage
},
computed: {
formConfig() {
let config = [{
config: {
text1: {
label: "使用",
type: "text",
},
yqmc: {
fillType: "preFill",
type: "input",
},
yq: {
fillType: "actFill",
type: "yq",
},
text2: {
label: "仪器,将菌株取出,预计取出体积",
type: "text",
},
yjtj:{
fillType: "preFill",
type: "inputNumber",
},
yjtjdw:{
fillType: "preFill",
type: "select",
selectTo: "sjtjdw",
options:this.getDictOptions('business_tjdw'),
},
text3:{
label: ",实际取出",
type: "text",
},
sjtj:{
fillType: "actFill",
type: "inputNumber",
compareTo:"yjtj",
copyFrom:"yjtj"
},
sjtjdw:{
fillType: "preFill",
type: "select",
options: this.getDictOptions('business_tjdw'),
},
text4:{
label: ",转移到",
type: "text",
},
yqmc1: {
fillType: "preFill",
type: "input",
},
text5:{
label: "。",
type: "text",
},
}
}]
return config
}
},
}
</script>
<style lang="scss" scoped></style>

+ 118
- 0
src/components/Template/StepComponents/xbjzpz/lxqy.vue View File

@ -0,0 +1,118 @@
<!-- 离心弃液 -->
<template>
<StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'xbjzpz_lxqy'" @resetRecord = "resetRecord" :form-config="formConfig" :formData="formData" />
</template>
<script>
import StepFormPackage from '@/components/Template/StepFormPackage.vue';
import stepMixins from '@/components/Template/mixins/stepMixins.js';
export default {
mixins: [stepMixins],
props: {
sn: {
type: String,
default: 'lxqy',
},
},
components: {
StepFormPackage
},
computed: {
formConfig() {
let config = [{
config: {
text1: {
label: "使用离心机",
type: "text",
},
yq: {
type: "yq",
fillType: "actFill",
},
text2: {
label: "仪器,设置预计转速为",
type: "text",
},
sjjrl: {
type: "inputNumber",
fillType: "preFill",
},
sjjrldw: {
type: "select",
options: this.getDictOptions("business_zsdw"),
selectTo: "sjzsdw",
fillType: "preFill",
},
text5: {
label: ",实际设置转速为",
type: "text",
},
jxry: {
type: "inputNumber",
fillType: "actFill",
compareTo:"sjjrl",
copyFrom:"sjjrl"
},
sjzsdw: {
type: "select",
options: this.getDictOptions("business_zsdw"),
fillType: "preFill",
},
text6: {
label: ",设置预计时长为",
type: "text",
},
sjjrl1: {
type: "inputNumber",
fillType: "preFill",
},
yqsc: {
type: "select",
options: this.getDictOptions("business_yqscdw"),
selectTo: "sjscdw",
fillType: "preFill",
},
text7: {
label: ",实际设置时长为",
type: "text",
},
sjsc: {
type: "inputNumber",
fillType: "actFill",
compareTo:"sjjrl1",
copyFrom:"sjjrl1"
},
sjscdw: {
type: "select",
options: this.getDictOptions("business_yqscdw"),
fillType: "preFill",
},
text8: {
label: ",进行离心。离心",
type: "text",
},
startDate: {
type: "input",
fillType: "actFill",
disabled: true,
},
button1: {
type: "button",
buttonName: "开始",
},
text9: {
label: "离心后倒掉上层清液。",
type: "text",
},
}
}]
return config
}
},
}
</script>
<style lang="scss" scoped></style>

+ 53
- 0
src/components/Template/StepComponents/xbjzpz/qjz.vue View File

@ -0,0 +1,53 @@
<!-- 取菌株 -->
<template>
<StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'xbjzpz_qjz'" @resetRecord = "resetRecord" :form-config="formConfig" :formData="formData" />
</template>
<script>
import StepFormPackage from '@/components/Template/StepFormPackage.vue';
import stepMixins from '@/components/Template/mixins/stepMixins.js';
export default {
mixins: [stepMixins],
props: {
sn: {
type: String,
default: 'qjz',
},
},
components: {
StepFormPackage
},
computed: {
formConfig() {
let config = [{
config: {
text1: {
label: "选择液氮罐",
type: "text",
},
yq: {
type: "yq",
fillType: "actFill",
},
text2: {
label: ",取出菌株",
type: "text",
},
xb: {
type: "xj",
fillType: "actFill",
},
text3: {
label: "。",
type: "text",
},
}
}]
return config
}
},
}
</script>
<style lang="scss" scoped></style>

+ 53
- 0
src/components/Template/StepComponents/xbjzpz/qxb.vue View File

@ -0,0 +1,53 @@
<!-- 取细胞 -->
<template>
<StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'xbjzpz_qxb'" @resetRecord = "resetRecord" :form-config="formConfig" :formData="formData" />
</template>
<script>
import StepFormPackage from '@/components/Template/StepFormPackage.vue';
import stepMixins from '@/components/Template/mixins/stepMixins.js';
export default {
mixins: [stepMixins],
props: {
sn: {
type: String,
default: 'qxb',
},
},
components: {
StepFormPackage
},
computed: {
formConfig() {
let config = [{
config: {
text1: {
label: "选择液氮罐",
type: "text",
},
yq: {
type: "yq",
fillType: "actFill",
},
text2: {
label: ",取出细胞",
type: "text",
},
xb: {
type: "xb",
fillType: "actFill",
},
text3: {
label: "。",
type: "text",
},
}
}]
return config
}
},
}
</script>
<style lang="scss" scoped></style>

+ 59
- 0
src/components/Template/StepComponents/xbjzpz/xbzy.vue View File

@ -0,0 +1,59 @@
<!-- 细胞转移 -->
<template>
<StepFormPackage ref = "stepFormPackageRef" :prefixKey="stepIndex+'_'+'xbjzpz_xbzy'" @resetRecord = "resetRecord" :form-config="formConfig" :formData = "formData" />
</template>
<script>
import StepFormPackage from '@/components/Template/StepFormPackage.vue';
import stepMixins from '@/components/Template/mixins/stepMixins.js';
export default {
mixins: [stepMixins],
props: {
sn: {
type: String,
default: 'xbzy',
},
},
components: {
StepFormPackage
},
computed: {
formConfig() {
let config = [{
config:{
text1:{
label:"使用",
type:"text",
},
yqmc:{
type:"input",
fillType:"preFill",
},
yq:{
type:"yq",
fillType:"actFill",
},
text2:{
label:"仪器,将细胞取出,转移到",
type:"text",
},
yqmc1:{
type:"input",
fillType:"preFill",
},
text3:{
label:"。",
type:"text",
},
}
}]
return config
}
},
}
</script>
<style lang="scss" scoped>
</style>

+ 96
- 0
src/components/Template/StepComponents/xbjzpz/xd.vue View File

@ -0,0 +1,96 @@
<!-- 洗涤 -->
<!-- 消化 -->
<!-- 终止消化 -->
<!-- 低渗 -->
<!-- 固定 -->
<template>
<StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'xbjzpz_xd'" @resetRecord = "resetRecord" :form-config="formConfig" :formData="formData" />
</template>
<script>
import StepFormPackage from '@/components/Template/StepFormPackage.vue';
import stepMixins from '@/components/Template/mixins/stepMixins.js';
export default {
mixins: [stepMixins],
props: {
sn: {
type: String,
default: 'xd',
},
},
components: {
StepFormPackage
},
computed: {
formConfig() {
let config = [{
config: {
text1: {
label: "使用",
type: "text",
},
yqmc: {
fillType: "preFill",
type: "input",
},
yq: {
fillType: "actFill",
type: "yq",
},
text2: {
label: "仪器,吸取",
type: "text",
},
rymc:{
fillType: "preFill",
type: "input",
},
ry:{
fillType: "actFill",
type: "sj",
ylCode: "sjtj",
dwCode: "sjtjdw",
},
text3:{
label: "溶液,预计吸取体积为",
type: "text",
},
yjtj:{
fillType: "preFill",
type: "inputNumber",
},
yjtjdw:{
fillType: "preFill",
type: "select",
selectTo: "sjtjdw",
options:this.getDictOptions('business_tjdw'),
},
text4:{
label: ",实际体积为",
type: "text",
},
sjtj:{
fillType: "actFill",
type: "inputNumber",
compareTo:"yjtj",
copyFrom:"yjtj"
},
sjtjdw:{
fillType: "preFill",
type: "select",
options: this.getDictOptions('business_tjdw'),
},
text5:{
label: this.sn==='xd'? "加入容器中,进行洗涤。":this.sn==='xh'? "加入容器中,进行消化。":this.sn==='zzxh'? "加入容器中,终止消化。":this.sn==='ds'? "加入容器中,进行低渗。":this.sn==='gd'? "加入容器中,进行固定。":"",
type: "text",
},
}
}]
return config
}
},
}
</script>
<style lang="scss" scoped></style>

+ 1
- 1
src/components/Template/StepFormPackage.vue View File

@ -177,7 +177,7 @@ export default {
const sjResource = [],yqResource = [];
for(const key in allFieldsConfig){
const item = allFieldsConfig[key];
if(item.type === "xb" || item.type === "sj" || item.type === "gsp" || item.type === "mix"){
if(item.type === "xj" || item.type === "xb" || item.type === "sj" || item.type === "gsp" || item.type === "mix"){
if(formFields[key]){
let o = {
...formFields[`selectInfo_${key}`],

Loading…
Cancel
Save