Selaa lähdekoodia

Merge branch 'master' of http://173.18.12.196:3000/front/self-constructing_graph

cynthia-qin 2 päivää sitten
vanhempi
commit
ff8fecf0c1

+ 2 - 2
src/views/KMPlatform/KGBuilder/KGBuilder.vue

@@ -27,7 +27,7 @@ let menuList = ref([
     title: "术语管理"
   },
   {
-    name: 'kgb-ktm',
+    name: 'kgb-etm',
     path: '/kmplatform/kgbuilder/etm',
     title: "实体类型管理"
   },
@@ -59,7 +59,7 @@ function handleMenuClick(data) {
     }
 
     .menu-list {
-      margin: 20px 0px 0px;
+      margin: 15px 0px 0px;
 
       .menu-item {
         cursor: pointer;

+ 1 - 0
src/views/KMPlatform/KnowledgeBase/KM/KnowledgeManagement.vue

@@ -284,6 +284,7 @@ getKnowledgeBaseById()
         color: #A8ACB8;
         font-size: 16px;
         margin-top: 10px;
+        line-height: 1.5;
       }
 
       .other {

+ 6 - 2
src/views/KMPlatform/Layout.vue

@@ -21,12 +21,16 @@ import { ref, getCurrentInstance } from "vue"
 import $ from 'jquery'
 import LayoutHeader from '@/components/LayoutHeader.vue';
 const { proxy } = getCurrentInstance()
-// const elMainRef = ref()
+
 function beforeEnter() {
+  // 切换页面时不出现滚动条
   $('#app').addClass('hide-scrollbar')
+  setTimeout(() => {
+    $('#app').removeClass('hide-scrollbar')
+  }, 1000)
 }
 function afterLeave() {
-  $('#app').removeClass('hide-scrollbar')
+  // $('#app').removeClass('hide-scrollbar')
 }
 </script>