<!-- 灭菌 -->
|
|
<template>
|
|
<StepFormPackage ref = "stepFormPackageRef" prefixKey="ry_mj" @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",
|
|
},
|
|
yq:{
|
|
type:"yq",
|
|
fillType:"actFill",
|
|
},
|
|
text2:{
|
|
label:"高压锅,设置灭菌温度为",
|
|
type:"text",
|
|
},
|
|
sjwd:{
|
|
type:"input",
|
|
fillType:"actFill",
|
|
},
|
|
text3:{
|
|
label:"°C,灭菌时长为",
|
|
type:"text",
|
|
},
|
|
sjsr2:{
|
|
type:"input",
|
|
fillType:"actFill",
|
|
},
|
|
text4:{
|
|
label:"对上述溶液进行灭菌。",
|
|
type:"text",
|
|
}
|
|
}
|
|
}]
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|