Commit f8ef82f1 authored by shirlyn.guo's avatar shirlyn.guo 🤡

Merge branch 'master' of https://gitlab.gsstcloud.com/digitalperson/digitalperson-fe into shirlyn

parents ddaeee86 2cc7c8d8
......@@ -68,11 +68,16 @@ const { pause: pauseIntervalFn, resume: resumeIntervalFn } = useIntervalFn(
async () => {
if (videoWorkTableLoading.value) return
await fetchGetTaskList<VideoWorkItem[]>({
const res = await fetchGetTaskList<VideoWorkItem[]>({
taskType: currentSelectedTaskType.value,
taskName: searchQuery.value,
pagingInfo: pagingInfo.value,
})
if (res.code === 0) {
videoWorkList.value = res.data
pagingInfo.value = res.pagingInfo as PaginationInfo
}
},
2000,
{ immediateCallback: false, immediate: false },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment