| @ -0,0 +1,44 @@ | |||
| <!-- 过滤(手动) --> | |||
| <template> | |||
| <StepFormPackage ref = "stepFormPackageRef" @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:{ | |||
| text2:{ | |||
| label:"选择", | |||
| type:"text", | |||
| }, | |||
| sjsr:{ | |||
| type:"input", | |||
| fillType:"preFill", | |||
| }, | |||
| sj:{ | |||
| type:"regent", | |||
| fillType:"actFill", | |||
| }, | |||
| text3:{ | |||
| label:"进行过滤", | |||
| type:"text", | |||
| }, | |||
| } | |||
| }] | |||
| } | |||
| }, | |||
| } | |||
| </script> | |||
| <style lang="scss" scoped> | |||
| </style> | |||
| @ -0,0 +1,52 @@ | |||
| <!-- 过滤(自动) --> | |||
| <template> | |||
| <StepFormPackage ref = "stepFormPackageRef" @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", | |||
| }, | |||
| yq:{ | |||
| type:"instrument", | |||
| fillType:"actFill", | |||
| }, | |||
| text2:{ | |||
| label:"仪器,选择", | |||
| type:"text", | |||
| }, | |||
| sjsr:{ | |||
| type:"input", | |||
| fillType:"preFill", | |||
| }, | |||
| sj:{ | |||
| type:"regent", | |||
| fillType:"actFill", | |||
| }, | |||
| text3:{ | |||
| label:"进行过滤", | |||
| type:"text", | |||
| }, | |||
| } | |||
| }] | |||
| } | |||
| }, | |||
| } | |||
| </script> | |||
| <style lang="scss" scoped> | |||
| </style> | |||
| @ -0,0 +1,118 @@ | |||
| <!-- 解冻 --> | |||
| <template> | |||
| <StepFormPackage ref="stepFormPackageRef" @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", | |||
| }, | |||
| sjsr: { | |||
| type: "input", | |||
| fillType: "preFill", | |||
| }, | |||
| sj: { | |||
| type: "regent", | |||
| fillType: "actFill", | |||
| }, | |||
| text2: { | |||
| label: "预计放置于", | |||
| type: "text", | |||
| }, | |||
| ccwz: { | |||
| type: "select", | |||
| options: this.getDictOptions("business_ccwz"), | |||
| fillType: "preFill", | |||
| otherCode: "ccwzOther", | |||
| }, | |||
| text3: { | |||
| label: "实际放置于", | |||
| type: "text", | |||
| }, | |||
| sjccwz: { | |||
| type: "select", | |||
| options: this.getDictOptions("business_ccwz"), | |||
| fillType: "actFill", | |||
| otherCode: "sjccwzOther", | |||
| compareTo: "ccwz", | |||
| }, | |||
| text4: { | |||
| label: "位置,其环境条件预计为", | |||
| type: "text", | |||
| }, | |||
| yjwd: { | |||
| type: "select", | |||
| options: this.getDictOptions("business_wddw"), | |||
| fillType: "preFill", | |||
| otherCode: "yjwdOther", | |||
| }, | |||
| yjhj: { | |||
| type: "select", | |||
| options: this.getDictOptions("business_hjxx"), | |||
| fillType: "preFill", | |||
| otherCode: "yjhjOther", | |||
| }, | |||
| text5: { | |||
| label: ",实际条件为", | |||
| type: "text", | |||
| }, | |||
| sjwd: { | |||
| type: "select", | |||
| options: this.getDictOptions("business_wddw"), | |||
| fillType: "preFill", | |||
| otherCode: "sjwdOther", | |||
| }, | |||
| sjhj: { | |||
| type: "select", | |||
| options: this.getDictOptions("business_hjxx"), | |||
| fillType: "preFill", | |||
| otherCode: "sjhjOther", | |||
| }, | |||
| text6: { | |||
| label: ",放置", | |||
| type: "text", | |||
| }, | |||
| sr1:{ | |||
| type: "input", | |||
| fillType: "preFill", | |||
| }, | |||
| text7:{ | |||
| type:"text", | |||
| label:",解冻", | |||
| }, | |||
| button1:{ | |||
| type:"button", | |||
| buttonName:"开始", | |||
| }, | |||
| text8:{ | |||
| type:"text", | |||
| label:",解冻", | |||
| }, | |||
| button2:{ | |||
| type:"button", | |||
| buttonName:"结束", | |||
| }, | |||
| } | |||
| }] | |||
| } | |||
| }, | |||
| } | |||
| </script> | |||
| <style lang="scss" scoped></style> | |||
| @ -0,0 +1,74 @@ | |||
| <!-- 静置 --> | |||
| <template> | |||
| <StepFormPackage ref = "stepFormPackageRef" @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", | |||
| }, | |||
| sjsr:{ | |||
| type:"input", | |||
| fillType:"preFill", | |||
| }, | |||
| sj:{ | |||
| type:"regent", | |||
| fillType:"actFill", | |||
| }, | |||
| text2:{ | |||
| label:"放置于", | |||
| type:"text", | |||
| }, | |||
| wd:{ | |||
| type:"select", | |||
| options: this.getDictOptions("business_wddw"), | |||
| fillType:"actFill", | |||
| otherCode:"wdOther" | |||
| }, | |||
| text3:{ | |||
| label:",条件下静置,静置", | |||
| type:"text", | |||
| }, | |||
| jzsj:{ | |||
| type:"input", | |||
| fillType:"preFill", | |||
| }, | |||
| text4:{ | |||
| type:"text", | |||
| label:"静置", | |||
| }, | |||
| button1:{ | |||
| type:"button", | |||
| buttonName:"开始", | |||
| }, | |||
| text5:{ | |||
| type:"text", | |||
| label:",静置", | |||
| }, | |||
| button2:{ | |||
| type:"button", | |||
| buttonName:"结束", | |||
| }, | |||
| } | |||
| }] | |||
| } | |||
| }, | |||
| } | |||
| </script> | |||
| <style lang="scss" scoped> | |||
| </style> | |||