12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- import Layout from '@/views/layout/Layout'
-
- export default {
- path: '/upload/',
- component: Layout,
- redirect: 'noredirect',
- name: 'quality_control',
- alwaysShow: true,
- meta: {
- title: 'quality_control',
- icon: 'excel'
- },
- children: [
- {
- path: '/upload/fast',
- component: () => import('@/xt_pages/upload/fast_upload'),
- name: 'fast_upload',
- meta: {
- title: 'fast_upload',
- noCache: true,
-
- }
- },
- {
- path: '/upload/data',
- component: () => import('@/xt_pages/upload/data_upload'),
- name: 'data_upload',
- meta: {
- title: 'data_upload',
- noCache: true,
-
- }
- },
- {
- path: '/upload/export',
- component: () => import('@/xt_pages/upload/export'),
- name: 'export',
- meta: {
- title: 'export',
- noCache: true,
-
- }
- }, {
- path: '/upload/config',
- component: () => import('@/xt_pages/upload/config'),
- name: 'upload_config',
- meta: {
- title: 'upload_config',
- noCache: true,
-
- }
- },
- ]
- }
|