123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- module.exports = {
- IndexUrlNewGoods: 'index/newGoods', //新品首发
- IndexUrlHotGoods: 'index/hotGoods', //热卖商品
- IndexUrlTopic: 'index/topic', //专题精选
- IndexUrlBrand: 'index/brand', //品牌制造商
- IndexUrlCategory: 'index/category', //首页底部的分类及商品列表
- IndexUrlBanner: 'index/banner', //首页banner
- IndexUrlChannel: 'index/channel', //banner下的分类
- CatalogList: 'catalog/index', //分类目录全部分类数据接口
- CatalogCurrent: 'catalog/current', //分类目录当前分类数据接口
- AuthLoginByWeixin: 'auth/login_by_weixin', //微信登录
- GoodsCount: 'goods/count', //统计商品总数
- GoodsList: 'goods/list', //获得商品列表
- GoodsCategory: 'goods/category', //获得分类数据
- GoodsDetail: 'goods/detail', //获得商品的详情
- GoodsHot: 'goods/hot', //人气推荐
- GoodsNew: 'goods/new', //新品推荐
- GoodsRelated: 'goods/related', //商品详情页的关联商品(大家都在看)
- BrandList: 'brand/list', //品牌列表
- BrandDetail: 'brand/detail', //品牌详情
- CartList: 'cart/index', //获取购物车的数据
- CartAdd: 'cart/add', // 添加商品到购物车
- BuyAdd: 'buy/add', // 直接购买
- CartUpdate: 'cart/update', // 更新购物车的商品
- CartDelete: 'cart/delete', // 删除购物车的商品
- CartChecked: 'cart/checked', // 选择或取消选择商品
- CartGoodsCount: 'cart/goodscount', // 获取购物车商品件数
- CartCheckout: 'cart/checkout', // 下单前信息确认
- OrderSubmit: 'order/submit', // 提交订单
- PayPrepayId: 'pay/prepay', //获取微信统一下单prepay_id
- CollectList: 'collect/list', //收藏列表
- CollectAddOrDelete: 'collect/addordelete', //添加或取消收藏
- CommentList: 'comment/list', //评论列表
- CommentCount: 'comment/count', //评论总数
- CommentPost: 'comment/post', //发表评论
- TopicList: 'topic/list', //专题列表
- TopicDetail: 'topic/detail', //专题详情
- TopicRelated: 'topic/related', //相关专题
- SearchIndex: 'search/index', //搜索页面数据
- SearchHelper: 'search/helper', //搜索帮助
- SearchClearHistory: 'search/clearhistory', //搜索帮助
- AddressList: 'address/list', //收货地址列表
- AddressDetail: 'address/detail', //收货地址详情
- AddressSave: 'address/save', //保存收货地址
- AddressDelete: 'address/delete', //删除收货地址
- RegionList: 'region/list', //获取区域列表
- OrderList: 'order/list', //订单列表
- OrderDetail: 'order/detail', //订单详情
- OrderCancel: 'order/cancelOrder', //取消订单
- OrderConfirm: 'order/confirmOrder', //确认收货
- FootprintList: 'footprint/list', //足迹列表
- FootprintDelete: 'footprint/delete', //删除足迹
- FeedbackAdd: 'feedback/save', //添加反馈
- SmsCode: 'user/smscode', //发送短信
- BindMobile: 'user/bindMobile', //绑定手机
- Login: 'auth/login', //账号登录
- Register: 'auth/register', //注册
- CouponList: 'coupon/list', // 优惠券列表
- GoodsCouponList: 'coupon/listByGoods', // 商品优惠券列表
- OrderQuery: 'pay/query', //微信查询订单状态
- HelpTypeList: 'helpissue/typeList', //查看帮助类型列表
- HelpIssueList: 'helpissue/issueList', //查看问题列表
- };
|