From 7a854943c88e9eddcbb9614b95b2e4fc03286e1e Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期五, 31 十月 2025 13:52:12 +0800
Subject: [PATCH] fix: bug
---
apps/cMiniApp/src/subpackages/task/taskDetail/InnerPage.vue | 14 +++++++++++++-
1 files changed, 13 insertions(+), 1 deletions(-)
diff --git a/apps/cMiniApp/src/subpackages/task/taskDetail/InnerPage.vue b/apps/cMiniApp/src/subpackages/task/taskDetail/InnerPage.vue
index 76a83fc..ea0fe2c 100644
--- a/apps/cMiniApp/src/subpackages/task/taskDetail/InnerPage.vue
+++ b/apps/cMiniApp/src/subpackages/task/taskDetail/InnerPage.vue
@@ -37,6 +37,7 @@
</div> -->
</div>
<TaskPrice
+ v-if="detail.releaseStatus !== EnumTaskReleaseStatus.Stopped"
:value="toThousand(detail.serviceFee ?? 0)"
:unit="BillingMethodEnumUnit[detail.billingMethod]"
/>
@@ -93,8 +94,12 @@
:enterpriseName="detail?.enterpriseName ?? ''"
:taskCount="detail?.taskCount ?? 0"
:isReal="detail?.isReal ?? false"
+ :supplierEnterpriseName="detail?.supplierEnterpriseName ?? ''"
></CompanyDesc>
</CellChunk>
+ </Cell>
+ <Cell title="浠诲姟鎻忚堪">
+ <div class="safe-cell-content">{{ detail?.description ?? '' }}</div>
</Cell>
<Cell>
<template #title>
@@ -131,7 +136,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"
@@ -184,6 +195,7 @@
GetTaskInfoQueryResultHireButtonText,
GetTaskInfoQueryResultHireButton,
GetTaskInfoQueryResultApplyButton,
+ EnumTaskCheckReceiveMethod,
} from '@12333/constants';
import { useAccessLogin } from '@/hooks';
--
Gitblit v1.9.1