瀏覽代碼

Merge branch 'develop' of http://39.106.8.246:3003/web/persagy_topo_editer into develop

YaolongHan 4 年之前
父節點
當前提交
7d8648eac5

+ 45 - 0
src/api/home.ts

@@ -5,4 +5,49 @@ 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)
+}
+
+// 发布
+export function publishGraph(postParams: any): any {
+    return httputils.postJson(`/labsl/graph/drafts/publish`, postParams)
+}
+
+// 删除未发布
+export function deleteDraftsGraph(postParams: any): any {
+    return httputils.postJson(`/labsl/graph/drafts/recycle`, postParams)
+}
+
+// 删除已发布
+export function deletePubGraph(postParams: any): any {
+    return httputils.postJson(`/labsl/graph/pub/recycle`, postParams)
+}
+
+// 更新未发布
+export function updateDraftsGraph(postParams: any): any {
+    return httputils.postJson(`/labsl/graph/drafts/update`, postParams)
+}
+
+// 更新已发布
+export function updatePubGraph(postParams: any): any {
+    return httputils.postJson(`/labsl/graph/pub/update`, postParams)
+}
+
+// 回收站恢复
+export function recoveryGraph(postParams: any): any {
+    return httputils.postJson(`/labsl/graph/recycle/recovery`, 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
     },

二進制
src/assets/images/no-data.png


+ 60 - 0
src/components/homeView/deleteDialog.vue

@@ -0,0 +1,60 @@
+<template>
+  <el-dialog title="删除" :visible.sync="dialogVisible" width="480px" :close-on-click-modal="false">
+    <p>确认删除吗?</p>
+    <span slot="footer" class="dialog-footer">
+      <el-button @click="dialogVisible = false">取 消</el-button>
+      <el-button type="primary" @click="confirm">确 定</el-button>
+    </span>
+  </el-dialog>
+</template>
+
+<script>
+import { deleteDraftsGraph, deletePubGraph } from "@/api/home"
+export default {
+  data() {
+    return {
+      dialogVisible: false,
+      data: []
+    };
+  },
+  methods: {
+    showDialog(data) {
+      this.dialogVisible = true;
+      this.data = data;
+    },
+    // 确认修改
+    confirm() {
+      if (!this.data.length) {
+        return
+      }
+      let flag = true;
+      const pa = this.data.map(t => {
+        flag = t.pub;
+        return {
+          id: t.id,
+          graphId: t.graphId
+        }
+      })
+      if (flag) { // 已发布
+        deletePubGraph(pa).then(res => {
+          this.updateCall(res)
+        })
+      } else { // 未发布
+        deleteDraftsGraph(pa).then(res => {
+          this.updateCall(res)
+        })
+      }
+    },
+    // 更新成功回调
+    updateCall(res) {
+      if (res.result == "success") {
+        this.dialogVisible = false;
+        this.$emit("deleteSuc");
+        this.$message.success('删除成功');
+      } else {
+        this.$message(res.message)
+      }
+    }
+  }
+};
+</script>

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

+ 84 - 0
src/components/homeView/move.vue

@@ -0,0 +1,84 @@
+<template>
+  <el-dialog title="移动到" :visible.sync="dialogVisible" width="480px" :close-on-click-modal="false">
+    <div>
+      <el-cascader v-model="value" :options="treeData" :props="defaultProps"></el-cascader>
+    </div>
+    <span slot="footer" class="dialog-footer">
+      <el-button @click="dialogVisible = false">取 消</el-button>
+      <el-button type="primary" @click="confirm">确 定</el-button>
+    </span>
+  </el-dialog>
+</template>
+
+<script>
+import { queryCategoryGraph, updateDraftsGraph, updatePubGraph } from "@/api/home"
+export default {
+  data() {
+    return {
+      defaultProps: {
+        children: 'categoryList',
+        label: 'name',
+        value: 'code'
+      },
+      dialogVisible: false,
+      value: [],
+      treeData: [],
+      data: []
+    };
+  },
+  mounted() {
+    this.init()
+  },
+  methods: {
+    init() {
+      queryCategoryGraph({ switch: true }).then(res => {
+        this.treeData = res.content;
+      })
+    },
+    showDialog(data) {
+      this.dialogVisible = true;
+      this.data = data;
+    },
+    // 确认修改
+    confirm() {
+      if (!this.value.length || !this.data.length) {
+        return
+      }
+      const categoryId = this.value[this.value.length - 1]
+      const pa = {
+        content: [],
+        projection: ['categoryId']
+      }
+      let flag = true;
+      pa.content = this.data.map(t => {
+        flag = t.pub;
+        return {
+          id: t.id,
+          graphId: t.graphId,
+          categoryId: categoryId
+        }
+      })
+      if (flag) { // 已发布
+        updatePubGraph(pa).then(res => {
+          this.updateCall(res)
+        })
+      } else { // 未发布
+        updateDraftsGraph(pa).then(res => {
+          this.updateCall(res)
+        })
+      }
+    },
+    // 更新成功回调
+    updateCall(res) {
+      this.value = [];
+      if (res.result == "success") {
+        this.dialogVisible = false;
+        this.$message.success('移动成功');
+        this.$emit("moveSuc")
+      } else {
+        this.$message(res.message)
+      }
+    }
+  }
+};
+</script>

+ 65 - 0
src/components/homeView/rename.vue

@@ -0,0 +1,65 @@
+<template>
+  <el-dialog title="重命名" :visible.sync="dialogVisible" width="480px" :close-on-click-modal="false">
+    <div>
+      <el-input v-model="input" placeholder="请输入名称"></el-input>
+    </div>
+    <span slot="footer" class="dialog-footer">
+      <el-button @click="dialogVisible = false">取 消</el-button>
+      <el-button type="primary" @click="confirm">确 定</el-button>
+    </span>
+  </el-dialog>
+</template>
+
+<script>
+import { updateDraftsGraph, updatePubGraph } from "@/api/home"
+export default {
+  data() {
+    return {
+      dialogVisible: false,
+      input: '',
+      data: {}
+    };
+  },
+  methods: {
+    showDialog(data) {
+      this.dialogVisible = true;
+      this.input = data.name;
+      this.data = data;
+    },
+    // 确认修改
+    confirm() {
+      const newName = this.input.trim()
+      if (!newName) {
+        return
+      }
+      const pa = {
+        content:[{
+          id: this.data.id,
+          graphId: this.data.graphId,
+          name: newName
+        }],
+        projection:['name']
+      }
+      if (this.data.pub) { // 已发布
+        updatePubGraph(pa).then(res => {
+          this.updateCall(res)
+        })
+      } else { // 未发布
+        updateDraftsGraph(pa).then(res => {
+          this.updateCall(res)
+        })
+      }
+    },
+    // 更新成功回调
+    updateCall(res){
+      if (res.result == "success") {
+        this.dialogVisible = false;
+        this.$emit("updateSuc")
+        this.$message.success('重命名成功');
+      } else {
+        this.$message(res.message)
+      }
+    }
+  }
+};
+</script>

+ 38 - 14
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">
@@ -20,18 +20,21 @@
               <img :src="require('@/assets/images/more.png')" style="width: 20px;height:20px" />
             </span>
             <el-dropdown-menu slot="dropdown">
-              <el-dropdown-item v-for="t in moreList" :key="t.name" :command="t.name">{{t.label}}</el-dropdown-item>
+              <template v-for="t in moreList">
+                <el-dropdown-item :key="t.name" :command="t.name" v-if="t.show=='any' || t.show == data.pub">{{t.label}}</el-dropdown-item>
+              </template>
             </el-dropdown-menu>
           </el-dropdown>
         </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>
 </template>
 <script>
+import { publishGraph } from "@/api/home"
 export default {
   props: {
     data: {
@@ -44,21 +47,42 @@ export default {
   data() {
     return {
       moreList: [
-        { name: 'rename', label: '重命名' },
-        { name: 'download', label: '下载' },
-        { name: 'editTag', label: '修改标签' },
-        { name: 'moveTo', label: '移动到' },
-        { name: 'delete', label: '删除' },
+        { name: 'rename', label: '重命名', show: 'any' },
+        { name: 'publish', label: '发布', show: false }, // 类型为未发布时出现
+        { name: 'download', label: '下载', show: true }, // 类型为发布时出现
+        { name: 'editTag', label: '修改标签', show: true }, // 类型为发布时出现
+        { name: 'moveTo', label: '移动到', show: 'any' },
+        { name: 'delete', label: '删除', show:'any' },
       ],
       checked: false
     };
   },
   methods: {
+    // 复选框改变时
     changeCheck() {
       this.$emit('changeCheck', this.data);
     },
+    // 点击更多中的命令时
     handleCommand(command) {
-      this.$message('click on item ' + command);
+      const pa = {
+        graphId: this.data.graphId,
+        id: this.data.id
+      };
+      switch(command){
+        case "rename":
+        case "download":
+        case "editTag":
+        case "moveTo":
+        case "delete":
+          this.$emit(command, this.data)
+          break;
+        case "publish":
+          publishGraph(pa).then(res => {
+            this.$message.success("发布成功");
+            this.$emit('publishSuc')
+          });
+          break;
+      }
     }
   },
 };
@@ -135,7 +159,7 @@ export default {
         line-height: 18px;
         border: 1px solid #8d9399;
         border-radius: 3px;
-        margin-bottom: 4px;
+        margin-bottom: 11px;
         & + span {
           margin-left: 4px;
         }

+ 128 - 60
src/views/home.vue

@@ -9,18 +9,18 @@
     <el-container class="bodys">
       <!-- 左侧树状导航栏部分 -->
       <el-aside class="aside" width="200px">
-        <leftAsideTree></leftAsideTree>
+        <leftAsideTree ref="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">
+              <el-input placeholder="搜索" prefix-icon="el-icon-search" size="small" v-model="queryText" @change="changeQueryText">
               </el-input>
               <Dropdown class="Dropdown" v-model="selVal" :data="dataSelect">
                 <span class="drop-text">{{selText}}</span>
@@ -31,16 +31,21 @@
             <el-checkbox v-model="checkAll" :indeterminate="isIndeterminate" @change="handleCheckAllChange">全选</el-checkbox>
             <span style="margin-left: 10px;">|</span>
             <span class="sum">已选择<span style="color:#252b30;margin: 0 5px;">{{selectCard.length}}</span>项目</span>
-            <el-button size="mini" @click="move">移动到</el-button>
-            <el-button size="mini" @click="download">下载</el-button>
-            <el-button size="mini" @click="deleteSelect">删除</el-button>
+            <el-button size="mini" @click="groupMove">移动到</el-button>
+            <el-button size="mini" @click="groupDownload" v-if="isPub">下载</el-button>
+            <el-button size="mini" @click="groupDelete">删除</el-button>
             <i class="el-icon-close" style="float:right;line-height: 28px;margin-right: 5px;" @click="handleCheckAllChange(false)"></i>
           </div>
         </div>
-        <div class="main-body">
+        <div class="main-body" :class="{'no-data': !cardList.length}">
           <template v-for="t in cardList">
-            <topoImageCard :data="t" :key="t.id" @changeCheck="changeCheck"></topoImageCard>
+            <topoImageCard :data="t" :key="t.id" @changeCheck="changeCheck" @rename="rename" @publishSuc="updateSuc" @moveTo="moveTo"
+              @delete="deleteGraph"></topoImageCard>
           </template>
+          <div v-if="!cardList.length" style="margin-top: 112px;">
+            <img src="./../assets/images/no-data.png" alt="" style="width: 116px;height:116px;">
+            <p style="font-size: 16px;margin-top: 15px;text-align:center;">暂无数据</p>
+          </div>
         </div>
       </el-main>
     </el-container>
@@ -75,6 +80,13 @@
         <el-button type="primary" @click="innerVisible = true">确定</el-button>
       </div>
     </el-dialog>
+
+    <!-- 重命名 -->
+    <rename ref="rename" @updateSuc="updateSuc"></rename>
+    <!-- 移动到 -->
+    <move ref="move" @moveSuc="moveSuc"></move>
+    <!-- 删除二次确认 -->
+    <deleteDialog ref="deleteDialog" @deleteSuc="deleteSuc"></deleteDialog>
   </el-container>
 </template>
 
@@ -82,6 +94,10 @@
 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"
+import rename from "@/components/homeView/rename"
+import move from "@/components/homeView/move"
+import deleteDialog from "@/components/homeView/deleteDialog"
 export default {
   name: "home",
   data() {
@@ -96,19 +112,18 @@ export default {
           divider: true,
         },
         { id: "test4", name: "滑动平均滑动平均", sub: "hi" },
-      ],
-      selVal: "lastUpdate",
-      selText: "按最后修改",
+      ], // 项目列表
+      selVal: "lastUpdate", // 排序方式
+      selText: "按最后修改", // 排序方式文字
       dataSelect: [
         { id: "lastUpdate", name: "按最后修改" },
-        { id: "code", name: "按字母顺序" },
+        { id: "name", name: "按字母顺序" },
         { id: "createTime", name: "按创建时间" }
-      ],
-      queryText: "",
-      isPub: "已发布", // 发布类型()
-      input2: "",
-      outerVisible: true,
-      innerVisible: true,
+      ], // 排序选项
+      queryText: "", // 搜索文字
+      isPub: 1, // 发布类型()
+      outerVisible: false,
+      innerVisible: false,
       ruleForm: {
         name: "",
         region: "",
@@ -157,41 +172,15 @@ export default {
         desc: [{ required: true, message: "请填写活动形式", trigger: "blur" }],
       },
       value: [],
-      cardList: [
-        {
-          id: 1,
-          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',
-          checked: false
-        },
-        {
-          id: 2,
-          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',
-          checked: false
-        }
-      ],
-      checkAll: false,
-      selectCard: [],
+      cardList: [], // 当前显示的卡片列表
+      checkAll: false, // 全选
+      selectCard: [], // 当前选中的卡片列表
       isIndeterminate: true, // 全选按钮
+      curCategory: {}, // 当前选中的树节点
     };
   },
+  mounted() {
+  },
   methods: {
     testClick(data) {
       console.log(data);
@@ -233,25 +222,99 @@ export default {
       this.selectCard = val ? this.cardList.map(t => { t.checked = true; return t }) : [];
       this.isIndeterminate = false;
     },
-    // 移动到
-    move() {
-      console.log('move');
+    // 批量移动到
+    groupMove() {
+      this.$refs.move.showDialog(this.selectCard)
     },
     // 下载
-    download() {
+    groupDownload() {
       console.log('download');
     },
     // 删除
-    deleteSelect() {
-      console.log('deleteSelect');
+    groupDelete() {
+      this.$refs.deleteDialog.showDialog(this.selectCard);
+    },
+    // 重命名
+    rename(data) {
+      this.$refs.rename.showDialog(data)
+    },
+    // 移动到
+    moveTo(data) {
+      this.$refs.move.showDialog([data])
+    },
+    // 单独删除
+    deleteGraph(data) {
+      this.$refs.deleteDialog.showDialog([data]);
+    },
+    // 更新成功-发布成功
+    updateSuc() {
+      this.queryGraph()
+    },
+    // 移动成功
+    moveSuc() {
+      this.queryGraph()
+      this.$refs.leftAsideTree.getCategoryGraph();
+    },
+    // 删除成功
+    deleteSuc() {
+      this.queryGraph()
+      this.$refs.leftAsideTree.getCategoryGraph();
+    },
+    // 选中节点变化
+    changeNode(data) {
+      this.curCategory = data;
+      this.queryGraph()
+    },
+    // 发布修改
+    changePub() {
+      this.queryGraph()
+    },
+    // 输入内容变化
+    changeQueryText() {
+      this.queryGraph()
+    },
+    /////////////////接口
+    // 查询图形信息
+    queryGraph() {
+      if (!this.curCategory.code) {
+        return
+      }
+      this.selectCard = [];
+      const pa = {
+        Filters: `categoryId="${this.curCategory.code}"`,
+        Orders: `${this.selVal} desc`
+      }
+      if (this.queryText.trim()) {
+        pa.Filters += `;name contain "${this.queryText.trim()}"`
+      }
+      if (this.isPub) {
+        queryPubGraph(pa).then(res => {
+          this.cardList = res.content.map(t => {
+            t.checked = false;
+            return t;
+          });
+          this.queryText = '';
+        })
+      } else {
+        pa.Filters += ";state=1"
+        queryDraftsGraph(pa).then(res => {
+          this.cardList = res.content.map(t => {
+            t.checked = false;
+            return t;
+          });
+          this.queryText = '';
+        })
+      }
     }
   },
-  components: { Select, Button, leftAsideTree, Dropdown, topoImageCard },
+  components: { Select, Button, leftAsideTree, Dropdown, topoImageCard, rename, move, deleteDialog },
   watch: {
     // 排序方式修改
     selVal(n, o) {
       if (n === o) return;
-      this.selText = this.dataSelect.find(d => d.id === n).name
+      this.selText = this.dataSelect.find(d => d.id === n).name;
+      this.selectCard = [];
+      this.queryGraph()
     }
   }
 };
@@ -325,6 +388,11 @@ export default {
       .main-body {
         display: flex;
         flex-wrap: wrap;
+        height: calc(100% - 51px);
+        &.no-data {
+          justify-content: center;
+          // align-items: center;
+        }
       }
     }
   }