xiaohaizhao 1 неделя назад
Родитель
Сommit
6da15a9f0d

+ 13 - 0
src/bgj/integralgoverning/index.vue

@@ -0,0 +1,13 @@
+<template>
+    <div>
+        积分调整
+    </div>
+</template>
+
+<script>
+export default {
+
+}
+</script>
+
+<style></style>

+ 13 - 0
src/bgj/integrationrule/index.vue

@@ -0,0 +1,13 @@
+<template>
+    <div>
+        积分规则
+    </div>
+</template>
+
+<script>
+export default {
+
+}
+</script>
+
+<style></style>

+ 13 - 0
src/bgj/pointsbasedorder/index.vue

@@ -0,0 +1,13 @@
+<template>
+    <div>
+        积分订单
+    </div>
+</template>
+
+<script>
+export default {
+
+}
+</script>
+
+<style></style>

+ 13 - 0
src/bgj/pointsbasedorder/modules/detail.vue

@@ -0,0 +1,13 @@
+<template>
+  <div>积分订单详情</div>
+</template>
+
+<script>
+export default {
+
+}
+</script>
+
+<style>
+
+</style>

+ 13 - 0
src/bgj/pointsbasedproducts/index.vue

@@ -0,0 +1,13 @@
+<template>
+    <div>
+        积分商品管理
+    </div>
+</template>
+
+<script>
+export default {
+
+}
+</script>
+
+<style></style>

+ 13 - 0
src/bgj/staffpointsaccount/index.vue

@@ -0,0 +1,13 @@
+<template>
+    <div>
+        人员积分管理
+    </div>
+</template>
+
+<script>
+export default {
+
+}
+</script>
+
+<style></style>

+ 60 - 0
src/router/bgj.js

@@ -114,5 +114,65 @@ const bgj = [
       },
     ],
   },
+  {
+    path: '/staffpointsaccount',
+    name: 'staffpointsaccount',
+    meta: {
+      title: '人员积分管理',
+      ast_nav: true,
+      keeproute: true,
+    },
+    component: () => import(/* webpackChunkName: "about" */ '@/bgj/staffpointsaccount/index')
+  }, {
+    path: '/integrationrule',
+    name: 'integrationrule',
+    meta: {
+      title: '积分规则',
+      ast_nav: true,
+      keeproute: true,
+    },
+    component: () => import(/* webpackChunkName: "about" */ '@/bgj/integrationrule/index')
+  }, {
+    path: '/integralgoverning',
+    name: 'integralgoverning',
+    meta: {
+      title: '积分调整',
+      ast_nav: true,
+      keeproute: true,
+    },
+    component: () => import(/* webpackChunkName: "about" */ '@/bgj/integralgoverning/index')
+  }, {
+    path: '/pointsbasedproducts',
+    name: 'pointsbasedproducts',
+    meta: {
+      title: '积分商品管理',
+      ast_nav: true,
+      keeproute: true,
+    },
+    component: () => import(/* webpackChunkName: "about" */ '@/bgj/pointsbasedproducts/index')
+  },
+  {
+    path: '/pointsbasedorder',
+    name: 'pointsbasedorder',
+    meta: {
+      title: '积分订单',
+      ast_nav: true,
+      keeproute: true,
+    },
+    component: () => import(/* webpackChunkName: "about" */ '@/bgj/pointsbasedorder/index'),
+    children: [
+      {
+        path: '/pointsbasedorderDetail',
+        name: 'pointsbasedorder',
+        meta: {
+          title: '积分订单详情',
+          ast_nav: true,
+          keeproute: true,
+        },
+        component: () =>
+          import(/* webpackChunkName: "about" */ '@/bgj/pointsbasedorder/modules/detail'),
+      },
+    ],
+  }
 ];
 export default bgj;