zhengyiming
4 天以前 dbebb8c83128e379bb24d8d7c1bf0838d7c5ebdc
src/views/MaterialReview/MaterialReviewDetail.vue
@@ -13,8 +13,11 @@
                >
              </span>
              <span class="page-form-layout-title-item remark">
                <TextOverTooltip v-if="form.outCheckStatus === BountyCheckStatusEnum.CheckReject">
                  {{ `复审未通过原因:${form.outCheckRemark ?? ''}` }}
                <TextOverTooltip v-if="form.outReCheckStatus === BountyCheckStatusEnum.CheckReject">
                  {{ `复审未通过原因:${form.outReCheckRemark ?? ''}` }}
                </TextOverTooltip>
                <TextOverTooltip v-if="form.outReCheckStatus === BountyCheckStatusEnum.Redoed">
                  {{ `撤回原因:${form.reasonForWithdrawal ?? ''}` }}
                </TextOverTooltip>
              </span>
            </template>
@@ -28,6 +31,9 @@
              <span class="page-form-layout-title-item remark">
                <TextOverTooltip v-if="form.outCheckStatus === BountyCheckStatusEnum.CheckReject">
                  {{ `审核未通过原因:${form.outCheckRemark ?? ''}` }}
                </TextOverTooltip>
                <TextOverTooltip v-if="form.outCheckStatus === BountyCheckStatusEnum.Redoed">
                  {{ `撤回原因:${form.reasonForWithdrawal ?? ''}` }}
                </TextOverTooltip>
              </span>
            </template>
@@ -112,6 +118,7 @@
  outReCheckStatus: '' as any as BountyCheckStatusEnum,
  outReCheckRemark: '',
  reasonForWithdrawal: '',
  suportPlatRecharge: false,
  suportFinance: false,
@@ -165,6 +172,7 @@
    form.suportPlatRecharge = data.suportPlatRecharge;
    form.suportFinance = data.suportFinance;
    form.reasonForWithdrawal = data.reasonForWithdrawal ?? '';
    getList();
  },