华西海圻ELN前端工程
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

70 lines
2.3 KiB

<!-- 标定(质量) -->
<template>
<StepFormPackage ref = "stepFormPackageRef" :prefixKey="stepIndex+'_'+'ry_bdzl'" @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",
},
rm:{
type:"inputNumber",
fillType:"preFill",
},
bdtjdw:{
type:"select",
options:this.getDictOptions("business_zldw"),
selectTo:"sjbdtjdw",
fillType:"preFill",
},
text4:{
label:",实际质量为",
type:"text",
},
sjbdtj:{
type:"inputNumber",
fillType:"actFill",
compareTo:"rm",
copyFrom:"rm"
},
button1:{
type:"button",
buttonName:"获取值",
},
text5:{
label:",划线。",
type:"text",
},
}
}]
}
},
}
</script>
<style lang="scss" scoped>
</style>