|
@@ -1,30 +1,32 @@
|
|
|
-const WX_API_BASE = 'https://hubw.jihengcc.cn'
|
|
|
+const WX_API_BASE = 'https://hubw.jihengcc.cn/'
|
|
|
|
|
|
module.exports = {
|
|
|
// 微信登录
|
|
|
WxLogin: WX_API_BASE + 'app/auth/user/wx/login',
|
|
|
// 获取广告
|
|
|
- getAdvert: WX_API_BASE + '/app/product/user/homePage',
|
|
|
+ getAdvert: WX_API_BASE + 'app/product/user/homePage',
|
|
|
// 获取今日特惠商品列表
|
|
|
- getPreferentialGoods: WX_API_BASE + '/app/product/user/homePage/indulgenceProductList',
|
|
|
+ getPreferentialGoods: WX_API_BASE + 'app/product/user/homePage/indulgenceProductList',
|
|
|
// 获取猜你喜欢商品列表
|
|
|
- getPreferGoods: WX_API_BASE + '/app/product/user/homePage/guessLike/getProductList',
|
|
|
+ getPreferGoods: WX_API_BASE + 'app/product/user/homePage/guessLike/getProductList',
|
|
|
// 获取直播列表
|
|
|
- getLiveTelecast: WX_API_BASE + '/app/liveAndVideo/user/homePage/liveList',
|
|
|
+ getLiveTelecast: WX_API_BASE + 'app/liveAndVideo/user/homePage/liveList',
|
|
|
// 获取短视频列表
|
|
|
- getShortVideo: WX_API_BASE + '/app/liveAndVideo/user/homePage/videoList',
|
|
|
+ getShortVideo: WX_API_BASE + 'app/liveAndVideo/user/homePage/videoList',
|
|
|
|
|
|
// 获取分类
|
|
|
- getSortList: WX_API_BASE + '/app/productCategory/categoryInitialization',
|
|
|
+ getSortList: WX_API_BASE + 'app/productCategory/categoryInitialization',
|
|
|
// 获取分类下商品
|
|
|
- getGoodsBySort: WX_API_BASE + '/app/productCategory/selectProductCategory',
|
|
|
+ getGoodsBySort: WX_API_BASE + 'app/productCategory/selectProductCategory',
|
|
|
// 获取自助采摘、共享种植、拍卖商品列表
|
|
|
- getGoodsByType: WX_API_BASE + '/app/product/homeCategoryProductPage',
|
|
|
+ getGoodsByType: WX_API_BASE + 'app/product/homeCategoryProductPage',
|
|
|
// 获取商品详情
|
|
|
- getCommonGoodDetail: WX_API_BASE + '/app/product/user/productDetail',
|
|
|
+ getCommonGoodDetail: WX_API_BASE + 'app/product/user/productDetail',
|
|
|
+ // 获取商品评价
|
|
|
+ getAssessList: WX_API_BASE + 'app/product/user/productDetail/evaluateList',
|
|
|
|
|
|
// 添加购物车
|
|
|
- addCart: WX_API_BASE + '/app/shoppingcart/user/addCart',
|
|
|
+ addCart: WX_API_BASE + 'app/shoppingcart/user/addCart',
|
|
|
// 下订单
|
|
|
- submitOrder: WX_API_BASE + '/app/order/user/submitOrder',
|
|
|
+ submitOrder: WX_API_BASE + 'app/order/user/submitOrder',
|
|
|
}
|