改造排行榜

This commit is contained in:
唐明明
2022-08-05 12:04:11 +08:00
18 changed files with 12513 additions and 7039 deletions

22
apis/interfaces/pin.js Normal file
View File

@@ -0,0 +1,22 @@
/**
* Web-zdx
* moduleName: 拼团相关接口
*/
import {
request
} from '../index'
// 拼团列表
const pinList = (data) => {
return request({
url: 'mall/goods/collages',
data:data
})
}
export {
pinList
}

View File

@@ -24,8 +24,24 @@ const week = () => {
})
}
// 会员推荐帮
const total = () => {
return request({
url: 'user/rank/total'
})
}
// 用户推荐榜
const totaluser = () => {
return request({
url: 'user/rank/totaluser'
})
}
export {
week_mul,
week,
total,
totaluser
}