首页搜索

This commit is contained in:
duan
2025-01-07 11:04:11 +08:00
parent 07d3a3684e
commit b881ff4e63
11 changed files with 226 additions and 41 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
})
}