diff --git a/code/ts/后端辅助工具/src/DataType/Template.ts b/code/ts/后端辅助工具/src/DataType/Template.ts new file mode 100644 index 0000000..003533c --- /dev/null +++ b/code/ts/后端辅助工具/src/DataType/Template.ts @@ -0,0 +1,13 @@ + +interface Point +{ + x: number; + y: number; +} + +function radius(): TPoint +{ + result: TPoint; + + return result; +} \ No newline at end of file diff --git a/code/web/IT工具综合平台/src/router/index.js b/code/web/IT工具综合平台/src/router/index.js index 900737e..7c8e850 100644 --- a/code/web/IT工具综合平台/src/router/index.js +++ b/code/web/IT工具综合平台/src/router/index.js @@ -2,7 +2,7 @@ * @Author: Kane * @Date: 2022-12-14 15:12:46 * @LastEditors: Kane - * @LastEditTime: 2023-02-04 22:36:13 + * @LastEditTime: 2023-02-21 13:09:15 * @FilePath: /IT工具综合平台/src/router/index.js * @Description: 定义应用路由配置 * @@ -91,7 +91,28 @@ const routes = [ }, ], }, - {//信息管理 + { + //信息查询 + path: "/query_info", + name: "QueryInfo", + meta: { + title: "信息查询", + icon: "search", + }, + component: () => import("@/layout/Index.vue"), + children: [ + { + path: "/query_stuff", + name: "QueryStuff", + meta: { + title: "人员信息", + icon: "user", + }, + component: () => import("@/views/info/StaffInfo.vue"), + }, + ], + }, + {//权限管理 path: "/privilege", name: "Privilege", meta: { diff --git a/code/web/IT工具综合平台/src/views/info/StaffInfo.vue b/code/web/IT工具综合平台/src/views/info/StaffInfo.vue new file mode 100644 index 0000000..460047d --- /dev/null +++ b/code/web/IT工具综合平台/src/views/info/StaffInfo.vue @@ -0,0 +1,124 @@ + + + + + + \ No newline at end of file