From 368c72d678ec6a1f5b60f109911d190e9c2a2809 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期五, 31 十月 2025 17:30:24 +0800
Subject: [PATCH] fix: 四流

---
 src/views/MaterialReview/MaterialReviewDetail.vue |   53 ++++++++++++++++++++++++++++++++++++++++++-----------
 1 files changed, 42 insertions(+), 11 deletions(-)

diff --git a/src/views/MaterialReview/MaterialReviewDetail.vue b/src/views/MaterialReview/MaterialReviewDetail.vue
index 5bf5369..cfcbac6 100644
--- a/src/views/MaterialReview/MaterialReviewDetail.vue
+++ b/src/views/MaterialReview/MaterialReviewDetail.vue
@@ -5,16 +5,32 @@
         <template #title>
           <div class="page-form-layout-title">
             鐢虫姤璇︽儏
-            <span class="page-form-layout-title-item status">
-              瀹℃牳鐘舵��:<span :style="{ color: BountyCheckStatusEnumColor[form.outCheckStatus] }">{{
-                BountyCheckStatusEnumText[form.outCheckStatus]
-              }}</span>
-            </span>
-            <span class="page-form-layout-title-item remark">
-              <TextOverTooltip v-if="form.outCheckStatus === BountyCheckStatusEnum.CheckReject">
-                {{ `瀹℃牳鏈�氳繃鍘熷洜:${form.outCheckRemark ?? ''}` }}
-              </TextOverTooltip>
-            </span>
+            <template v-if="isReReview">
+              <span class="page-form-layout-title-item status">
+                澶嶅鐘舵��:<span
+                  :style="{ color: BountyCheckStatusEnumColor[form.outReCheckStatus] }"
+                  >{{ BountyCheckStatusEnumText[form.outCheckStatus] }}</span
+                >
+              </span>
+              <span class="page-form-layout-title-item remark">
+                <TextOverTooltip v-if="form.outCheckStatus === BountyCheckStatusEnum.CheckReject">
+                  {{ `澶嶅鏈�氳繃鍘熷洜:${form.outCheckRemark ?? ''}` }}
+                </TextOverTooltip>
+              </span>
+            </template>
+            <template v-else>
+              <span class="page-form-layout-title-item status">
+                瀹℃牳鐘舵��:<span
+                  :style="{ color: BountyCheckStatusEnumColor[form.outCheckStatus] }"
+                  >{{ BountyCheckStatusEnumText[form.outCheckStatus] }}</span
+                >
+              </span>
+              <span class="page-form-layout-title-item remark">
+                <TextOverTooltip v-if="form.outCheckStatus === BountyCheckStatusEnum.CheckReject">
+                  {{ `瀹℃牳鏈�氳繃鍘熷洜:${form.outCheckRemark ?? ''}` }}
+                </TextOverTooltip>
+              </span>
+            </template>
           </div>
         </template>
         <DetailView :form="form">
@@ -31,7 +47,6 @@
               v-bind="dialogProps"
               :show-upload-btn="false"
               :show-delete-btn="false"
-              :show-check-btn="false"
             />
           </ChunkCellV2>
         </DetailView>
@@ -76,6 +91,9 @@
 const route = useRoute();
 const { closeViewPush } = useRouteView();
 const id = route.params?.id as string;
+const type = route.query?.type as string;
+//鏄惁澶嶅
+const isReReview = type === 'reReview';
 const form = reactive({
   batchNo: '',
   parkName: '',
@@ -87,14 +105,21 @@
   parkCollectFileList: [] as CustomerApplyFileTypeListItem[],
   calculationFileList: [] as CustomerApplyFileTypeListItem[],
 
+  extraListFiles: [] as CustomerApplyFileTypeListItem[],
+
   outCheckStatus: '' as any as BountyCheckStatusEnum,
   outCheckRemark: '',
 
+  outReCheckStatus: '' as any as BountyCheckStatusEnum,
+  outReCheckRemark: '',
+
   suportPlatRecharge: false,
+  suportFinance: false,
 });
 
 const { addRewardApplyStep3Columns } = useAddRewardApplyStep3Columns({
   suportPlatRecharge: toRef(form, 'suportPlatRecharge'),
+  suportFinance: toRef(form, 'suportFinance'),
 });
 
 const { extraParamState, getList, reset, proTableProps, operationBtns, dialogProps } =
@@ -126,14 +151,20 @@
     form.settleSumAmount = data.settleSumAmount;
     form.outCheckStatus = data.outCheckStatus;
     form.outCheckRemark = data.outCheckRemark;
+    form.outReCheckStatus = data.outReCheckStatus;
+    form.outReCheckRemark = data.outReCheckRemark;
     form.parkCollectFileList = EnterpriseApplyFileUtils.convertApiFileToParkCollectFileList(
       data.listFiles
     );
     form.calculationFileList = EnterpriseApplyFileUtils.convertApiFileToParkCollectFileList(
       data.collectCountListFiles
     );
+    form.extraListFiles = EnterpriseApplyFileUtils.convertApiFileToExtraListFiles(
+      data.extraListFiles
+    );
 
     form.suportPlatRecharge = data.suportPlatRecharge;
+    form.suportFinance = data.suportFinance;
 
     getList();
   },

--
Gitblit v1.9.1