Blame view

src/router/scmRouter.js 1.64 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')
      },
71def04c   wuxw   优化优惠
47
  ]