|
|
@@ -9,17 +9,17 @@ import httpApi from "@/api/indexApi";
|
|
|
|
|
|
//获取商铺经营板块列表
|
|
|
export const getBusinessSection = () => {
|
|
|
- return httpApi.get(`/alienStorePlatform/storePlatformRenovation/getBusinessSection`);
|
|
|
+ return httpApi.get(`/alienStorePlatform/storePlatformRenovation/getBusinessSection`, {}, { loading: false });
|
|
|
};
|
|
|
|
|
|
//获取商铺经营种类列表
|
|
|
export const getBusinessSectionTypes = params => {
|
|
|
- return httpApi.get(`/alienStorePlatform/storePlatformRenovation/getBusinessSectionTypes`, params);
|
|
|
+ return httpApi.get(`/alienStorePlatform/storePlatformRenovation/getBusinessSectionTypes`, params, { loading: false });
|
|
|
};
|
|
|
|
|
|
//所在地区
|
|
|
export const getDistrict = (params?: any) => {
|
|
|
- return httpApi.get(`/alienStore/gaode/getDistrict`, params);
|
|
|
+ return httpApi.get(`/alienStore/gaode/getDistrict`, params, { loading: false });
|
|
|
};
|
|
|
|
|
|
export const getStoreDetail = params => {
|