| @ -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> | |||||
| @ -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> | |||||
| @ -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> | |||||
| @ -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> | |||||
| @ -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> | |||||
| @ -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> | |||||
| @ -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> | |||||
| @ -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> | |||||
| @ -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> | |||||
| @ -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> | |||||
| @ -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> | |||||
| @ -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> | |||||
| @ -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> | |||||
| @ -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> | |||||