| | |
| | | :service-fee="item.serviceFee" |
| | | :settlement-cycle="item.settlementCycle" |
| | | :address-name="item.addressName" |
| | | :isRead="false" |
| | | :unRead="item.unRead" |
| | | @click="goTaskDetail(item)" |
| | | > |
| | | <template #actions> |
| | |
| | | GetPersonalApplyTaskInfosQueryStatus, |
| | | GetPersonalApplyTaskInfosQueryStatusText, |
| | | GetPersonalApplyTaskInfosQueryStatusColor, |
| | | EnumReadScene, |
| | | } from '@12333/constants'; |
| | | import * as taskServices from '@12333/services/apiV2/task'; |
| | | import Taro from '@tarojs/taro'; |
| | |
| | | |
| | | function goTaskDetail(item: API.GetPersonalApplyTaskInfosQueryResultItem) { |
| | | Taro.navigateTo({ |
| | | url: `${RouterPath.taskDetail}?id=${item.id}&from=sign`, |
| | | url: `${RouterPath.taskDetail}?id=${item.id}&from=sign&readScene=${EnumReadScene.TaskUserApplyForPersonal}`, |
| | | }); |
| | | } |
| | | </script> |