feat: 商品详情页面交互

This commit is contained in:
duanshuwen
2025-08-02 17:35:57 +08:00
parent 9d6abe3e2a
commit ea5841d594
28 changed files with 1967 additions and 268 deletions

7
request/api/GoodsApi.js Normal file
View File

@@ -0,0 +1,7 @@
import request from "../base/request";
// 获取商品详情
const goodsDetail = (args) => {
return request.post("/hotelBiz/commodity/commodityDetail", args);
};
export { goodsDetail };