YaolongHan 4 lat temu
rodzic
commit
4b1ad57b4e
4 zmienionych plików z 156 dodań i 15 usunięć
  1. 74 0
      src/components/homeView/leftAsideTree.vue
  2. 0 1
      src/main.ts
  3. 5 8
      src/router/index.ts
  4. 77 6
      src/views/Home.vue

+ 74 - 0
src/components/homeView/leftAsideTree.vue

@@ -0,0 +1,74 @@
+<!-- 左侧树结构 -->
+<template>
+  <div class="left-aside">
+    <Tree :data="treeData"></Tree>
+  </div>
+</template>
+<script>
+import { Tree } from "meri-design";
+export default {
+  components: { Tree },
+  data() {
+    return {
+      treeData: [
+        {
+          id: "0",
+          name: "重点机房系统图",
+          open: true,
+          checked: "uncheck",
+          children: [
+            {
+              id: "暖通空调",
+              name: "333",
+              open: true,
+              checked: "uncheck",
+              children: [
+                {
+                  id: "2",
+                  name: "冷源",
+                  open: true,
+                  checked: "uncheck",
+                },
+                {
+                  id: "3",
+                  name: "热源",
+                  open: true,
+                  checked: "uncheck",
+                },
+                {
+                  id: "4",
+                  name: "风机",
+                  open: true,
+                  checked: "uncheck",
+                },
+              ],
+            },
+          ],
+        },
+        {
+          id: "0-1",
+          name: "机电系统图",
+          open: true,
+          checked: "uncheck",
+          children: [],
+        },
+        {
+          id: "0-2",
+          name: "设备版跑图",
+          open: true,
+          checked: "uncheck",
+          children: [],
+        },
+      ],
+    };
+  },
+  methods: {},
+};
+</script>
+<style lang="less" scoped>
+.left-aside {
+  background: #f7f9fa;
+  width: 100%;
+  height: 100%;
+}
+</style>

+ 0 - 1
src/main.ts

@@ -8,7 +8,6 @@ import 'element-ui/lib/theme-chalk/index.css';
 Vue.use(ElementUI);
 
 Vue.config.productionTip = false
-
 new Vue({
   router,
   store,

+ 5 - 8
src/router/index.ts

@@ -9,14 +9,11 @@ Vue.use(VueRouter)
     name: 'Editer',
     component: Editer
   },
-  // {
-    // path: '/about',
-    // name: 'About',
-    // // route level code-splitting
-    // // this generates a separate chunk (about.[hash].js) for this route
-    // // which is lazy-loaded when the route is visited.
-    // component: () => import(/* webpackChunkName: "about" */ '../views/About.vue')
-  // }
+  {
+    path: '/home',
+    name: 'home',
+    component: () => import('../views/home.vue')
+  }
 ]
 
 const router = new VueRouter({

+ 77 - 6
src/views/Home.vue

@@ -1,13 +1,84 @@
 <template>
-  <div class="home">
-    asdfasf
-  </div>
+  <el-container class="home">
+    <!-- 顶部导航栏 -->
+    <el-header class="header">
+      <Select
+        width="200"
+        radius
+        @change="testClick"
+        :selectdata="dataSelect3"
+        :placeholder="'请选择'"
+      />
+      <Button radius type="primary" size="large" :text="'新建拓扑图'">primary</Button>
+    </el-header>
+    <!-- body部分 -->
+    <el-container class="bodys">
+      <!-- 左侧树状导航栏部分 -->
+      <el-aside class="aside" width="200px">
+        <leftAsideTree></leftAsideTree>
+      </el-aside>
+      <!-- 展示部分 -->
+      <el-main class="main">
+        <div class="main-head"></div>
+      </el-main>
+    </el-container>
+  </el-container>
 </template>
 
 <script>
+import { Select, Button } from "meri-design";
+import leftAsideTree from "@/components/homeView/leftAsideTree.vue";
 export default {
-  name: 'Home',
-  components: {
+  name: "home",
+  data() {
+    return {
+      dataSelect3: [
+        { id: "test1", name: "选择项", sub: "hello111" },
+        { id: "test2", name: "单平米", sub: "hola111" },
+        {
+          id: "test3",
+          name: "下级分项",
+          sub: "bonjour",
+          divider: true,
+        },
+        { id: "test4", name: "滑动平均滑动平均", sub: "hi" },
+      ],
+    };
+  },
+  methods: {
+    testClick(data) {
+      console.log(data);
+    },
+  },
+  components: { Select, Button, leftAsideTree },
+};
+</script>
+<style lang="less" scoped>
+.home {
+  width: 100%;
+  height: 100%;
+  .header {
+    width: 100%;
+    height: 60px;
+    background: #f7f9fa;
+    padding: 0 16px 0 16px;
+    box-sizing: border-box;
+    display: flex;
+    align-items: center;
+    justify-content: space-between;
+  }
+  .bodys {
+    width: 100%;
+    height: 100%;
+    .main {
+      width: 100%;
+      height: 100%;
+      background: #fff;
+      padding: 10px 20px;
+      box-sizing: border-box;
+      .main-head {
+      }
+    }
   }
 }
-</script>
+</style>