|  |  |  | 
|---|
|  |  |  | ></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> | 
|---|
|  |  |  | 
|---|
|  |  |  | {{ 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" | 
|---|
|  |  |  | 
|---|
|  |  |  | GetTaskInfoQueryResultHireButtonText, | 
|---|
|  |  |  | GetTaskInfoQueryResultHireButton, | 
|---|
|  |  |  | GetTaskInfoQueryResultApplyButton, | 
|---|
|  |  |  | EnumTaskCheckReceiveMethod, | 
|---|
|  |  |  | } from '@12333/constants'; | 
|---|
|  |  |  | import { useAccessLogin } from '@/hooks'; | 
|---|
|  |  |  |  | 
|---|