28 lines
562 B
JavaScript
28 lines
562 B
JavaScript
|
/*
|
||
|
* @Author: Haijun Zhang
|
||
|
* @Date: 2022-11-04 15:40:39
|
||
|
* @LastEditTime: 2022-11-04 15:54:34
|
||
|
* @LastEditors: Haijun Zhang
|
||
|
* @Description:
|
||
|
* @FilePath: \cmc-web\webs\aos-web\src\router\static.js
|
||
|
*/
|
||
|
|
||
|
export default [
|
||
|
{
|
||
|
name: 'Designer',
|
||
|
path: '/designer',
|
||
|
meta: {
|
||
|
title: '报表设计器'
|
||
|
},
|
||
|
component: () => import('views/cosa/report/designer/index.vue')
|
||
|
},
|
||
|
{
|
||
|
name: 'Preview',
|
||
|
path: '/preview',
|
||
|
meta: {
|
||
|
title: '报表预览'
|
||
|
},
|
||
|
component: () => import('views/cosa/report/custom/preview.vue')
|
||
|
}
|
||
|
]
|