ソースを参照

授信信息页面路由

peixh 4 年 前
コミット
711bebfd22
1 ファイル変更13 行追加0 行削除
  1. 13 0
      front-vue/src/router/index.js

+ 13 - 0
front-vue/src/router/index.js

@@ -161,6 +161,19 @@ export const constantRoutes = [
       },
     ]
   },
+  {
+    path: '/creditLine',
+    component: Layout,
+    hidden: true,
+    children: [
+      {
+        path: 'addCreditLine/',
+        component: (resolve) => require(['@/views/service/creditLine/addCreditLine'], resolve),
+        name: 'addCreditLine',
+        meta: { title: '新增授信信息',noCache: true }
+      },
+    ]
+  },
 ]
 
 export default new Router({