<!-- 标定(体积) -->
|
|
<template>
|
|
<StepFormPackage :fieldItemLabel = "fieldItemLabel" ref = "stepFormPackageRef" :prefixKey="stepIndex+'_'+'ry_bdtj'" @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",
|
|
},
|
|
ddsys:{
|
|
type:"input",
|
|
fillType:"preFill",
|
|
},
|
|
yq:{
|
|
type:"yq",
|
|
fillType:"actFill",
|
|
},
|
|
text2:{
|
|
label:"仪器,使用标定物",
|
|
type:"text",
|
|
},
|
|
rm:{
|
|
type:"input",
|
|
fillType:"preFill",
|
|
},
|
|
sj:{
|
|
type:"reagent",
|
|
fillType:"actFill",
|
|
},
|
|
text3:{
|
|
label:",预计标定体积为",
|
|
type:"text",
|
|
},
|
|
bdtj:{
|
|
type:"inputNumber",
|
|
fillType:"preFill",
|
|
},
|
|
bdtjdw:{
|
|
type:"select",
|
|
options:this.getDictOptions("business_tjdw"),
|
|
selectTo:"sjbdtjdw",
|
|
fillType:"preFill",
|
|
},
|
|
text4:{
|
|
label:",实际体积为",
|
|
type:"text",
|
|
},
|
|
sjbdtj:{
|
|
type:"inputNumber",
|
|
fillType:"actFill",
|
|
compareTo:"bdtj",
|
|
copyFrom:"bdtj"
|
|
},
|
|
sjbdtjdw:{
|
|
type:"select",
|
|
options:this.getDictOptions("business_tjdw"),
|
|
fillType:"preFill",
|
|
},
|
|
hx:{
|
|
type:"input",
|
|
fillType:"preFill",
|
|
},
|
|
|
|
}
|
|
}]
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|