| @ -0,0 +1,64 @@ | |||
| <!-- 称量(非传值) --> | |||
| <template> | |||
| <StepFormPackage ref = "stepFormPackageRef" :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", | |||
| }, | |||
| wzmc:{ | |||
| type:"mix", | |||
| fillType:"actFill", | |||
| }, | |||
| text3:{ | |||
| label:"物质,称取预计质量为", | |||
| type:"text", | |||
| }, | |||
| wzsul:{ | |||
| type:"inputNumber", | |||
| fillType:"preFill", | |||
| }, | |||
| wzsuldw:{ | |||
| type:"select", | |||
| fillType:"preFill", | |||
| options:this.getDictOptions("business_zldw"), | |||
| }, | |||
| text4:{ | |||
| type:"text", | |||
| label:",实际质量为" | |||
| }, | |||
| sjcz:{ | |||
| type:"span" | |||
| }, | |||
| } | |||
| }] | |||
| } | |||
| }, | |||
| } | |||
| </script> | |||
| <style lang="scss" scoped> | |||
| </style> | |||
| @ -0,0 +1,71 @@ | |||
| <!-- 称量(传值) --> | |||
| <template> | |||
| <StepFormPackage ref = "stepFormPackageRef" :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", | |||
| }, | |||
| wzmc:{ | |||
| type:"mix", | |||
| fillType:"actFill", | |||
| }, | |||
| text3:{ | |||
| label:"物质,称取预计质量为", | |||
| type:"text", | |||
| }, | |||
| wzsul:{ | |||
| type:"inputNumber", | |||
| fillType:"preFill", | |||
| }, | |||
| wzsuldw:{ | |||
| type:"select", | |||
| fillType:"preFill", | |||
| options:this.getDictOptions("business_zldw"), | |||
| selectTo:"wzsuldw1", | |||
| }, | |||
| text4:{ | |||
| type:"text", | |||
| label:",实际质量为" | |||
| }, | |||
| sjcz:{ | |||
| type:"inputNumber", | |||
| fillType:"actFill", | |||
| }, | |||
| wzsuldw1:{ | |||
| type:"select", | |||
| fillType:"preFill", | |||
| options:this.getDictOptions("business_zldw"), | |||
| }, | |||
| } | |||
| }] | |||
| } | |||
| }, | |||
| } | |||
| </script> | |||
| <style lang="scss" scoped> | |||
| </style> | |||
| @ -1,48 +1,62 @@ | |||
| <!-- 操作环境 --> | |||
| <template> | |||
| <StepFormPackage ref = "stepFormPackageRef" :form-config="formConfig" :formData = "formData" /> | |||
| <StepFormPackage ref="stepFormPackageRef" :form-config="formConfig" :formData="formData" /> | |||
| </template> | |||
| <script> | |||
| import StepFormPackage from '@/components/Template/StepFormPackage.vue'; | |||
| import stepMixins from '@/components/Template/mixins/stepMixins.js'; | |||
| 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:"instrument", | |||
| fillType:"actFill", | |||
| }, | |||
| text2:{ | |||
| label:"环境下,操作下预计在", | |||
| type:"text", | |||
| }, | |||
| ytczhj:{ | |||
| type:"input", | |||
| } | |||
| } | |||
| }] | |||
| } | |||
| }, | |||
| } | |||
| export default { | |||
| mixins: [stepMixins], | |||
| components: { | |||
| StepFormPackage | |||
| }, | |||
| computed: { | |||
| formConfig() { | |||
| return [{ | |||
| config: { | |||
| text1: { | |||
| label: "选择在", | |||
| type: "text", | |||
| }, | |||
| ddsys: { | |||
| type: "input", | |||
| fillType: "preFill", | |||
| }, | |||
| yq: { | |||
| type: "instrument", | |||
| fillType: "actFill", | |||
| }, | |||
| text2: { | |||
| label: "环境下,操作下预计在", | |||
| type: "text", | |||
| }, | |||
| ytczhj: { | |||
| fillType: "preFill", | |||
| type: "select", | |||
| options: this.getDictOptions('business_czhj'), | |||
| otherCode: "ytczhjOther" | |||
| }, | |||
| text3: { | |||
| label: "实际在", | |||
| type: "text", | |||
| }, | |||
| sjczhj: { | |||
| fillType: "actFill", | |||
| type: "select", | |||
| options: this.getDictOptions('business_czhj'), | |||
| otherCode: "sjczhjOther" | |||
| }, | |||
| text4: { | |||
| label: "条件下操作下述步骤", | |||
| type: "text", | |||
| }, | |||
| } | |||
| }] | |||
| } | |||
| }, | |||
| } | |||
| </script> | |||
| <style lang="scss" scoped> | |||
| </style> | |||
| <style lang="scss" scoped></style> | |||
| @ -0,0 +1,81 @@ | |||
| <!-- 加入溶液 --> | |||
| <template> | |||
| <StepFormPackage ref="stepFormPackageRef" :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", | |||
| }, | |||
| ytrq: { | |||
| fillType: "preFill", | |||
| type: "input", | |||
| }, | |||
| sjrqcz: { | |||
| fillType: "actFill", | |||
| type: "instrument", | |||
| }, | |||
| text2: { | |||
| label: "仪器,吸取", | |||
| type: "text", | |||
| }, | |||
| srry: { | |||
| fillType: "preFill", | |||
| type: "input", | |||
| }, | |||
| sjrq:{ | |||
| fillType: "actFill", | |||
| type: "regent", | |||
| }, | |||
| text3:{ | |||
| label: "溶液,加入预计体积为", | |||
| type: "text", | |||
| }, | |||
| ytsr1:{ | |||
| fillType: "preFill", | |||
| type: "inputNumber", | |||
| }, | |||
| tjxz:{ | |||
| fillType: "preFill", | |||
| type: "select", | |||
| selectTo: "sjsrdw2", | |||
| options:this.getDictOptions('business_tjdw'), | |||
| }, | |||
| text4:{ | |||
| label: ",实际体积为", | |||
| type: "text", | |||
| }, | |||
| sjsr2:{ | |||
| fillType: "actFill", | |||
| type: "inputNumber", | |||
| }, | |||
| sjsrdw2:{ | |||
| fillType: "preFill", | |||
| type: "select", | |||
| options: this.getDictOptions('business_tjdw'), | |||
| }, | |||
| text5:{ | |||
| label: "至容器中。", | |||
| type: "text", | |||
| } | |||
| } | |||
| }] | |||
| } | |||
| }, | |||
| } | |||
| </script> | |||
| <style lang="scss" scoped></style> | |||
| @ -0,0 +1,53 @@ | |||
| <!-- 取用物质 --> | |||
| <template> | |||
| <StepFormPackage @onDialogSubmit="onDialogSubmit" ref = "stepFormPackageRef" :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:"gsp", | |||
| fillType:"actFill", | |||
| }, | |||
| text2:{ | |||
| label:"其质量为", | |||
| type:"text", | |||
| }, | |||
| zl:{ | |||
| type:"span", | |||
| } | |||
| } | |||
| }] | |||
| } | |||
| }, | |||
| methods: { | |||
| onDialogSubmit(data){ | |||
| console.log(data); | |||
| } | |||
| } | |||
| } | |||
| </script> | |||
| <style lang="scss" scoped> | |||
| </style> | |||
| @ -0,0 +1,125 @@ | |||
| <!-- 天平校验(单点) --> | |||
| <template> | |||
| <StepFormPackage | |||
| ref = "stepFormPackageRef" | |||
| @clickButton="handleClickButton" | |||
| :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:"instrument", | |||
| fillType:"actFill", | |||
| }, | |||
| text2:{ | |||
| label:"皮重显示值为", | |||
| type:"text", | |||
| }, | |||
| pz:{ | |||
| type:"inputNumber", | |||
| fillType:"actFill", | |||
| disabled:true, | |||
| }, | |||
| button1:{ | |||
| type:"button", | |||
| buttonName:"获取值", | |||
| }, | |||
| text3:{ | |||
| label:",标准砝码编号为", | |||
| type:"text", | |||
| }, | |||
| sjsr1:{ | |||
| type:"input", | |||
| fillType:"actFill", | |||
| }, | |||
| text4:{ | |||
| label:",标准砝码实际值为", | |||
| type:"text", | |||
| }, | |||
| sjsr2:{ | |||
| type:"inputNumber", | |||
| fillType:"actFill", | |||
| }, | |||
| sjsrdw2:{ | |||
| type:"select", | |||
| fillType:"actFill", | |||
| options:this.getDictOptions("business_zldw") | |||
| }, | |||
| text5:{ | |||
| label:"标准砝码发修正值为", | |||
| type:"text", | |||
| }, | |||
| sjsr3:{ | |||
| type:"inputNumber", | |||
| fillType:"actFill", | |||
| }, | |||
| sjsrdw3:{ | |||
| type:"select", | |||
| fillType:"actFill", | |||
| options:this.getDictOptions("business_zldw") | |||
| }, | |||
| text6:{ | |||
| label:",标准砝码显示值为", | |||
| type:"text", | |||
| }, | |||
| fmz:{ | |||
| type:"inputNumber", | |||
| fillType:"actFill", | |||
| disabled:true, | |||
| }, | |||
| button2:{ | |||
| type:"button", | |||
| buttonName:"获取值", | |||
| }, | |||
| text7:{ | |||
| label:"允许的偏差范围为±", | |||
| type:"text", | |||
| }, | |||
| sjsr4:{ | |||
| type:"inputNumber", | |||
| fillType:"actFill", | |||
| }, | |||
| sjsrdw4:{ | |||
| type:"select", | |||
| fillType:"actFill", | |||
| options:this.getDictOptions("business_zldw") | |||
| }, | |||
| text8:{ | |||
| label:",结果判定", | |||
| type:"text", | |||
| }, | |||
| jgpd:{ | |||
| label:"通过/不通过", | |||
| type:"span", | |||
| } | |||
| } | |||
| }] | |||
| } | |||
| }, | |||
| methods: { | |||
| handleClickButton(key){ | |||
| console.log(key) | |||
| } | |||
| } | |||
| } | |||
| </script> | |||
| <style lang="scss" scoped> | |||
| </style> | |||
| @ -0,0 +1,226 @@ | |||
| <!-- 天平校验(双点) --> | |||
| <template> | |||
| <StepFormPackage | |||
| ref = "stepFormPackageRef" | |||
| @clickButton="handleClickButton" | |||
| :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:"instrument", | |||
| fillType:"actFill", | |||
| }, | |||
| } | |||
| }, | |||
| { | |||
| config:{ | |||
| dfmtext1:{ | |||
| label:"低砝码校验:", | |||
| type:"text", | |||
| }, | |||
| dfmtext2:{ | |||
| label:"皮重显示值为", | |||
| type:"text", | |||
| }, | |||
| dfmpz:{ | |||
| type:"inputNumber", | |||
| fillType:"actFill", | |||
| disabled:true, | |||
| }, | |||
| dfmbutton1:{ | |||
| type:"button", | |||
| buttonName:"获取值", | |||
| }, | |||
| dfmtext3:{ | |||
| label:",标准砝码编号为", | |||
| type:"text", | |||
| }, | |||
| dfmsjsr1:{ | |||
| type:"input", | |||
| fillType:"actFill", | |||
| }, | |||
| dfmtext4:{ | |||
| label:",标准砝码实际值为", | |||
| type:"text", | |||
| }, | |||
| dfmsjsr2:{ | |||
| type:"inputNumber", | |||
| fillType:"actFill", | |||
| }, | |||
| dfmsjsrdw2:{ | |||
| type:"select", | |||
| fillType:"actFill", | |||
| options:this.getDictOptions("business_zldw") | |||
| }, | |||
| dfmtext5:{ | |||
| label:"标准砝码发修正值为", | |||
| type:"text", | |||
| }, | |||
| dfmsjsr3:{ | |||
| type:"inputNumber", | |||
| fillType:"actFill", | |||
| }, | |||
| dfmsjsrdw3:{ | |||
| type:"select", | |||
| fillType:"actFill", | |||
| options:this.getDictOptions("business_zldw") | |||
| }, | |||
| dfmtext6:{ | |||
| label:",标准砝码显示值为", | |||
| type:"text", | |||
| }, | |||
| dfmfmz:{ | |||
| type:"inputNumber", | |||
| fillType:"actFill", | |||
| disabled:true, | |||
| }, | |||
| dfmbutton2:{ | |||
| type:"button", | |||
| buttonName:"获取值", | |||
| }, | |||
| dfmtext7:{ | |||
| label:"允许的偏差范围为±", | |||
| type:"text", | |||
| }, | |||
| dfmsjsr4:{ | |||
| type:"inputNumber", | |||
| fillType:"actFill", | |||
| }, | |||
| dfmsjsrdw4:{ | |||
| type:"select", | |||
| fillType:"actFill", | |||
| options:this.getDictOptions("business_zldw") | |||
| }, | |||
| dfmtext8:{ | |||
| label:",结果判定", | |||
| type:"text", | |||
| }, | |||
| dfmjgpd:{ | |||
| label:"通过/不通过", | |||
| type:"span", | |||
| } | |||
| } | |||
| }, | |||
| { | |||
| config:{ | |||
| text1:{ | |||
| label:"高砝码校验:", | |||
| type:"text", | |||
| }, | |||
| text2:{ | |||
| label:"皮重显示值为", | |||
| type:"text", | |||
| }, | |||
| pz:{ | |||
| type:"inputNumber", | |||
| fillType:"actFill", | |||
| disabled:true, | |||
| }, | |||
| button1:{ | |||
| type:"button", | |||
| buttonName:"获取值", | |||
| }, | |||
| text3:{ | |||
| label:",标准砝码编号为", | |||
| type:"text", | |||
| }, | |||
| sjsr1:{ | |||
| type:"input", | |||
| fillType:"actFill", | |||
| }, | |||
| text4:{ | |||
| label:",标准砝码实际值为", | |||
| type:"text", | |||
| }, | |||
| sjsr2:{ | |||
| type:"inputNumber", | |||
| fillType:"actFill", | |||
| }, | |||
| sjsrdw2:{ | |||
| type:"select", | |||
| fillType:"actFill", | |||
| options:this.getDictOptions("business_zldw") | |||
| }, | |||
| text5:{ | |||
| label:"标准砝码发修正值为", | |||
| type:"text", | |||
| }, | |||
| sjsr3:{ | |||
| type:"inputNumber", | |||
| fillType:"actFill", | |||
| }, | |||
| sjsrdw3:{ | |||
| type:"select", | |||
| fillType:"actFill", | |||
| options:this.getDictOptions("business_zldw") | |||
| }, | |||
| text6:{ | |||
| label:",标准砝码显示值为", | |||
| type:"text", | |||
| }, | |||
| fmz:{ | |||
| type:"inputNumber", | |||
| fillType:"actFill", | |||
| disabled:true, | |||
| }, | |||
| button2:{ | |||
| type:"button", | |||
| buttonName:"获取值", | |||
| }, | |||
| text7:{ | |||
| label:"允许的偏差范围为±", | |||
| type:"text", | |||
| }, | |||
| sjsr4:{ | |||
| type:"inputNumber", | |||
| fillType:"actFill", | |||
| }, | |||
| sjsrdw4:{ | |||
| type:"select", | |||
| fillType:"actFill", | |||
| options:this.getDictOptions("business_zldw") | |||
| }, | |||
| text8:{ | |||
| label:",结果判定", | |||
| type:"text", | |||
| }, | |||
| jgpd:{ | |||
| label:"通过/不通过", | |||
| type:"span", | |||
| } | |||
| } | |||
| } | |||
| ] | |||
| } | |||
| }, | |||
| methods: { | |||
| handleClickButton(key){ | |||
| console.log(key) | |||
| } | |||
| } | |||
| } | |||
| </script> | |||
| <style lang="scss" scoped> | |||
| </style> | |||
| @ -0,0 +1,44 @@ | |||
| <!-- 选择容器 --> | |||
| <template> | |||
| <StepFormPackage ref="stepFormPackageRef" :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", | |||
| }, | |||
| ytrqcz: { | |||
| fillType: "preFill", | |||
| type: "select", | |||
| options: this.getDictOptions('business_rqcz'), | |||
| }, | |||
| sjrqcz: { | |||
| fillType: "actFill", | |||
| type: "select", | |||
| options: this.getDictOptions('business_rqcz'), | |||
| }, | |||
| text2: { | |||
| label: "作为容器", | |||
| type: "text", | |||
| }, | |||
| } | |||
| }] | |||
| } | |||
| }, | |||
| } | |||
| </script> | |||
| <style lang="scss" scoped></style> | |||