|
@@ -34,6 +34,38 @@ const HomeRoutes = {
|
|
|
component: () =>
|
|
|
import("@/views/systemSettings/serviceManagement/index.vue"),
|
|
|
},
|
|
|
+ {
|
|
|
+ path: "/systemSettings/queryTemplate",
|
|
|
+ name: "QueryTemplate",
|
|
|
+ meta: { title: "查询模板", elSvgIcon: "Fold", icon: "table" },
|
|
|
+ component: () => import("@/views/systemSettings/queryTemplate/index.vue"),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "/systemSettings/sourceservice",
|
|
|
+ name: "Sourceservice",
|
|
|
+ meta: { title: "数据源服务", elSvgIcon: "Fold", icon: "table" },
|
|
|
+ component: () => import("@/views/systemSettings/sourceservice/index.vue"),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "/systemSettings/protocolManagement",
|
|
|
+ name: "ProtocolManagement",
|
|
|
+ meta: { title: "协议管理", elSvgIcon: "Fold", icon: "table" },
|
|
|
+ component: () =>
|
|
|
+ import("@/views/systemSettings/protocolManagement/index.vue"),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "/systemSettings/datastructure",
|
|
|
+ name: "Datastructure",
|
|
|
+ meta: { title: "数据结构管理", elSvgIcon: "Fold", icon: "table" },
|
|
|
+ component: () => import("@/views/systemSettings/datastructure/index.vue"),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "/systemSettings/messageTemplate",
|
|
|
+ name: "MessageTemplate",
|
|
|
+ meta: { title: "消息模板", elSvgIcon: "Fold", icon: "table" },
|
|
|
+ component: () =>
|
|
|
+ import("@/views/systemSettings/messageTemplate/index.vue"),
|
|
|
+ },
|
|
|
],
|
|
|
};
|
|
|
|