| @ -0,0 +1,75 @@ | |||
| <!-- 匀浆液分装2 --> | |||
| <template> | |||
| <StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'qxwdx_qxfz'" @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: 'qxfz', | |||
| }, | |||
| }, | |||
| components: { | |||
| StepFormPackage | |||
| }, | |||
| computed: { | |||
| formConfig() { | |||
| let config = [{ | |||
| config: { | |||
| text1: { | |||
| label: "将平衡完成后的样品进行分装,分装", | |||
| type: "text", | |||
| }, | |||
| count: { | |||
| type: "inputNumber", | |||
| fillType: "preFill", | |||
| }, | |||
| text2: { | |||
| label: "份,每份预计分装", | |||
| type: "text", | |||
| }, | |||
| yjfz: { | |||
| type: "inputNumber", | |||
| fillType: "preFill", | |||
| }, | |||
| yjfzdw:{ | |||
| type:"select", | |||
| options:this.getDictOptions("business_tjdw"), | |||
| selectTo:"sjfzdw", | |||
| fillType:"preFill", | |||
| }, | |||
| text3: { | |||
| label: ",实际分装", | |||
| type: "text", | |||
| }, | |||
| sjfz: { | |||
| type: "inputNumber", | |||
| fillType: "actFill", | |||
| compareTo:"yjfz", | |||
| copyFrom:"yjfz" | |||
| }, | |||
| sjfzdw:{ | |||
| type:"select", | |||
| options:this.getDictOptions("business_tjdw"), | |||
| fillType:"preFill", | |||
| }, | |||
| text4: { | |||
| label: "。", | |||
| type: "text", | |||
| }, | |||
| } | |||
| }] | |||
| return config | |||
| } | |||
| }, | |||
| } | |||
| </script> | |||
| <style lang="scss" scoped></style> | |||
| @ -0,0 +1,95 @@ | |||
| <!-- 全血静置 --> | |||
| <template> | |||
| <StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'qxwdx_qxjz'" @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: 'qxjz', | |||
| }, | |||
| }, | |||
| components: { | |||
| StepFormPackage | |||
| }, | |||
| computed: { | |||
| formConfig() { | |||
| let config = [{ | |||
| config: { | |||
| text1: { | |||
| label: "将样品分装后的第", | |||
| type: "text", | |||
| }, | |||
| sort: { | |||
| type: "inputNumber", | |||
| fillType: "preFill", | |||
| }, | |||
| text2: { | |||
| 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: "actFill", | |||
| otherCode: "sjwdOther", | |||
| compareTo: "yjwd", | |||
| }, | |||
| sjhj: { | |||
| type: "select", | |||
| options: this.getDictOptions("business_hjxx"), | |||
| fillType: "actFill", | |||
| otherCode: "sjhjOther", | |||
| compareTo: "yjhj", | |||
| }, | |||
| text6: { | |||
| label: "条件下静置,即稳定性", | |||
| type: "text", | |||
| }, | |||
| startDate: { | |||
| type: "input", | |||
| fillType: "actFill", | |||
| disabled: true, | |||
| }, | |||
| button1:{ | |||
| type:"button", | |||
| buttonName:"开始", | |||
| }, | |||
| text9: { | |||
| type: "text", | |||
| label: "。", | |||
| }, | |||
| } | |||
| }] | |||
| return config | |||
| } | |||
| }, | |||
| } | |||
| </script> | |||
| <style lang="scss" scoped></style> | |||