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