You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
445 B
16 lines
445 B
import request from '@/utils/request'
|
|
|
|
// 分享专区列表
|
|
export function getNewcomerGoodsList(params: Record<string, any>) {
|
|
return request.get(`shop/newcomer/goods`, params)
|
|
}
|
|
|
|
export function getNewcomersConfig() {
|
|
return request.get(`shop/newcomer/config`)
|
|
}
|
|
|
|
// 首页新人专享列表
|
|
export function getNewcomersComponentsList(params: Record<string, any>) {
|
|
return request.get(`shop/newcomer/goods/components`, params)
|
|
}
|
|
|
|
|