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.
10 lines
461 B
10 lines
461 B
import { get } from '@/http/http'
|
|
|
|
//获取品牌数据
|
|
export const getBrandList = () => get(`./static/offline/JSON/getBrandShopList.json`)
|
|
|
|
// //获取品牌模块通过业态排序的品牌列表
|
|
export const getBrandListByFormat = () => get(`./static/offline/JSON/getBrandShopListByIndustryId.json`)
|
|
|
|
// //获取品牌模块通过楼层排序的品牌列表
|
|
export const getBrandListByFloor = () => get(`./static/offline/JSON/getBrandShopListByFloor.json`)
|
|
|