Blame view

src/router/scmRouter.js 2.14 KB
71def04c   wuxw   优化优惠
1
2
3
4
5
6
7
8
9
10
11
12
  export default [
      {
          path: '/pages/scm/couponMarket',
          name: '/pages/scm/couponMarket',
          component: () => import('@/views/scm/couponMarketList.vue')
      },
      {
          path: '/pages/scm/couponPropertyPoolManage',
          name: '/pages/scm/couponPropertyPoolManage',
          component: () => import('@/views/scm/couponPropertyPoolManageList.vue')
      },
      {
f52d2b06   wuxw   积分功能开发中
13
14
          path: '/pages/scm/couponRule',
          name: '/pages/scm/couponRule',
71def04c   wuxw   优化优惠
15
          component: () => import('@/views/scm/couponRuleList.vue')
f52d2b06   wuxw   积分功能开发中
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
      },
      {
          path: '/pages/scm/couponPropertyPoolDetail',
          name: '/pages/scm/couponPropertyPoolDetail',
          component: () => import('@/views/scm/couponPropertyPoolDetailList.vue')
      },
      {
          path: '/pages/scm/couponPropertyUserManage',
          name: '/pages/scm/couponPropertyUserManage',
          component: () => import('@/views/scm/couponPropertyUserManageList.vue')
      },
      {
          path: '/pages/scm/couponPropertyUserDetail',
          name: '/pages/scm/couponPropertyUserDetail',
          component: () => import('@/views/scm/couponPropertyUserDetailList.vue')
      },
      {
          path: '/pages/scm/integralConfigManage',
          name: '/pages/scm/integralConfigManage',
          component: () => import('@/views/scm/integralConfigManageList.vue')
      },
      {
          path: '/pages/scm/integralRule',
          name: '/pages/scm/integralRule',
          component: () => import('@/views/scm/integralRuleList.vue')
      },
      {
          path: '/pages/scm/integralGiftDetailManage',
          name: '/pages/scm/integralGiftDetailManage',
          component: () => import('@/views/scm/integralGiftDetailManageList.vue')
      },
6ed9faf1   wuxw   开发完成优惠下的积分功能
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
      {
          path: '/pages/scm/communityIntegral',
          name: '/pages/scm/communityIntegral',
          component: () => import('@/views/scm/communityIntegralList.vue')
      },
      {
          path: '/pages/scm/gold',
          name: '/pages/scm/gold',
          component: () => import('@/views/scm/goldList.vue')
      },
      {
          path: '/pages/reserve/reserveCatalogManage',
          name: '/pages/reserve/reserveCatalogManage',
          component: () => import('@/views/scm/reserveCatalogManageList.vue')
      },
71def04c   wuxw   优化优惠
62
  ]