lvkun996 2 лет назад
Родитель
Сommit
a8c416fc55

+ 4 - 0
src/layout/components/Sidebar/index.vue

@@ -120,6 +120,10 @@ const openDrawer = () => drawerVisible.value = true
   margin-top: -4px;
 }
 
+.ant-layout-sider::-webkit-scrollbar {
+  width: 0;
+}
+
 .logo {
   width: 100%;
   height: 64px;

+ 24 - 1
src/pages/schedule/dataLake/dataTool/index.vue

@@ -16,8 +16,13 @@
         <div style="margin-top: 20px;border: 1px solid #c9c9c9;" >
           <code-mirror-tsx  style="width: 100%;" body-type="sql" :number-of-rows="20" />
         </div>
+        <div class="execute-info" >
+          <div class="title" >执行信息</div>
+          <div class="execute-content" >
+            <a-empty></a-empty>
+          </div>
+        </div>
       </a-card>
-
     </a-col>
   </a-row>
 </a-card>
@@ -28,4 +33,22 @@ import { h } from 'vue'
 import { RightCircleOutlined } from '@ant-design/icons-vue'
 </script>
 <style lang='less' scoped >
+
+.execute-info {
+  margin-top: 10px;
+  .title {
+    font-size: 20px;
+    font-weight: 700;
+    width: 100%;
+    height: 50px;
+    background-color: #f5f5f5;
+    line-height: 50px;
+    padding-left: 20px;
+    border: 1px solid #f5f5f5;
+  }
+  .execute-content {
+    margin-top: 20px;
+  }
+}
+
 </style>

+ 1 - 1
src/pages/schedule/dataSource/manage/index.vue

@@ -67,7 +67,7 @@ const getDataSource = async () => {
 }
 
 onMounted(() => {
-  getDataSource()
+  // getDataSource()
 })
 </script>
 <style lang='less' scoped >

+ 1 - 0
src/router/index.ts

@@ -273,6 +273,7 @@ const schedule = {
     title: '数据中台'
   },
   component: () => import('@/layout/layout.vue'),
+  redirect: '/dataSource',
   children: [
     {
       path: '/dataSource',