12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- 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/:status',
- 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: '/companyuser/index',
- component: () => import('../views/companyuser/index.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'),
- },
- // 企业认证管理-审核
- {
- path: '/companyidentify/detail',
- component: () => import('../views/companyidentify/detail.vue'),
- },
- // 角色管理-列表
- {
- path: '/character/index',
- component: () => import('../views/character/index.vue'),
- },
- // 角色管理-详情
- {
- path: '/character/detail',
- component: () => import('../views/character/detail.vue'),
- },
- ];
- const router = new VueRouter({
- routes,
- });
- export default router;
|