zhengyiming
2 天以前 f6d29d197b5e942514d2dd826c121db685c41763
apps/cMiniApp/src/subpackages/task/taskDetail/InnerPage.vue
@@ -100,6 +100,14 @@
      <Cell>
        <template #title>
          <div class="safe-cell-title-wrapper">
            <div class="safe-cell-title">任务描述</div>
          </div>
        </template>
        <div class="safe-cell-content">{{ detail?.description ?? '' }}</div>
      </Cell>
      <Cell>
        <template #title>
          <div class="safe-cell-title-wrapper">
            <img :src="IconSafe" class="safe-cell-title-icon" />
            <div class="safe-cell-title">安全提示</div>
          </div>
@@ -132,7 +140,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"
@@ -185,6 +199,7 @@
  GetTaskInfoQueryResultHireButtonText,
  GetTaskInfoQueryResultHireButton,
  GetTaskInfoQueryResultApplyButton,
  EnumTaskCheckReceiveMethod,
} from '@12333/constants';
import { useAccessLogin } from '@/hooks';