Browse Source

系统图接口; 查询图列表接口

haojianlong 4 years ago
parent
commit
13c9b0d2a0

+ 15 - 0
src/api/home.ts

@@ -5,4 +5,19 @@ const baseApi = '/graph/drafts/';
 //创建拓扑图
 export function creatTopo(postParams: any): any {
     return httputils.postJson(`/labsl${baseApi}create`, postParams)
+}
+
+// 查询系统图分类
+export function queryCategoryGraph(postParams: any): any {
+    return httputils.postJson(`/labsl/graph-category/query`, postParams)
+}
+
+// 查询未发布的图
+export function queryDraftsGraph(postParams: any) :any{
+    return httputils.postJson(`/labsl/graph/drafts/query`, postParams)
+}
+
+// 查询已发布的图
+export function queryPubGraph(postParams: any) :any{
+    return httputils.postJson(`/labsl/graph/pub/query`, postParams)
 }

+ 1 - 1
src/api/httputils.ts

@@ -21,7 +21,7 @@ axiosservice.interceptors.request.use(
     (config) => {
         config.withCredentials = true // 允许携带token ,这个是解决跨域产生的相关问题
         config.headers = {
-            projectID: '1',//项目id
+            projectID: 'Pj1101050029',//项目id
         }
         return config
     },

+ 48 - 54
src/components/homeView/leftAsideTree.vue

@@ -1,68 +1,42 @@
 <!-- 左侧树结构 -->
 <template>
   <div class="left-aside">
-    <Tree :data="treeData"></Tree>
+    <el-tree :data="treeData" :props="defaultProps" accordion @current-change="changeNode">
+    </el-tree>
   </div>
 </template>
 <script>
-import { Tree } from "meri-design";
+import { queryCategoryGraph } from "@/api/home"
 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: [],
-        },
-      ],
+      defaultProps: {
+        children: 'categoryList',
+        label: 'name'
+      },
+      treeData: []
     };
   },
-  methods: {},
+  mounted(){
+    this.getCategoryGraph();
+  },
+  methods: {
+    changeNode(data, node){
+      if (node.isLeaf) {
+        this.$emit('changeNode', data)
+      }
+    },
+    //// 接口
+    // 获取系统图类型
+    getCategoryGraph() {
+      const pa = {
+        switch: false
+      };
+      queryCategoryGraph(pa).then(res => {
+        this.treeData = res.content;
+      })
+    }
+  },
 };
 </script>
 <style lang="less" scoped>
@@ -70,5 +44,25 @@ export default {
   background: #f7f9fa;
   width: 100%;
   height: 100%;
+  padding-left: 6px;
+  .el-tree{
+    background: #f7f9fa;
+    /deep/ .el-tree-node{
+      &.is-current {
+        & > .el-tree-node__content{
+          background: #E1F2FFFF;
+          color: #0091FFFF;
+        }
+      }
+      .el-tree-node__content{
+        height: 38px;
+        line-height: 38px;
+        &:hover{
+          background: #E1F2FFFF;
+          color: #0091FFFF;
+        }
+      }
+    }
+  }
 }
 </style>

+ 7 - 7
src/components/homeView/topoImageCard.vue

@@ -1,18 +1,18 @@
 <!--拓扑图缩略图卡片-->
 <template>
   <el-card :class="{'box-card': true, 'active': data.checked}" shadow="hover" :body-style="{ padding: '0px' }">
-    <img :src="data.img" class="image">
+    <img :src="'/image-service/common/image_get?systemId=dataPlatform&key='+data.pic" class="image">
     <div class="shadow image">
       <el-checkbox v-model="data.checked" class="shadowCheck" @change="changeCheck"></el-checkbox>
     </div>
     <div class="content">
       <div>
-        <span class="title">{{data.name}}</span>
+        <span class="title" :title="data.name">{{data.name}}</span>
         <div class="func">
           <el-popover placement="top" width="200" trigger="hover" popper-class="customPop">
-            <p>版本: {{data.version}}</p>
-            <p>更新时间: {{data.updateTime}}</p>
-            <p>更新人: {{data.putUser}}</p>
+            <p>版本 : {{data.version}}</p>
+            <p>更新时间 : {{data.lastUpdate}}</p>
+            <!-- <p>更新人 : {{data.putUser || '张三'}}</p> -->
             <span slot="reference"><img :src="require('@/assets/images/tips.png')" style="width: 20px;height:20px" /></span>
           </el-popover>
           <el-dropdown :hide-on-click="false" placement="bottom-start" trigger="click" @command="handleCommand">
@@ -26,7 +26,7 @@
         </div>
       </div>
       <div class="tags">
