zhengyiming
2025-11-26 869b1e7b48fc28cd02fd592d57947c18e51d4cf5
fix: 多模板
6个文件已修改
16 ■■■■■ 已修改文件
src/components/commonView/BatchInfoView.vue 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/commonView/DetailView.vue 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/MaterialReview/MaterialReviewDetail.vue 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/MaterialReview/components/MaterialReviewAuditView.vue 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/Reward/RewardDeclareDetail.vue 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/Reward/RewardGrantRegister.vue 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/commonView/BatchInfoView.vue
@@ -20,6 +20,11 @@
        <ProFormText v-model.trim="form.parkTypeName" />
      </ProFormItemV2>
    </ProFormColItem>
    <ProFormColItem :span="12">
      <ProFormItemV2 label="材料模板:" :mode="mode">
        <ProFormText v-model.trim="form.bountyTemplateName" />
      </ProFormItemV2>
    </ProFormColItem>
  </ProFormCol>
</template>
@@ -48,6 +53,7 @@
    parkTypeName: string;
    applyMonth: string;
    applySumAmount: number;
    bountyTemplateName: string;
  };
};
src/components/commonView/DetailView.vue
@@ -55,6 +55,8 @@
    extraListFiles: CustomerApplyFileTypeListItem[];
    /** 是否支持平台充值 */
    suportPlatRecharge?: boolean;
    bountyTemplateName: string;
  };
};
src/views/MaterialReview/MaterialReviewDetail.vue
@@ -124,6 +124,7 @@
  suportFinance: false,
  bountyTemplateId: '',
  bountyTemplateName: '',
});
const { addRewardApplyStep3Columns } = useAddRewardApplyStep3Columns({
@@ -178,6 +179,7 @@
    form.reasonForWithdrawal = data.reasonForWithdrawal ?? '';
    form.bountyTemplateId = data.bountyTemplateId ?? '';
    form.bountyTemplateName = data.bountyTemplateName ?? '';
    getList();
  },
src/views/MaterialReview/components/MaterialReviewAuditView.vue
@@ -127,6 +127,7 @@
  suportPlatRecharge: false,
  suportFinance: false,
  bountyTemplateId: '',
  bountyTemplateName: '',
});
const { addRewardApplyStep3Columns } = useAddRewardApplyStep3Columns({
@@ -175,6 +176,7 @@
    form.suportFinance = data.suportFinance;
    form.bountyTemplateId = data.bountyTemplateId;
    form.bountyTemplateName = data.bountyTemplateName;
    getList();
  },
src/views/Reward/RewardDeclareDetail.vue
@@ -64,6 +64,7 @@
  suportPlatRecharge: false,
  suportFinance: false,
  bountyTemplateId: '',
  bountyTemplateName: '',
});
const { addRewardApplyStep3Columns } = useAddRewardApplyStep3Columns({
@@ -110,6 +111,7 @@
    form.suportFinance = data.suportFinance;
    form.bountyTemplateId = data.bountyTemplateId;
    form.bountyTemplateName = data.bountyTemplateName;
    getList();
  },
src/views/Reward/RewardGrantRegister.vue
@@ -102,6 +102,7 @@
  suportPlatRecharge: false,
  suportFinance: false,
  bountyTemplateId: '',
  bountyTemplateName: '',
});
const { rewardGrantRegisterColumns } = useRewardGrantRegisterColumns();
@@ -173,6 +174,7 @@
    form.suportFinance = data.suportFinance;
    form.bountyTemplateId = data.bountyTemplateId;
    form.bountyTemplateName = data.bountyTemplateName;
    getList();
  },