|
@@ -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>
|