<!-- 复苏 -->
|
|
<template>
|
|
<StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'ry_fs'" @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",
|
|
},
|
|
yjwd: {
|
|
type: "input",
|
|
fillType: "preFill",
|
|
},
|
|
text3: {
|
|
label: "°C,实际温度",
|
|
type: "text",
|
|
},
|
|
sjwd: {
|
|
type: "input",
|
|
fillType: "actFill",
|
|
compareTo: "yjwd",
|
|
copyFrom: "yjwd",
|
|
},
|
|
text4: {
|
|
label: "°C,进行复苏,复苏",
|
|
type: "text",
|
|
},
|
|
fssj: {
|
|
type: "input",
|
|
fillType: "preFill",
|
|
},
|
|
text4: {
|
|
label: "复苏",
|
|
type: "text",
|
|
},
|
|
startDate: {
|
|
type: "input",
|
|
fillType: "actFill",
|
|
disabled: true,
|
|
},
|
|
button1: {
|
|
type: "button",
|
|
buttonName: "开始",
|
|
},
|
|
text7: {
|
|
label: ",复苏",
|
|
type: "text",
|
|
},
|
|
endDate: {
|
|
type: "input",
|
|
fillType: "actFill",
|
|
disabled: true,
|
|
},
|
|
button2: {
|
|
type: "button",
|
|
buttonName: "结束",
|
|
},
|
|
text9: {
|
|
type: "text",
|
|
label: "。",
|
|
},
|
|
}
|
|
}]
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|