learn.js 6.62 KB
Newer Older
xulili's avatar
xulili committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
// 内容管理
const videoCopyrightAdd = r => require.ensure([], () => r(require('@/page/content/video/copyright/add')), 'videoCopyrightAdd');
const videoCopyrightUpdate = r => require.ensure([], () => r(require('@/page/content/video/copyright/add')), 'videoCopyrightUpdate');

const videoContentAdd = r => require.ensure([], () => r(require('@/page/content/video/content/add')), 'videoContentAdd');
const videoContentUpdate = r => require.ensure([], () => r(require('@/page/content/video/content/add')), 'videoContentUpdate');
export let learnRoute = [
    {
        path: '/videoCopyrightAdd',
        name: '新建版权方',
        component: videoCopyrightAdd,
        meta: {
            showBreadcrumb: true,
            title: '新建版权方',
        }
    },
    {
        path: '/videoCopyrightUpdate',
        name: '修改版权方',
        component: videoCopyrightUpdate,
        meta: {
            showBreadcrumb: true,
            title: '修改版权方',
        }
    },
    {
        path: '/videoContentAdd',
        name: '新建视频',
        component: videoContentAdd,
        meta: {
            showBreadcrumb: true,
            title: '新建视频',
        }
    },
    {
        path: '/videoContentUpdate',
        name: '修改视频',
        component: videoContentUpdate,
        meta: {
            showBreadcrumb: true,
            title: '修改视频',
        }
    },
    {
        path: '/videoCopyright',
        name: '视频版权方管理',
        component: () => import('@/page/content/video/copyright/index'),
        meta: {
            showBreadcrumb: true,
            title: '视频版权方管理',
        }
    },
    {
        path: '/videoClassify',
        name: '视频分类管理',
        component: () => import('@/page/content/video/classify/index'),
        meta: {
            showBreadcrumb: true,
            title: '视频分类管理',
        }
    },
    {
        path: '/videoContent',
        name: '视频内容管理',
        component: () => import('@/page/content/video/content/index'),
        meta: {
            showBreadcrumb: true,
            title: '视频内容管理',
        }
    },
    {
        path: '/videoRemit',
        name: '视频汇出',
        component: () => import('@/page/content/video/remit/index'),
        meta: {
            showBreadcrumb: true,
            title: '视频汇出',
        }
    },
    // --- 展板
    {
        path: '/displayCopyright',
        name: '展板版权方管理',
        component: () => import('@/page/content/display/copyright/index'),
        meta: {
            showBreadcrumb: true,
            title: '展板版权方管理',
        }
    },
    {
        path: '/displayCopyrightAdd',
        name: '新建展板版权方',
xulili's avatar
xulili committed
93
        component: () => import('@/page/content/display/copyright/add'),
xulili's avatar
xulili committed
94 95 96 97 98 99 100 101
        meta: {
            showBreadcrumb: true,
            title: '新建展板版权方',
        }
    },
    {
        path: '/displayCopyrightUpdate',
        name: '修改展板版权方',
xulili's avatar
xulili committed
102
        component: () => import('@/page/content/display/copyright/add'),
xulili's avatar
xulili committed
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
        meta: {
            showBreadcrumb: true,
            title: '修改展板版权方',
        }
    },
    {
        path: '/displayClassify',
        name: '展板分类管理',
        component: () => import('@/page/content/display/classify/index'),
        meta: {
            showBreadcrumb: true,
            title: '展板分类管理',
        }
    },
    {
        path: '/displayContent',
        name: '展板内容管理',
        component: () => import('@/page/content/display/content/index'),
        meta: {
            showBreadcrumb: true,
            title: '展板内容管理',
        }
    },
    {
        path: '/displayContentAdd',
        name: '新建展板',
        component: () => import('@/page/content/display/content/add'),
        meta: {
            showBreadcrumb: true,
            title: '新建展板',
        }
    },
    {
        path: '/displayContentUpdate',
        name: '修改展板',
        component: () => import('@/page/content/display/content/add'),
        meta: {
            showBreadcrumb: true,
            title: '修改展板',
        }
    },
    {
        path: '/displayContentDetails',
        name: '展板管理详情',
        component: () => import('@/page/content/display/content/details'),
        meta: {
            showBreadcrumb: true,
            title: '展板管理详情',
        }
    },
    // --学习
    {
        path: '/learnProject',
        name: '学习项目管理',
        component: () => import('@/page/content/learn/project/index'),
        meta: {
            showBreadcrumb: true,
            title: '学习项目管理',
        }
    },
    {
        path: '/learnContent',
        name: '学习内容制作',
        component: () => import('@/page/content/learn/content/index'),
        meta: {
            showBreadcrumb: true,
            title: '学习内容制作',
        }
    },
    {
        path: '/learnContentAdd',
        name: '新建学习内容',
        component: () => import('@/page/content/learn/content/add'),
        meta: {
            showBreadcrumb: true,
            title: '新建学习内容',
        }
    },
    {
        path: '/learnContentUpdate',
        name: '修改学习内容',
        component: () => import('@/page/content/learn/content/add'),
        meta: {
            showBreadcrumb: true,
            title: '修改学习内容',
        }
    },
    {
        path: '/learnContentDetails',
        name: '学习内容详情',
        component: () => import('@/page/content/learn/content/details'),
        meta: {
            showBreadcrumb: true,
            title: '学习内容详情',
        }
    },

    // 审核
    {
        path: '/checkVideo',
        name: '视频审核',
        component: () => import('@/page/check/video/index'),
        meta: {
            showBreadcrumb: true,
            title: '视频审核',
        }
    },
    {
        path: '/checkDisplay',
        name: '展板审核',
        component: () => import('@/page/check/display/index'),
        meta: {
            showBreadcrumb: true,
            title: '展板审核',
        }
    },
    {
        path: '/checkLearn',
        name: '平台学习内容审核',
        component: () => import('@/page/check/learn/index'),
        meta: {
            showBreadcrumb: true,
            title: '平台学习内容审核',
        }
    },
    {
        path: '/checkLearnDetails',
        name: '学习内容详情',
        component: () => import('@/page/check/learn/details'),
        meta: {
            showBreadcrumb: true,
            title: '学习内容详情',
        }
    }
]