-        <span v-for="i in data.tagList" :key="i.id">{{i.name}}</span>
+        <span v-for="i in data.label" :key="i">{{i}}</span>
       </div>
     </div>
   </el-card>
@@ -135,7 +135,7 @@ export default {
         line-height: 18px;
         border: 1px solid #8d9399;
         border-radius: 3px;
-        margin-bottom: 4px;
+        margin-bottom: 11px;
         & + span {
           margin-left: 4px;
         }

+ 49 - 19
src/views/home.vue

@@ -9,15 +9,15 @@
     <el-container class="bodys">
       <!-- 左侧树状导航栏部分 -->
       <el-aside class="aside" width="200px">
-        <leftAsideTree></leftAsideTree>
+        <leftAsideTree @changeNode="changeNode"></leftAsideTree>
       </el-aside>
       <!-- 展示部分 -->
       <el-main class="main">
         <div class="main-head">
           <div class="showType" v-show="!selectCard.length">
-            <el-radio-group v-model="isPub" size="small">
-              <el-radio-button label="已发布">已发布</el-radio-button>
-              <el-radio-button label="未发布">未发布</el-radio-button>
+            <el-radio-group v-model="isPub" size="small" @change="changePub">
+              <el-radio-button :label="1">已发布</el-radio-button>
+              <el-radio-button :label="0">未发布</el-radio-button>
             </el-radio-group>
             <div class="head-right">
               <el-input placeholder="搜索" prefix-icon="el-icon-search" size="small" v-model="queryText">
@@ -82,6 +82,7 @@
 import { Select, Button, Dropdown } from "meri-design";
 import leftAsideTree from "@/components/homeView/leftAsideTree.vue";
 import topoImageCard from "@/components/homeView/topoImageCard.vue";
+import { queryDraftsGraph, queryPubGraph } from "@/api/home"
 export default {
   name: "home",
   data() {
@@ -105,7 +106,7 @@ export default {
         { id: "createTime", name: "按创建时间" }
       ],
       queryText: "",
-      isPub: "已发布", // 发布类型()
+      isPub: 1, // 发布类型()
       input2: "",
       outerVisible: true,
       innerVisible: true,
@@ -163,13 +164,9 @@ export default {
           name: '中央供冷系统中央供冷系统中央供冷系统中央供冷系统',
           version: 'V1.2.2',
           putUser: '六千',
-          updateTime: '2020-20-20 16:16:16',
-          tagList: [
-            { id: 1, name: '范德萨' },
-            { id: 2, name: '范333德萨' },
-            { id: 3, name: '范333德萨' }
-          ],
-          img: 'https://www.baidu.com/img/flexible/logo/pc/result.png',
+          lastUpdate: '2020-20-20 16:16:16',
+          label: ['范德萨','范德萨','范德萨'],
+          pic: '1600327559023.png',
           checked: false
         },
         {
@@ -177,21 +174,20 @@ export default {
           name: '中央供冷系456',
           version: 'V1.2.2',
           putUser: '六千',
-          updateTime: '2020-20-20 16:16:16',
-          tagList: [
-            { id: 1, name: '范德萨' },
-            { id: 2, name: '范333德萨' },
-            { id: 3, name: '范333德萨' }
-          ],
-          img: 'https://www.baidu.com/img/flexible/logo/pc/result.png',
+          lastUpdate: '2020-20-20 16:16:16',
+          label: ['范德萨','范德萨','范德萨'],
+          pic: '1600327559023.png',
           checked: false
         }
       ],
       checkAll: false,
       selectCard: [],
       isIndeterminate: true, // 全选按钮
+      curCategory: {}, // 当前选中的树节点
     };
   },
+  mounted(){
+  },
   methods: {
     testClick(data) {
       console.log(data);
@@ -244,6 +240,40 @@ export default {
     // 删除
     deleteSelect() {
       console.log('deleteSelect');
+    },
+    // 选中节点变化
+    changeNode(data){
+      this.selectCard = [];
+      this.curCategory = data;
+      this.queryGraph()
+    },
+    // 发布修改
+    changePub(){
+      this.selectCard = [];
+      this.queryGraph()
+    },
+    /////////////////接口
+    // 查询图形信息
+    queryGraph(){
+      if (this.isPub) {
+        const pa = {
+          // Filters: 'state=1'
+        }
+        queryPubGraph(pa).then(res => {
+
+        })
+      } else {
+        const pa = {
+          Filters: 'state=1',
+        }
+        queryDraftsGraph(pa).then(res => {
+          this.cardList = res.content.map(t => {
+            t.checked = false;
+            return t;
+          });
+          console.log(this.cardList);
+        })
+      }
     }
   },
   components: { Select, Button, leftAsideTree, Dropdown, topoImageCard },