|
|
- <!-- 参比荧光选择 -->
- <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>
|