diff --git a/src/lang/modules/enUS.ts b/src/lang/modules/enUS.ts index 89a59ae..532da38 100644 --- a/src/lang/modules/enUS.ts +++ b/src/lang/modules/enUS.ts @@ -108,6 +108,7 @@ export default { ["recorder"]: "recorder", ["virtual-list"]: "virtual-list", ["common-tools"]: "common tools", + ["tree-tools"]: "tree-tools", ["test"]: "test" } }; diff --git a/src/lang/modules/zhCN.ts b/src/lang/modules/zhCN.ts index 02114f6..14a68e4 100644 --- a/src/lang/modules/zhCN.ts +++ b/src/lang/modules/zhCN.ts @@ -108,6 +108,7 @@ export default { ["recorder"]: "录音", ["virtual-list"]: "虚拟列表", ["common-tools"]: "常用工具类", + ["tree-tools"]: "树处理工具类", ["test"]: "测试" } }; diff --git a/src/mock/_data/system_menu.ts b/src/mock/_data/system_menu.ts index 9ac3014..cec39c8 100644 --- a/src/mock/_data/system_menu.ts +++ b/src/mock/_data/system_menu.ts @@ -863,6 +863,27 @@ export const systemMenu = [ }, children: null }, + { + id: "0903", + parentId: "09", + path: "/functions/tree-tools", + name: "tree-tools", + component: "functions/tree-tools/tree-tools", + meta: { + title: "tree-tools", + hide: false, + disable: false, + keepAlive: true, + affix: false, + link: "", + iframe: false, + roles: ["admin"], + icon: "icon-menu", + sort: 3, + type: 2 + }, + children: null + }, { id: "10", parentId: "0", diff --git a/src/views/functions/tree-tools/tree-tools.vue b/src/views/functions/tree-tools/tree-tools.vue new file mode 100644 index 0000000..b576c34 --- /dev/null +++ b/src/views/functions/tree-tools/tree-tools.vue @@ -0,0 +1,54 @@ +