<!-- 轻柔混匀 -->
|
|
<template>
|
|
<StepFormPackage :fieldItemLabel = "fieldItemLabel" ref = "stepFormPackageRef" :prefixKey="stepIndex+'_'+'pcr_qrhy'" @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: 'qrhy',
|
|
},
|
|
},
|
|
components: {
|
|
StepFormPackage
|
|
},
|
|
computed: {
|
|
formConfig() {
|
|
return [{
|
|
config:{
|
|
text1:{
|
|
label:this.sn==='qrhy'?"轻柔混匀。":this.sn==='pebwfz'?"1号位放置磁棒套,2号位放置磁珠板,3号位放置样品板,4-7号位分别放置空的深孔板,8号位放置洗脱液":this.sn==='lsbwfz'?"根据软件提示,在相应位置放入需要的试剂和耗材。":"",
|
|
type:"text",
|
|
},
|
|
check:{
|
|
type:"checkbox",
|
|
fillType:"actFill",
|
|
},
|
|
}
|
|
}]
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|