2025-03-23 09:29:40 +08:00
|
|
|
const http = uni.$u.http
|
|
|
|
|
|
|
|
//首页
|
2025-09-25 11:18:52 +08:00
|
|
|
export const userIndex = params =>
|
|
|
|
http.get('/sale/api/wares/get-app-index', { params })
|
2025-03-23 09:29:40 +08:00
|
|
|
|
|
|
|
//修改头像
|
2025-09-25 11:18:52 +08:00
|
|
|
export const updateHead = data =>
|
|
|
|
http.post('/member/api/member/update-head', data)
|
2025-03-23 09:29:40 +08:00
|
|
|
|
|
|
|
//提货记录列表
|
2025-09-25 11:18:52 +08:00
|
|
|
export const pickList = params =>
|
|
|
|
http.get('/activity/api/pick/list', { params })
|
2025-03-23 09:29:40 +08:00
|
|
|
|
|
|
|
//提货专区列表
|
2025-09-25 11:18:52 +08:00
|
|
|
export const pickLogList = params =>
|
|
|
|
http.get('/activity/api/pick/pick-log', { params })
|
2025-03-23 09:29:40 +08:00
|
|
|
//植树活动
|
2025-09-25 11:18:52 +08:00
|
|
|
export const queryTreeActivity = params =>
|
|
|
|
http.get('/activity/api/sa-tree-order/queryTreeActivity', { params })
|
2025-03-23 09:29:40 +08:00
|
|
|
|
|
|
|
//创客空间列表
|
2025-09-25 11:18:52 +08:00
|
|
|
export const marketList = params =>
|
|
|
|
http.get('/member/api/maker-space/list', { params })
|
|
|
|
|
|
|
|
export const getTopPeople = params =>
|
|
|
|
http.post('/member/api/member-statistics/topPeople', params)
|
|
|
|
|
|
|
|
export const getTopAmount = params =>
|
|
|
|
http.post('/member/api/member-statistics/topAmount', params)
|