Files
jurong_circle_front_app/api/mall.js
Sun_sun db65f73deb 2025-10-21
商品详情加入购物车与创建订单
支付页面70%
2025-10-21 15:25:55 +08:00

19 lines
710 B
JavaScript

import {
http
} from "../util/api";
const baseUrl = "http://192.168.0.26:3000"
export const mallAPI = {
getMallList: (params) => http.get(baseUrl + '/api/products', params),
getCategory: () => http.get(baseUrl + '/api/category'),
getMallDetail: (id) => http.get(baseUrl + '/api/products/' + id),
getRecommended: (id) => http.get(baseUrl + `/api/products/${id}/recommended`), // 推荐商品
addCart: (data) => http.post(baseUrl +"/api/cart/add", data), // 添加购物车
createOrder: (data) => http.post(baseUrl + `/api/orders/create-from-cart`,data), // 创建订单
getOrder: (orderId) => http.get(baseUrl + `/api/orders/pending-payment/${orderId}`), // 获取订单
}
export default {
mallAPI
}