mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2025-12-17 16:35:53 +08:00
修改商家端商品发布样式问题,修改楼层装修pc端出现的问题,修改品牌中出现的bug
This commit is contained in:
@@ -5,10 +5,14 @@ import { getRequest, postRequest, putRequest, deleteRequest} from '@/libs/axios'
|
||||
export const getManagerBrandPage = (params) => {
|
||||
return getRequest('/goods/brand/getByPage', params)
|
||||
}
|
||||
// 添加或修改品牌设置
|
||||
// 添加
|
||||
export const addBrand = (params) => {
|
||||
return postRequest('/goods/brand', params)
|
||||
}
|
||||
// 修改品牌设置
|
||||
export const updateBrand = (params) => {
|
||||
return putRequest(`/goods/brand/${params.id}`, params)
|
||||
}
|
||||
// 禁用品牌
|
||||
export const disableBrand = (id, params) => {
|
||||
return putRequest(`/goods/brand/disable/${id}`, params)
|
||||
|
||||
Reference in New Issue
Block a user