<!-- 弃液 -->
|
|
<template>
|
|
<StepFormPackage ref = "stepFormPackageRef" :prefixKey="stepIndex+'_'+'zzqx_qy'" @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: 'qy',
|
|
},
|
|
},
|
|
components: {
|
|
StepFormPackage
|
|
},
|
|
computed: {
|
|
formConfig() {
|
|
let config = [{
|
|
config:{
|
|
text1:{
|
|
label:"使用移液器",
|
|
type:"text",
|
|
},
|
|
sj:{
|
|
type:"yq",
|
|
fillType:"actFill",
|
|
},
|
|
text3:{
|
|
label:"仪器,将溶液移除。",
|
|
type:"text",
|
|
},
|
|
}
|
|
}]
|
|
return config
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|