zhengyiming
1 天以前 f633483b97b38c2965ecdbffcb80e4e297175a43
src/views/Reward/components/RewardApplyTradeCheckDialog.vue
@@ -47,9 +47,9 @@
          <ProFormItemV2
            label="上传凭证:"
            prop="payAuditFileUrl"
            :required="form.auditStatus === EnumParkBountyTradeDetailAuditStatus.Pass"
            :required="!isApplyTrade"
            :check-rules="
              form.auditStatus === EnumParkBountyTradeDetailAuditStatus.Pass && [
              !isApplyTrade && [
                {
                  message: '请上传凭证',
                  type: 'upload',
@@ -130,9 +130,12 @@
  name: 'WithdrawalApprovalAuditDialog',
});
// type Props = {};
type Props = {
  //true 出账审批 false 财务审批
  isApplyTrade?: boolean;
};
// const props = withDefaults(defineProps<Props>(), {});
const props = withDefaults(defineProps<Props>(), {});
const visible = defineModel({ type: Boolean });