feat:完成城市管理增刪改查功能

This commit is contained in:
2026-04-20 17:51:59 +08:00
parent 54b820cc40
commit a69c1f0cb2
3 changed files with 229 additions and 0 deletions

View File

@@ -9,6 +9,20 @@ import Layout from "@/layout";
// 公共路由
export const constantRoutes = [
{
path: "/oa/city",
component: Layout,
hidden: false,
meta: { title: "城市管理", icon: "dashboard" },
children: [
{
path: "index",
component: () => import("@/views/oa/city/index"),
name: "City",
meta: { title: "城市管理", icon: "el-icon-office-building" }
}
]
},
{
path: "/redirect",
component: Layout,
@@ -182,6 +196,7 @@ export const constantRoutes = [
];
export const dynamicRoutes = [
{
path: "/system/user-auth",
component: Layout,
@@ -314,6 +329,7 @@ export const dynamicRoutes = [
},
],
},
];
let routerPush = Router.prototype.push;