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.
24 lines
424 B
24 lines
424 B
import request from '@/utils/requestUtil'
|
|
|
|
export function getBrandDetail(id) {
|
|
return request({
|
|
method: 'GET',
|
|
url: `/brand/detail/${id}`,
|
|
})
|
|
}
|
|
|
|
export function fetchBrandProductList(params) {
|
|
return request({
|
|
method: 'GET',
|
|
url: '/brand/productList',
|
|
params:params
|
|
})
|
|
}
|
|
|
|
export function fetchBrandRecommendList(params) {
|
|
return request({
|
|
method: 'GET',
|
|
url: '/brand/recommendList',
|
|
params:params
|
|
})
|
|
} |