保存进度!

This commit is contained in:
2025-10-30 16:02:54 +08:00
parent ef3b31c9e4
commit 72a4895328
7 changed files with 645 additions and 63 deletions

View File

@@ -2,7 +2,7 @@
* @Author: Kane Wang <wangkane@qq.com>
* @Date: 2025-10-13 15:31:41
* @LastEditors: Kane Wang
* @LastModified: 2025-10-28 11:28:01
* @LastModified: 2025-10-30 15:16:59
* @FilePath: src/router/index.ts
* @Description:
*
@@ -71,6 +71,16 @@ const routes = [
},
component: ()=> import( "@/views/console/data/RegulatoryManagement.vue" ),
},
{
path: "/new-regulatory",
name: "NewRegulatory",
meta: {
title: "新建",
icon: "OfficeBuilding",
},
hidden: false,
component: () => import( "@/views/console/data/NewRegulatory.vue" ),
},
{
path: "/upload-regulatory",
name: "UploadRegulatory",
@@ -78,7 +88,7 @@ const routes = [
title: "上传制度",
icon: "OfficeBuilding",
},
hidden: true,
hidden: false,
component: () => import( "@/views/console/data/UploadRegulatory.vue" ),
},
],