Browse Source

no message

lgh 1 year ago
parent
commit
aae63e502e
2 changed files with 4 additions and 13 deletions
  1. 0 4
      src/router/router.js
  2. 4 9
      src/router/sub/supplier.js

+ 0 - 4
src/router/router.js

@@ -8,10 +8,6 @@ const routerList = [
         path:'/supplier/supplierDashboard'
       },
       {
-        name:'供应商列表管理',
-        path:'/supplier/suplierListManage'
-      },
-      {
         name:'供应商游戏币消耗流水记录',
         path:'/supplier/sgccRecord'
       }

+ 4 - 9
src/router/sub/supplier.js

@@ -15,15 +15,6 @@ export default [
         }
     },
     {
-        path: '~suplierListManage',
-        name: 'suplierListManage',
-        component: () => import('@/views/supplier/suplierListManage/index.vue'),
-        meta: {
-            title: '供应商列表管理',
-            keepAlive: true
-        }
-    },
-    {
         path: '~sgccRecord',
         name: 'sgccRecord',
         component: () => import('@/views/supplier/sgccRecord/index.vue'),
@@ -32,4 +23,8 @@ export default [
             keepAlive: true
         }
     },
+    {
+        path:'/home',
+        redirect: '/supplier/supplierDashboard'
+    }
 ]