|
|
|
@ -8,6 +8,6 @@ export const getShopListByFloor = () => request<{ list: GroupList }>({ url: `/JS |
|
|
|
export const getShopListByIndustry = () => request<{ list: GroupList }>({ url: `/JSON/getBrandShopListByIndustryId.json` }) |
|
|
|
|
|
|
|
//点击喜欢按钮
|
|
|
|
export const setBrandStar = (data: starPara) => request<{ code: number }>({ url: `/api/guide/v1/web/setBrandStar`, data, method: 'get' }) |
|
|
|
export const setBrandStar = (params: starPara) => request<{ code: number }>({ url: `/guide/v1/web/setBrandStar`, params, method: 'get' }) |
|
|
|
//获取喜欢按钮
|
|
|
|
export const getBrandStar = (data: starPara) => request({ url: `/api/guide/v1/web/getBrandStar`, data, method: 'get' }) |
|
|
|
export const getBrandStar = (params: starPara) => request({ url: `/guide/v1/web/getBrandStar`, params, method: 'get' }) |
|
|
|
|