Blame view

src/store/url.js 2.27 KB
e2eaa8a22   范牧   请求地址提取
1
  const urlAlias = {
7d6833f2c   范牧   地址列表
2
    // 详情
78c1e1372   Adam   auto commit the c...
3
    read: '/api/frontend/wood/detail', // 获取商品信息
55ddb3f8a   范牧   登陆逻辑修改
4

f72f302c7   范牧   合并冲突
5
    // 首页
78c1e1372   Adam   auto commit the c...
6
7
8
    shopList: '/api/frontend/wood/list', // 获取首页商品列表
    // category: '/app/prod/category2', 
    category: '/api/frontend/wood/category',// 获取首页商品分类
c300654f9   范牧   首页部分功能
9
    search: '/app/prod/search', // 首页搜索商品
72d769fb7   范牧   myOrder
10

55ddb3f8a   范牧   登陆逻辑修改
11
    // 登陆
1b4b4938a   Adam   auto commit the c...
12
13
    login: '/api/frontend/glass/getOpenId', // 登陆
    getUserInfo: '/api/frontend/glass/userinfo', // 获取用户信息
72d769fb7   范牧   myOrder
14

f72f302c7   范牧   合并冲突
15
    // 我的订单
1b4b4938a   Adam   auto commit the c...
16
17
18
19
20
21
22
23
24
    orderList: '/api/frontend/order/list', // 获取订单列表
    myOrderList: '/api/frontend/order/list', // 获取订单列表
    orderRead: '/api/frontend/order/read', // 获取订单详情
    cancelOrder: '/api/frontend/order/wait/del', // 取消订单
    statusConfirm: '/api/frontend/order/statusConfirm', // 订单操作
    payLog: '/api/frontend/pay/log', // 调起支付
    orderBuild: '/api/frontend/order/build', // 加购后生成订单
    buyNow: '/api/frontend/order/buynow', // 立即购买生成订单
    pay: '/api/frontend/pay/log', // 支付接口
7d6833f2c   范牧   地址列表
25
26
  
    // 购物车
78c1e1372   Adam   auto commit the c...
27
28
29
30
    cartList: '/api/frontend/cart/list', // 获取购物车列表
    cartModi: '/api/frontend/cart/modi', // 修改购物车
    cartDel: '/api/frontend/cart/del', // 删除购物车
    cartAdd: '/api/frontend/cart/add', // 添加购物车
7d6833f2c   范牧   地址列表
31
32
  
    // 我的
1b4b4938a   Adam   auto commit the c...
33
    recommandList: '/api/frontend/wood/recommand', // 获取用户个性化推荐商品
7d6833f2c   范牧   地址列表
34

c4c4f1251   尹聃   修改镜框选购页
35
    // 镜框选购页
1b4b4938a   Adam   auto commit the c...
36
    detailStandardList: '/api/frontend/prod/read', // 获取商品的详细信息
058f060df   范牧   冲突修改
37
    // 选购页
1b4b4938a   Adam   auto commit the c...
38
39
    detailStandardUrl: '/api/frontend/prod/read', // 获取商品的详细信息
    makePost: '/api/frontend/glass/makeProdAdvPic', // 生成分享海报
7d6833f2c   范牧   地址列表
40
41
  
    // 地址管理
1b4b4938a   Adam   auto commit the c...
42
43
44
45
46
    editAddress: '/api/frontend/user/address/modi', // 编辑地址
    addAddress: '/api/frontend/user/address/add', // 添加地址
    addressList: '/api/frontend/user/address/list', // 获取用户地址列表
    getAddress: '/api/frontend/user/address/get', // 获取用户某一地址信息
    getDefaultAddress: '/api/frontend/user/address/get', // 获取用户默认地址信息
7d6833f2c   范牧   地址列表
47

058f060df   范牧   冲突修改
48
    // 用户数据
1b4b4938a   Adam   auto commit the c...
49
50
51
    mylovelist: '/api/frontend/user/mylovelist', // 关心的人的数据
    myloveadd: '/api/frontend/user/myloveadd', // 添加关心的人
    myloveupdate: '/api/frontend/user/myloveupdate', // 更新关心人的数据
e2eaa8a22   范牧   请求地址提取
52
  }
7d6833f2c   范牧   地址列表
53
  export default urlAlias