fa3ae6a0 by 杨威

新增添加页面和路由

1 parent 81a069fd
......@@ -36,6 +36,12 @@ const constantRoutes = [
component: () => import("@/views/panel/create/index"),
},
{
path: "/add",
name: "添加",
code: "0-6",
component: () => import("@/views/panel/add/index"),
},
{
path: "/modify",
name: "更正",
code: "0-3",
......
......@@ -76,6 +76,10 @@ export default {
select: false,
},
{
path:"/add",
select: false,
},
{
path:"/modify",
select: false,
},
......@@ -215,6 +219,11 @@ export default {
icon: "fa fa-address-card-o",
path: "/create",
},
{
name: "添加",
icon: "fa fa-address-card-o",
path: "/add",
},
{ name: "更正", icon: "fa fa-address-card-o", path: "/modify" },
{
name: "变更",
......