From ffe6d39f01a92b9e71ccb14038cfd337d0b166ca Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期四, 23 十月 2025 21:00:35 +0800
Subject: [PATCH] fix: bug

---
 apps/cMiniApp/src/subpackages/task/taskDetail/InnerPage.vue |   16 +++++++++-------
 1 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/apps/cMiniApp/src/subpackages/task/taskDetail/InnerPage.vue b/apps/cMiniApp/src/subpackages/task/taskDetail/InnerPage.vue
index f8240b9..7fd0dd5 100644
--- a/apps/cMiniApp/src/subpackages/task/taskDetail/InnerPage.vue
+++ b/apps/cMiniApp/src/subpackages/task/taskDetail/InnerPage.vue
@@ -97,12 +97,7 @@
           ></CompanyDesc>
         </CellChunk>
       </Cell>
-      <Cell>
-        <template #title>
-          <div class="safe-cell-title-wrapper">
-            <div class="safe-cell-title">浠诲姟鎻忚堪</div>
-          </div>
-        </template>
+      <Cell title="浠诲姟鎻忚堪">
         <div class="safe-cell-content">{{ detail?.description ?? '' }}</div>
       </Cell>
       <Cell>
@@ -140,7 +135,13 @@
         {{ GetTaskInfoQueryResultApplyButtonText[detail.applyButton] }}
       </PageFooterBtn>
       <PageFooterBtn
-        v-if="from === 'hire'"
+        v-if="
+          from === 'hire' &&
+          !(
+            detail?.checkReceiveMethod === EnumTaskCheckReceiveMethod.CheckIn &&
+            detail?.hireButton === GetTaskInfoQueryResultHireButton.ApplyCheckReceive
+          )
+        "
         type="primary"
         :disabled="detail?.hireButton !== GetTaskInfoQueryResultHireButton.ApplyCheckReceive"
         @click="handleHire"
@@ -193,6 +194,7 @@
   GetTaskInfoQueryResultHireButtonText,
   GetTaskInfoQueryResultHireButton,
   GetTaskInfoQueryResultApplyButton,
+  EnumTaskCheckReceiveMethod,
 } from '@12333/constants';
 import { useAccessLogin } from '@/hooks';
 

--
Gitblit v1.9.1