| @ -0,0 +1,91 @@ | |||
| <!-- 活化(SPE) --> | |||
| <template> | |||
| <StepFormPackage ref="stepFormPackageRef" prefixKey="ry_hhspe" @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: 'hhsep', | |||
| }, | |||
| }, | |||
| components: { | |||
| StepFormPackage | |||
| }, | |||
| computed: { | |||
| formConfig() { | |||
| return [{ | |||
| config: { | |||
| text1: { | |||
| label: "使用", | |||
| type: "text", | |||
| }, | |||
| ytrq: { | |||
| fillType: "preFill", | |||
| type: "input", | |||
| }, | |||
| sjrqcz: { | |||
| fillType: "actFill", | |||
| type: "yq", | |||
| }, | |||
| text2: { | |||
| label: this.sn==='syspe'?"向预先活化平衡好的固相萃取版中加入":"向固相萃取版中加入", | |||
| type: "text", | |||
| }, | |||
| srry: { | |||
| fillType: "preFill", | |||
| type: "input", | |||
| }, | |||
| sjrq:{ | |||
| fillType: "actFill", | |||
| type: "sj", | |||
| ylCode: "sjsr2", | |||
| dwCode: "sjsrdw2", | |||
| }, | |||
| text3:{ | |||
| label: this.sn==='syspe'?"样品,预计加入":"溶液,预计加入", | |||
| 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", | |||
| compareTo:"ytsr1", | |||
| copyFrom:"ytsr1" | |||
| }, | |||
| sjsrdw2:{ | |||
| fillType: "preFill", | |||
| type: "select", | |||
| options: this.getDictOptions('business_tjdw'), | |||
| }, | |||
| text5:{ | |||
| label: this.sn==='phspe'?"进行平衡。":this.sn==='syspe'?"进行上样。":this.sn==='lxspe'?"进行淋洗,弃去淋洗液。":this.sn==='xtspe'?"进行洗脱,收集洗脱液。":"进行活化。", | |||
| type: "text", | |||
| } | |||
| } | |||
| }] | |||
| } | |||
| }, | |||
| } | |||
| </script> | |||
| <style lang="scss" scoped></style> | |||
| @ -0,0 +1,67 @@ | |||
| <!-- 加入样品 --> | |||
| <template> | |||
| <StepFormPackage ref="stepFormPackageRef" prefixKey="ry_jryp" @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", | |||
| }, | |||
| sjrqcz: { | |||
| fillType: "actFill", | |||
| type: "yq", | |||
| }, | |||
| text2: { | |||
| 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", | |||
| compareTo:"ytsr1", | |||
| copyFrom:"ytsr1" | |||
| }, | |||
| sjsrdw2:{ | |||
| fillType: "preFill", | |||
| type: "select", | |||
| options: this.getDictOptions('business_tjdw'), | |||
| }, | |||
| text5:{ | |||
| label: "。", | |||
| type: "text", | |||
| } | |||
| } | |||
| }] | |||
| } | |||
| }, | |||
| } | |||
| </script> | |||
| <style lang="scss" scoped></style> | |||
| @ -0,0 +1,79 @@ | |||
| <!-- 转移(分层) --> | |||
| <template> | |||
| <StepFormPackage ref="stepFormPackageRef" prefixKey="ry_zyfc" @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", | |||
| }, | |||
| ytyq: { | |||
| fillType: "preFill", | |||
| type: "input", | |||
| }, | |||
| sjrqcz: { | |||
| fillType: "actFill", | |||
| type: "yq", | |||
| }, | |||
| text2: { | |||
| label: "转移", | |||
| type: "text", | |||
| }, | |||
| shang:{ | |||
| fillType: "preFill", | |||
| type: "input", | |||
| }, | |||
| 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", | |||
| compareTo:"ytsr1", | |||
| copyFrom:"ytsr1" | |||
| }, | |||
| sjsrdw2:{ | |||
| fillType: "preFill", | |||
| type: "select", | |||
| options: this.getDictOptions('business_tjdw'), | |||
| }, | |||
| text5:{ | |||
| label: "至容器中。", | |||
| type: "text", | |||
| } | |||
| } | |||
| }] | |||
| } | |||
| }, | |||
| } | |||
| </script> | |||
| <style lang="scss" scoped></style> | |||