|
|
|
@ -190,9 +190,13 @@ function backHandler() {
|
|
|
|
taskStore.back()
|
|
|
|
taskStore.back()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
watch(() => taskStore.activeId, async (newValue, oldValue) => {
|
|
|
|
watch(() => [taskStore.activeId, taskStore.refresh], async (newValue, oldValue) => {
|
|
|
|
const packageid = taskStore.getPackageid
|
|
|
|
const packageid = taskStore.getPackageid
|
|
|
|
const taskId = taskStore.getActiveId
|
|
|
|
const taskId = taskStore.getActiveId
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (taskId === '' || packageid === '')
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
taskDetailInfo.value = await getTaskDetailInfo(taskId, packageid)
|
|
|
|
taskDetailInfo.value = await getTaskDetailInfo(taskId, packageid)
|
|
|
|
|
|
|
|
|
|
|
|
const { data, total } = await getTaskDetailPictureList(packageid, taskId, { ...taskpagination, ...sortBy })
|
|
|
|
const { data, total } = await getTaskDetailPictureList(packageid, taskId, { ...taskpagination, ...sortBy })
|
|
|
|
|