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