增加门店信息页面

This commit is contained in:
Gao xiaosong
2020-06-15 07:31:41 +08:00
parent ba199ff02d
commit 204ea408b8
5 changed files with 234 additions and 7 deletions

View File

@ -56,11 +56,11 @@ export function toCollect(id, category) {
export function getHostProducts(page, limit) {
return request.get(
"/product/hot", {
page: page,
limit: limit
}, {
login: false
}
page: page,
limit: limit
}, {
login: false
}
);
}
@ -167,3 +167,9 @@ export function postOrderComment(data) {
login: true
});
}
export function storeListApi(data) {
return request.get("store_list", data, {
login: false
});
}