1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- import Vue from 'vue';
- import VueRouter from 'vue-router';
- Vue.use(VueRouter);
- const routes = [
- {
- path: '/home',
- component: () => import('../views/home/index.vue'),
- },
- // 金融数字超市-债权产品
- {
- path: '/supermarket/debt',
- component: () => import('../views/supermarket/debt.vue'),
- },
- // 金融数字超市 - 股权产品
- {
- path: '/supermarket/stock',
- component: () => import('../views/supermarket/stock.vue'),
- },
- // 金融机构
- {
- path: '/institution/index',
- component: () => import('../views/institution/index.vue'),
- },
- // 金融机构添加
- {
- path: '/institution/detail',
- component: () => import('../views/institution/detail.vue'),
- },
- // 其他用户管理-列表
- {
- path: '/otheruser/index',
- component: () => import('../views/otheruser/index.vue'),
- },
- // 其他用户管理-添加
- {
- path: '/otheruser/detail',
- component: () => import('../views/otheruser/detail.vue'),
- },
- // 企业信息管理-列表
- {
- path: '/companyup/index',
- component: () => import('../views/companyup/index.vue'),
- },
- // 企业信息管理-详情
- {
- path: '/companyup/detail',
- component: () => import('../views/companyup/detail.vue'),
- },
- // 企业认证管理
- {
- path: '/companyidentify/index',
- component: () => import('../views/companyidentify/index.vue'),
- },
- ];
- const router = new VueRouter({
- routes,
- });
- export default router;
|