From 8534025c45b4736975730678b9ccf23570a75f95 Mon Sep 17 00:00:00 2001
From: liuyu <yu.liu@cqgbkj.com>
Date: 星期二, 22 九月 2026 09:25:48 +0800
Subject: [PATCH] feat(tms): 新增试卷、培训任务、个人任务页面
---
apps/jnpf-web-apps-main/src/router/routes/modules/tmsPaper.ts | 20 ++++++++++++++++++++
1 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/apps/jnpf-web-apps-main/src/router/routes/modules/tmsPaper.ts b/apps/jnpf-web-apps-main/src/router/routes/modules/tmsPaper.ts
new file mode 100644
index 0000000..41471a9
--- /dev/null
+++ b/apps/jnpf-web-apps-main/src/router/routes/modules/tmsPaper.ts
@@ -0,0 +1,20 @@
+import type { RouteRecordRaw } from 'vue-router';
+
+/**
+ * 鍒楄〃鍙敱鍚庡彴鑿滃崟鎸傝浇锛歱ageAddress = 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;
--
Gitblit v1.8.0