This commit is contained in:
GaoHao
2025-01-07 15:28:53 +08:00
15 changed files with 606 additions and 133 deletions

17
api/task/index.js Normal file
View File

@@ -0,0 +1,17 @@
import http from '@/http/http.js'
// 获取任务列表
export const announcement = (data) => {
return http.request({
url: '/announcement',
data
})
}
// 获取签到
export const getUserSignData = (data) => {
return http.request({
url: 'userSignRecord/getUserSignData',
data
})
}