feat: 增加楼层装修

This commit is contained in:
paulGao
2022-11-04 17:56:02 +08:00
parent 524666f6e4
commit eaa04e395b
2 changed files with 331 additions and 117 deletions

View File

@@ -44,10 +44,22 @@ export function getHotKeywords(count) {
* @param client_type
* @param page_type
*/
export function getFloorData() {
export function getFloorData(params) {
return http.request({
url: `/other/pageData/getIndex?clientType=H5`,
method: "get",
params
});
}
/**
* 获取店铺楼层数据
*/
export function getFloorStoreData(params) {
return http.request({
url: `/other/pageData?pageClientType=H5`,
method: "get",
params
});
}