diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml new file mode 100644 index 0000000..2b63946 --- /dev/null +++ b/.idea/uiDesigner.xml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/kcui/src/api/kcInfo.js b/kcui/src/api/kcInfo.js new file mode 100644 index 0000000..1128aa1 --- /dev/null +++ b/kcui/src/api/kcInfo.js @@ -0,0 +1,14 @@ +import request from '@/utils/request'; +import {getToken} from "@/utils/auth"; + + +export function getDocList(data) { + return request({ + url: '/kcDoc/getDocList', + method: 'post', + data:data, + headers: { + 'Authorization': 'Bearer '+ getToken() // 将 token 放在请求头中 + } + }) +} diff --git a/kcui/src/assets/img/jiantou.png b/kcui/src/assets/img/jiantou.png new file mode 100644 index 0000000..12a0d20 Binary files /dev/null and b/kcui/src/assets/img/jiantou.png differ diff --git a/kcui/src/assets/img/rightBox.png b/kcui/src/assets/img/rightBox.png new file mode 100644 index 0000000..6ba487c Binary files /dev/null and b/kcui/src/assets/img/rightBox.png differ diff --git a/kcui/src/assets/img/rightHead.png b/kcui/src/assets/img/rightHead.png new file mode 100644 index 0000000..f0c479d Binary files /dev/null and b/kcui/src/assets/img/rightHead.png differ diff --git a/kcui/src/assets/img/rightList.png b/kcui/src/assets/img/rightList.png new file mode 100644 index 0000000..52519d5 Binary files /dev/null and b/kcui/src/assets/img/rightList.png differ diff --git a/kcui/src/assets/img/tt.png b/kcui/src/assets/img/tt.png new file mode 100644 index 0000000..8892f99 Binary files /dev/null and b/kcui/src/assets/img/tt.png differ diff --git a/kcui/src/assets/img/typeHead.png b/kcui/src/assets/img/typeHead.png new file mode 100644 index 0000000..4316fb1 Binary files /dev/null and b/kcui/src/assets/img/typeHead.png differ diff --git a/kcui/src/assets/js/graphvis.min.20241008.js b/kcui/src/assets/js/graphvis.min.20241008.js index 35dc98a..c76fc71 100644 --- a/kcui/src/assets/js/graphvis.min.20241008.js +++ b/kcui/src/assets/js/graphvis.min.20241008.js @@ -2622,7 +2622,7 @@ } } else { - console.log(this.radius) + return ( (x - this.cx) * (x - this.cx) + (y - this.cy) * (y - this.cy) < this.radius * this.scaleX * this.radius * this.scaleX diff --git a/kcui/src/components/Foot.vue b/kcui/src/components/Foot.vue new file mode 100644 index 0000000..66f2b81 --- /dev/null +++ b/kcui/src/components/Foot.vue @@ -0,0 +1,28 @@ + + + diff --git a/kcui/src/components/Head.vue b/kcui/src/components/Head.vue new file mode 100644 index 0000000..38f84b0 --- /dev/null +++ b/kcui/src/components/Head.vue @@ -0,0 +1,28 @@ + + + diff --git a/kcui/src/router/router.js b/kcui/src/router/router.js index 3a45466..063485f 100644 --- a/kcui/src/router/router.js +++ b/kcui/src/router/router.js @@ -1,7 +1,7 @@ //1.导入vue 和 vuerouter 的包 import Vue from 'vue' import VueRouter from 'vue-router' -// import Home from '@/view/Home.vue' +import Home from '@/view/Home.vue' import Book from '@/view/Book.vue' import Calculator from "@/view/Calculator.vue"; import TwInfo from '@/view/TWInfo.vue' @@ -13,11 +13,11 @@ Vue.use(VueRouter) export default new VueRouter({ routes: [ //配置路由,这里是个数组 - // { //每一个链接都是一个对象 - // path: '/', //链接路径 - // name: 'Home', //路由名称, - // component: Home //对应的组件模板 - // }, + { //每一个链接都是一个对象 + path: '/', //链接路径 + name: 'Home', //路由名称, + component: Home //对应的组件模板 + }, { //每一个链接都是一个对象 path: '/Book', //链接路径 name: 'Book', //路由名称, @@ -29,7 +29,7 @@ export default new VueRouter({ component: Calculator }, { //每一个链接都是一个对象 - path: '/', //链接路径 + path: '/TwInfo', //链接路径 name: 'TwInfo', //路由名称, component: TwInfo //对应的组件模板 }, diff --git a/kcui/src/view/Home.vue b/kcui/src/view/Home.vue index 52870aa..60a1980 100644 --- a/kcui/src/view/Home.vue +++ b/kcui/src/view/Home.vue @@ -3,14 +3,17 @@
跳转1
-
+
+ + + -