华西海圻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.
 
 
 
 

51 lines
1.6 KiB

<!-- 参比荧光选择 -->
<template>
<StepFormPackage :fieldItemLabel = "fieldItemLabel" ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'pcrfxyp_cbygxz'" @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",
},
yj:{
fillType: "preFill",
type: "select",
options:this.getDictOptions('business_step_pcrfxyp'),
otherCode: "yjOther",
},
text2: {
label: "实际选择",
type: "text",
},
sj:{
fillType: "actFill",
type: "select",
options:this.getDictOptions('business_step_pcrfxyp'),
otherCode: "sjOther",
compareTo:'yj'
},
text3: {
label: "。",
type: "text",
},
}
}]
}
},
}
</script>
<style lang="scss" scoped></style>