This commit is contained in:
zhuoda
2020-04-08 20:37:51 +08:00
parent b9e0e5c004
commit 0454869921
455 changed files with 5251 additions and 2520 deletions

View File

@@ -0,0 +1,29 @@
import Main from '@/components/main';
// 文件服务
export const file = [
{
path: '/file',
name: 'File',
component: Main,
meta: {
title: '文件服务',
icon: 'ios-cloud-upload'
},
children: [
{
path: '/file/file-list',
name: 'FileList',
meta: {
title: '文件列表',
icon: 'ios-cloud-upload',
privilege: [
{ title: '查询', name: 'file-filePage-query' },
{ title: '上传', name: 'file-filePage-upload' },
{ title: '下载', name: 'file-filePage-download' }
]
},
component: () => import('@/views/system/file/file-list.vue')
}
]
}
];