<!-- 复融 -->
|
|
<template>
|
|
<StepFormPackage :fieldItemLabel = "fieldItemLabel" ref = "stepFormPackageRef" :prefixKey="stepIndex+'_'+'xbjzpz_fr_xbjzpz'" @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: 'fr_xbjzpz',
|
|
},
|
|
},
|
|
components: {
|
|
StepFormPackage
|
|
},
|
|
computed: {
|
|
formConfig() {
|
|
let config = [{
|
|
config:{
|
|
text1:{
|
|
label:"使用恒温水浴锅",
|
|
type:"text",
|
|
},
|
|
yq:{
|
|
type:"yq",
|
|
fillType:"actFill",
|
|
},
|
|
text2:{
|
|
label:",设置预计温度",
|
|
type:"text",
|
|
},
|
|
temp:{
|
|
type:"input",
|
|
fillType:"preFill",
|
|
},
|
|
text3:{
|
|
label:"°C,设置实际温度",
|
|
type:"text",
|
|
},
|
|
actTemp:{
|
|
type:"input",
|
|
fillType:"actFill",
|
|
compareTo:"temp",
|
|
copyFrom:"temp",
|
|
},
|
|
text4:{
|
|
label:"°C,进行融化。",
|
|
type:"text",
|
|
},
|
|
}
|
|
}]
|
|
return config
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|