url.js 361 Bytes edit raw blame history 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 const urlAlias = { // 首页 shopList: '/app/prod/list', // 获取首页商品列表 // 我的订单 orderList: '/app/order/list', // 获取订单列表 // 购物车 cartList: '/app/cart/list', // 获取购物车列表 // 我的 recommandList:'/app/prod/recommand', // 获取用户个性化推荐商品 } export default urlAlias;