20 lines
438 B
TypeScript
20 lines
438 B
TypeScript
![]() |
|
||
|
import request from '@/utils/request'
|
||
|
|
||
|
// 商品概述
|
||
|
export function apiGetBasic(params: any) {
|
||
|
return request.get({ url: '/workbench/get_basic', params })
|
||
|
}
|
||
|
|
||
|
|
||
|
// 商品趋势
|
||
|
export function apiGetTrend(params: any) {
|
||
|
return request.get({ url: '/workbench/get_trend', params })
|
||
|
}
|
||
|
|
||
|
|
||
|
// 商品排行
|
||
|
export function apiGetProductRanking(params: any) {
|
||
|
return request.get({ url: '/workbench/get_product_ranking', params })
|
||
|
}
|