regIssue.js 701 Bytes
const regIssueRouter = [
    {
        path: '/regIssue',
        name: 'RegIssue',
        meta: {
            title: '注册发行',
            isLogin: false,
            keepAlive: true,
            keepAlivePage: ['RegIssueSearch']
        },
        component: () => import(/* webpackChunkName: "regIssue" */ '@/views/regIssue/index.vue') // 注册发行
    },
    {
        path: '/regIssueSearch',
        name: 'RegIssueSearch',
        meta: {
            title: '注册发行',
            isLogin: false
        },
        component: () => import(/* webpackChunkName: "regIssueSearch" */ '@/views/regIssue/search.vue') // 注册发行 搜索页面
    },
]

export default regIssueRouter