| @ -0,0 +1,54 @@ | |||||
| <!-- 加入溶液 --> | |||||
| <template> | |||||
| <StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'pcrcjg_jrry_pcrcjg'" @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], | |||||
| components: { | |||||
| StepFormPackage | |||||
| }, | |||||
| computed: { | |||||
| formConfig() { | |||||
| return [{ | |||||
| 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", | |||||
| }, | |||||
| text3:{ | |||||
| label: "溶液,按上表进行添加。", | |||||
| type: "text", | |||||
| }, | |||||
| } | |||||
| }] | |||||
| } | |||||
| }, | |||||
| } | |||||
| </script> | |||||
| <style lang="scss" scoped></style> | |||||
| @ -0,0 +1,108 @@ | |||||
| <!-- 浓度测定 --> | |||||
| <template> | |||||
| <StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'pcrfx_ndcd'" @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], | |||||
| components: { | |||||
| StepFormPackage | |||||
| }, | |||||
| computed: { | |||||
| formConfig() { | |||||
| return [{ | |||||
| config: { | |||||
| text1: { | |||||
| label: "使用", | |||||
| type: "text", | |||||
| }, | |||||
| yqmc: { | |||||
| fillType: "preFill", | |||||
| type: "input", | |||||
| }, | |||||
| yq: { | |||||
| fillType: "actFill", | |||||
| type: "yq", | |||||
| }, | |||||
| text2: { | |||||
| label: "仪器,按核酸浓度测定排版表吸取核酸样品和Blank样品", | |||||
| type: "text", | |||||
| }, | |||||
| 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: "至uDrop Duo Plates,用多功能酶标仪系统", | |||||
| type: "text", | |||||
| }, | |||||
| mbxt: { | |||||
| fillType: "actFill", | |||||
| type: "yq", | |||||
| }, | |||||
| text6:{ | |||||
| label: ",选择程序预计为", | |||||
| type: "text", | |||||
| }, | |||||
| yjcx:{ | |||||
| fillType: "preFill", | |||||
| type: "select", | |||||
| options:this.getDictOptions('business_step_pcr'), | |||||
| }, | |||||
| text7:{ | |||||
| label: ",选择程序实际为", | |||||
| type: "text", | |||||
| }, | |||||
| sjcx:{ | |||||
| fillType: "actFill", | |||||
| type: "select", | |||||
| options:this.getDictOptions('business_step_pcr'), | |||||
| compareTo:'yjcx' | |||||
| }, | |||||
| text8:{ | |||||
| label: ",进行浓度测定。", | |||||
| type: "text", | |||||
| }, | |||||
| } | |||||
| }] | |||||
| } | |||||
| }, | |||||
| } | |||||
| </script> | |||||
| <style lang="scss" scoped></style> | |||||
| @ -0,0 +1,30 @@ | |||||
| <!-- 称取组织 --> | |||||
| <template> | |||||
| <StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'pcryj_cqzz_pcryj'" @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], | |||||
| components: { | |||||
| StepFormPackage | |||||
| }, | |||||
| computed: { | |||||
| formConfig() { | |||||
| return [{ | |||||
| config: { | |||||
| text1: { | |||||
| label: "使用上述电子天平,称取剪碎的组织于匀浆管中。", | |||||
| type: "text", | |||||
| }, | |||||
| } | |||||
| }] | |||||
| } | |||||
| }, | |||||
| } | |||||
| </script> | |||||
| <style lang="scss" scoped></style> | |||||
| @ -0,0 +1,46 @@ | |||||
| <!-- 加入匀浆溶液 --> | |||||
| <template> | |||||
| <StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'pcryj_jryjry_pcryj'" @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], | |||||
| components: { | |||||
| StepFormPackage | |||||
| }, | |||||
| computed: { | |||||
| formConfig() { | |||||
| return [{ | |||||
| config: { | |||||
| text1:{ | |||||
| label:"使用", | |||||
| type:"text", | |||||
| }, | |||||
| ddsys:{ | |||||
| type:"input", | |||||
| fillType:"preFill", | |||||
| }, | |||||
| yq:{ | |||||
| type:"yq", | |||||
| fillType:"actFill", | |||||
| }, | |||||
| text2:{ | |||||
| label:"仪器,向匀浆管种按上表加入匀浆溶液。", | |||||
| type:"text", | |||||
| }, | |||||
| reamrk:{ | |||||
| type:"input", | |||||
| fillType:"actFill", | |||||
| }, | |||||
| } | |||||
| }] | |||||
| } | |||||
| }, | |||||
| } | |||||
| </script> | |||||
| <style lang="scss" scoped></style> | |||||
| @ -0,0 +1,30 @@ | |||||
| <!-- 剪碎组织 --> | |||||
| <template> | |||||
| <StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'pcryj_jszz_pcryj'" @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], | |||||
| components: { | |||||
| StepFormPackage | |||||
| }, | |||||
| computed: { | |||||
| formConfig() { | |||||
| return [{ | |||||
| config: { | |||||
| text1: { | |||||
| label: "取上述组织,在冰板上剪碎。", | |||||
| type: "text", | |||||
| }, | |||||
| } | |||||
| }] | |||||
| } | |||||
| }, | |||||
| } | |||||
| </script> | |||||
| <style lang="scss" scoped></style> | |||||