| @ -0,0 +1,59 @@ | |||||
| <!-- 清洗 --> | |||||
| <template> | |||||
| <StepFormPackage ref = "stepFormPackageRef" :prefixKey="stepIndex+'_'+'zzqx_qx'" @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: 'qx', | |||||
| }, | |||||
| }, | |||||
| components: { | |||||
| StepFormPackage | |||||
| }, | |||||
| computed: { | |||||
| formConfig() { | |||||
| let config = [{ | |||||
| config:{ | |||||
| text1:{ | |||||
| label:"使用", | |||||
| type:"text", | |||||
| }, | |||||
| ry:{ | |||||
| type:"input", | |||||
| fillType:"preFill", | |||||
| }, | |||||
| sj:{ | |||||
| type:"sj", | |||||
| fillType:"actFill", | |||||
| }, | |||||
| text3:{ | |||||
| label:"冲洗,吸干水分,放置", | |||||
| type:"text", | |||||
| }, | |||||
| yq:{ | |||||
| type:"input", | |||||
| fillType:"preFill", | |||||
| }, | |||||
| text4:{ | |||||
| label:"。", | |||||
| type:"text", | |||||
| }, | |||||
| } | |||||
| }] | |||||
| return config | |||||
| } | |||||
| }, | |||||
| } | |||||
| </script> | |||||
| <style lang="scss" scoped> | |||||
| </style> | |||||
| @ -0,0 +1,47 @@ | |||||
| <!-- 弃液 --> | |||||
| <template> | |||||
| <StepFormPackage ref = "stepFormPackageRef" :prefixKey="stepIndex+'_'+'zzqx_qy'" @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: 'qy', | |||||
| }, | |||||
| }, | |||||
| components: { | |||||
| StepFormPackage | |||||
| }, | |||||
| computed: { | |||||
| formConfig() { | |||||
| let config = [{ | |||||
| config:{ | |||||
| text1:{ | |||||
| label:"使用移液器", | |||||
| type:"text", | |||||
| }, | |||||
| sj:{ | |||||
| type:"yq", | |||||
| fillType:"actFill", | |||||
| }, | |||||
| text3:{ | |||||
| label:"仪器,将溶液移除。", | |||||
| type:"text", | |||||
| }, | |||||
| } | |||||
| }] | |||||
| return config | |||||
| } | |||||
| }, | |||||
| } | |||||
| </script> | |||||
| <style lang="scss" scoped> | |||||
| </style> | |||||
| @ -0,0 +1,68 @@ | |||||
| <!-- 暂存 --> | |||||
| <template> | |||||
| <StepFormPackage ref = "stepFormPackageRef" :prefixKey="stepIndex+'_'+'zzqx_zc'" @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: 'zc', | |||||
| }, | |||||
| }, | |||||
| components: { | |||||
| StepFormPackage | |||||
| }, | |||||
| computed: { | |||||
| formConfig() { | |||||
| let config = [{ | |||||
| config:{ | |||||
| text1:{ | |||||
| label:"预计在", | |||||
| type:"text", | |||||
| }, | |||||
| yjzc:{ | |||||
| type:"select", | |||||
| options:this.getDictOptions("business_zzzc"), | |||||
| fillType:"preFill", | |||||
| otherCode: "yjzcOther", | |||||
| }, | |||||
| text3:{ | |||||
| label:"条件下暂存,实际在", | |||||
| type:"text", | |||||
| }, | |||||
| sjzc:{ | |||||
| type:"select", | |||||
| options:this.getDictOptions("business_zzzc"), | |||||
| fillType:"actFill", | |||||
| otherCode: "sjzcOther", | |||||
| compareTo: "yjzc", | |||||
| }, | |||||
| text3:{ | |||||
| label:"条件下暂存,暂存至放入", | |||||
| type:"text", | |||||
| }, | |||||
| yq:{ | |||||
| type:"input", | |||||
| fillType:"preFill", | |||||
| }, | |||||
| text4:{ | |||||
| label:"。", | |||||
| type:"text", | |||||
| }, | |||||
| } | |||||
| }] | |||||
| return config | |||||
| } | |||||
| }, | |||||
| } | |||||
| </script> | |||||
| <style lang="scss" scoped> | |||||
| </style> | |||||