api.js 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. // 以下是业务服务器API地址
  2. // 本机开发时使用
  3. var WxApiRoot = 'http://localhost:18080/wx/';
  4. // 局域网测试使用
  5. // var WxApiRoot = 'http://192.168.0.101:8080/wx/';
  6. // 云平台上线时使用
  7. // var WxApiRoot = 'https://litemall.menethil.com.cn/wx/';
  8. // var WxApiRoot = 'https://www.menethil.com.cn/wx/';
  9. module.exports = {
  10. IndexUrl: WxApiRoot + 'home/index', //首页数据接口
  11. CatalogList: WxApiRoot + 'catalog/index', //分类目录全部分类数据接口
  12. CatalogCurrent: WxApiRoot + 'catalog/current', //分类目录当前分类数据接口
  13. CatalogAll: WxApiRoot + 'catalog/all', //分类目录当前分类数据接口
  14. AuthLoginByWeixin: WxApiRoot + 'auth/login_by_weixin', //微信登录
  15. GoodsCount: WxApiRoot + 'goods/count', //统计商品总数
  16. GoodsList: WxApiRoot + 'goods/list', //获得商品列表
  17. GoodsCategory: WxApiRoot + 'goods/category', //获得分类数据
  18. GoodsDetail: WxApiRoot + 'goods/detail', //获得商品的详情
  19. GoodsRelated: WxApiRoot + 'goods/related', //商品详情页的关联商品(大家都在看)
  20. BrandList: WxApiRoot + 'brand/list', //品牌列表
  21. BrandDetail: WxApiRoot + 'brand/detail', //品牌详情
  22. CartList: WxApiRoot + 'cart/index', //获取购物车的数据
  23. CartAdd: WxApiRoot + 'cart/add', // 添加商品到购物车
  24. CartFastAdd: WxApiRoot + 'cart/fastadd', // 立即购买商品
  25. CartUpdate: WxApiRoot + 'cart/update', // 更新购物车的商品
  26. CartDelete: WxApiRoot + 'cart/delete', // 删除购物车的商品
  27. CartChecked: WxApiRoot + 'cart/checked', // 选择或取消选择商品
  28. CartGoodsCount: WxApiRoot + 'cart/goodscount', // 获取购物车商品件数
  29. CartCheckout: WxApiRoot + 'cart/checkout', // 下单前信息确认
  30. CommentPost: WxApiRoot + 'comment/post', //发表评论
  31. TopicList: WxApiRoot + 'topic/list', //专题列表
  32. TopicDetail: WxApiRoot + 'topic/detail', //专题详情
  33. TopicRelated: WxApiRoot + 'topic/related', //相关专题
  34. SearchIndex: WxApiRoot + 'search/index', //搜索关键字
  35. SearchResult: WxApiRoot + 'search/result', //搜索结果
  36. SearchHelper: WxApiRoot + 'search/helper', //搜索帮助
  37. SearchClearHistory: WxApiRoot + 'search/clearhistory', //搜索历史清楚
  38. AddressList: WxApiRoot + 'address/list', //收货地址列表
  39. AddressDetail: WxApiRoot + 'address/detail', //收货地址详情
  40. AddressSave: WxApiRoot + 'address/save', //保存收货地址
  41. AddressDelete: WxApiRoot + 'address/delete', //保存收货地址
  42. OrderSubmit: WxApiRoot + 'order/submit', // 提交订单
  43. OrderPrepay: WxApiRoot + 'order/prepay', // 订单的预支付会话
  44. OrderList: WxApiRoot + 'order/list', //订单列表
  45. OrderDetail: WxApiRoot + 'order/detail', //订单详情
  46. OrderCancel: WxApiRoot + 'order/cancel', //取消订单
  47. OrderRefund: WxApiRoot + 'order/refund', //退款取消订单
  48. OrderDelete: WxApiRoot + 'order/delete', //删除订单
  49. OrderConfirm: WxApiRoot + 'order/confirm', //确认收货
  50. OrderGoods: WxApiRoot + 'order/goods', // 代评价商品信息
  51. OrderComment: WxApiRoot + 'order/comment', // 评价订单商品信息
  52. FootprintList: WxApiRoot + 'footprint/list', //足迹列表
  53. FootprintDelete: WxApiRoot + 'footprint/delete', //删除足迹
  54. GroupOnList: WxApiRoot + 'groupon/list', //团购列表
  55. GroupOnMy: WxApiRoot + 'groupon/my', //团购API-我的团购
  56. GroupOnDetail: WxApiRoot + 'groupon/detail', //团购API-详情
  57. GroupOnJoin: WxApiRoot + 'groupon/join', //团购API-详情
  58. StorageUpload: WxApiRoot + 'storage/upload' //图片上传
  59. };