排行榜新增
This commit is contained in:
31
apis/interfaces/rank.js
Normal file
31
apis/interfaces/rank.js
Normal file
@@ -0,0 +1,31 @@
|
||||
/**
|
||||
* Web-zdx
|
||||
* moduleName:排行榜
|
||||
*/
|
||||
|
||||
import {
|
||||
request
|
||||
} from '../index'
|
||||
|
||||
|
||||
|
||||
// 上周加成榜
|
||||
const week_mul = () => {
|
||||
return request({
|
||||
url: 'user/rank/week_mul'
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
// 本周推荐榜
|
||||
const week = () => {
|
||||
return request({
|
||||
url: 'user/rank/week'
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
export {
|
||||
week_mul,
|
||||
week,
|
||||
}
|
||||
Reference in New Issue
Block a user