1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| import type { RouteRecordRaw } from 'vue-router';
|
| /**
| * 列表可由后台菜单挂载:pageAddress = x/tms/paper/index,路由 /tms/paper
| * 创建/编辑/详情已挂到 basicRoutes(不依赖菜单)
| */
| const tmsPaperRoutes: RouteRecordRaw[] = [
| {
| path: '/tms/paper',
| name: 'TmsPaper',
| component: () => import('#/views/x/tms/paper/index.vue'),
| meta: {
| title: '试卷管理',
| hideInMenu: true,
| ignoreAccess: true,
| },
| },
| ];
|
| export default tmsPaperRoutes;
|
|