This commit is contained in:
xuli
2025-11-21 18:25:05 +08:00
parent a62063850b
commit 9b4ccd7811
8 changed files with 276 additions and 98 deletions

17
src/api/polling.js Normal file
View File

@@ -0,0 +1,17 @@
import request from "@/utils/request"
// 查询今日任务列表
export function taskTodayList(data) {
return request.post({
url: '/acc/message/notify/detail',
data
})
}
// 查询任务详情
export function taskDetail(data) {
return request.post({
url: '/acc/message/notify/detail',
data
})
}