zhangyu 4 年 前
コミット
c8fa63753d
3 ファイル変更750 行追加389 行削除
  1. 311 0
      src/components/homeView/leftFolder.vue
  2. 0 1
      src/router/index.ts
  3. 439 388
      src/views/home.vue

+ 311 - 0
src/components/homeView/leftFolder.vue

@@ -0,0 +1,311 @@
+<!-- 左侧文件夹结构 -->
+<template>
+    <div class="left-folder">
+        <el-scrollbar style="height: 100%">
+            <el-row style="padding: 6px 12px; margin-top: 10px">
+                <span style="font-size: 12px; color: #646c73">文件夹</span>
+                <i class="el-icon-plus add-folder-icon" title="添加文件夹" @click="handleShowAddFolder"></i>
+            </el-row>
+            <ul class="folder-list">
+                <li class="folder-item" style="cursor: auto" v-show="showAddFolder">
+                    <el-input
+                        style="width: 157px"
+                        ref="folderName"
+                        size="small"
+                        clearable
+                        v-model="folderName"
+                        @keyup.native.enter="handleClickAddFolder"
+                        placeholder="请输入文件夹名称"
+                    ></el-input>
+                    <i class="el-icon-refresh-left revoke-icon" title="撤销" @click="handleRevokeAddFolder"></i>
+                    <i class="el-icon-check confirm-icon" title="确认" @click="handleClickAddFolder"></i>
+                </li>
+                <li
+                    class="folder-item"
+                    :class="{ 'folder-select': folder.checked }"
+                    v-for="folder in folderData"
+                    :key="folder.id"
+                    :title="folder.name"
+                    @contextmenu.prevent="openMenu($event, folder)"
+                    @click="handleCheckFolder(folder)"
+                >
+                    <span v-show="!folder.showInput" class="folder-item-text">{{ folder.name }}</span>
+                    <!-- <el-badge is-dot class="folder-item-number">103</el-badge> -->
+                    <el-input
+                        v-show="folder.showInput"
+                        style="width: 157px"
+                        :ref="`folderName${folder.id}`"
+                        size="small"
+                        clearable
+                        v-model="folder.updateName"
+                        @keyup.native.enter="handleUpdateFolderName(folder)"
+                        placeholder="请输入文件夹名称"
+                    ></el-input>
+                    <i v-show="folder.showInput" class="el-icon-refresh-left revoke-icon" title="撤销" @click="handleRevokeUpdateFolder(folder)"></i>
+                    <i v-show="folder.showInput" class="el-icon-check confirm-icon" title="确认" @click="handleUpdateFolderName(folder)"></i>
+                </li>
+                <!-- 右键菜单部分 -->
+                <ul v-show="visible" :style="{ left: left + 'px', top: top + 'px' }" class="contextmenu">
+                    <li @click="showUpdateFolderName">重命名</li>
+                    <li @click="handleDeleteFolder">删除文件夹</li>
+                </ul>
+            </ul>
+        </el-scrollbar>
+    </div>
+</template>
+<script>
+export default {
+    data() {
+        return {
+            showAddFolder: false,
+            folderName: "未命名文件夹",
+            folderData: [
+                {
+                    id: 1,
+                    name: "能源系统",
+                    updateName: "能源系统",
+                    checked: false,
+                    showInput: false,
+                },
+                {
+                    id: 2,
+                    name: "排水系统",
+                    updateName: "排水系统",
+                    checked: false,
+                    showInput: false,
+                },
+                {
+                    id: 3,
+                    name: "消防水系统",
+                    updateName: "消防水系统",
+                    checked: false,
+                    showInput: false,
+                },
+                {
+                    id: 4,
+                    name: "公共照明系统公共照明系统公共照明系统公共照明系统",
+                    updateName: "公共照明系统公共照明系统公共照明系统公共照明系统",
+                    checked: false,
+                    showInput: false,
+                },
+                {
+                    id: 5,
+                    name: "暖通空调系统",
+                    updateName: "暖通空调系统",
+                    checked: false,
+                    showInput: false,
+                },
+            ],
+            visible: false,
+            top: 0,
+            left: 0,
+            rightClickFolder: null,
+        };
+    },
+    mounted() {},
+    methods: {
+        // 点击添加文件夹icon打开弹窗
+        handleShowAddFolder() {
+            this.showAddFolder = true;
+            this.$nextTick(() => {
+                this.$refs.folderName.focus();
+            });
+        },
+        // 创建文件夹
+        handleClickAddFolder() {
+            if (!this.folderName) {
+                this.$message({ showClose: true, message: "请输入文件夹名称!" });
+            } else if (
+                this.folderData.find((folder) => {
+                    return folder.name === this.folderName;
+                })
+            ) {
+                this.$message({ showClose: true, message: "您输入的文件夹已存在!" });
+            } else {
+                setTimeout(() => {
+                    this.folderData.unshift({
+                        id: Math.floor(Math.random() * 1000),
+                        name: this.folderName,
+                        updateName: this.folderName,
+                        checked: false,
+                        showInput: false,
+                    });
+                    this.$message.success("添加文件夹成功!");
+                    this.handleRevokeAddFolder();
+                }, 1000);
+            }
+        },
+        // 撤销添加文件夹
+        handleRevokeAddFolder() {
+            // 初始化添加文件夹状态
+            this.showAddFolder = false;
+            this.folderName = "未命名文件夹";
+        },
+        // 点击文件夹
+        handleCheckFolder(folder) {
+            this.folderData.forEach((item) => {
+                if (item.id === folder.id) {
+                    item.checked = true;
+                } else {
+                    item.checked = false;
+                }
+            });
+        },
+        // 右键文件夹
+        openMenu(e, folder) {
+            this.visible = true;
+            this.top = e.pageY;
+            this.left = e.pageX;
+            this.rightClickFolder = folder;
+        },
+        // 关闭右键菜单
+        closeMenu() {
+            this.visible = false;
+        },
+        // 显示要修改的文件夹输入框
+        showUpdateFolderName() {
+            if (this.rightClickFolder) {
+                this.rightClickFolder.showInput = true;
+                this.$nextTick(() => {
+                    this.$refs[`folderName${this.rightClickFolder.id}`][0].focus();
+                });
+            }
+        },
+        // 文件夹重命名
+        handleUpdateFolderName(folder) {
+            if (!folder.updateName) {
+                this.$message({ showClose: true, message: "请输入文件夹名称!" });
+            } else if (
+                this.folderData.find((item) => {
+                    return item.name === folder.updateName;
+                })
+            ) {
+                this.$message({ showClose: true, message: "您输入的文件夹已存在!" });
+            } else {
+                setTimeout(() => {
+                    folder.name = folder.updateName;
+                    this.$message.success("文件夹重命名成功!");
+                    folder.showInput = false;
+                }, 1000);
+            }
+        },
+        // 撤销重命名
+        handleRevokeUpdateFolder(folder) {
+            folder.updateName = folder.name;
+            folder.showInput = false;
+        },
+        // 删除文件夹
+        handleDeleteFolder(folder) {
+            this.$confirm("此操作将永久删除该文件夹, 是否继续?", "提示", {
+                confirmButtonText: "确定",
+                cancelButtonText: "取消",
+                type: "warning",
+            })
+            .then(() => {
+                setTimeout(() => {
+                    // this.folderData.
+                    this.$message({ type: "success", message: "删除成功!"});
+                }, 1000);
+            })
+            // .catch(() => {
+            //     this.$message({
+            //         type: "info",
+            //         message: "已取消删除",
+            //     });
+            // });
+        },
+    },
+    watch: {
+        // 监听 visible,来触发关闭右键菜单,调用关闭菜单的方法
+        visible(value) {
+            if (value) {
+                document.body.addEventListener("click", this.closeMenu);
+            } else {
+                document.body.removeEventListener("click", this.closeMenu);
+            }
+        },
+    },
+};
+</script>
+<style lang="less" scoped>
+.left-folder {
+    background: #f7f9fa;
+    color: #1f2429;
+    width: 100%;
+    padding: 0 8px;
+    height: 100%;
+    padding-left: 6px;
+    .add-folder-icon {
+        float: right;
+        margin-top: 3px;
+        cursor: pointer;
+    }
+    .add-folder-icon:hover {
+        color: #0091ff;
+    }
+    .folder-list {
+        width: 100%;
+        .folder-item {
+            width: 100%;
+            cursor: pointer;
+            height: 40px;
+            line-height: 40px;
+            padding: 0 12px;
+            .folder-item-text {
+                display: inline-block;
+                width: calc(100% - 35px);
+                overflow: hidden;
+                white-space: nowrap;
+                text-overflow: ellipsis;
+            }
+            .folder-item-number {
+                height: 18px;
+                line-height: 18px;
+                font-size: 12px;
+                color: #646c73;
+                margin-top: 11px;
+                float: right;
+            }
+            .revoke-icon {
+                cursor: pointer;
+                margin-left: 8px;
+            }
+            .confirm-icon {
+                cursor: pointer;
+                color: #67c23a;
+                margin-left: 8px;
+            }
+        }
+        .folder-select {
+            color: #0091ff;
+            background-color: #e1f2ff;
+            border-radius: 4px;
+        }
+        .folder-item:hover {
+            color: #0091ff;
+            background-color: #e1f2ff;
+            border-radius: 4px;
+        }
+        .contextmenu {
+            width: 120px;
+            background: #fff;
+            z-index: 3000;
+            position: fixed;
+            list-style-type: none;
+            padding: 8px 0;
+            border-radius: 4px;
+            font-size: 12px;
+            box-shadow: 0px 2px 10px 0px rgba(31, 35, 41, 0.1);
+            li {
+                margin: 0;
+                padding: 8px 12px;
+                cursor: pointer;
+            }
+            li:hover {
+                color: #0091ff;
+                background: #e1f2ff;
+            }
+        }
+    }
+}
+</style>

+ 0 - 1
src/router/index.ts

@@ -3,7 +3,6 @@ import VueRouter, { RouteConfig } from 'vue-router'
 const Editer = () => import('../views/editer.vue')
 const Home = () => import('../views/home.vue')
 Vue.use(VueRouter)
-
 const routes: Array<RouteConfig> = [
   {
     path: '/editer',

+ 439 - 388
src/views/home.vue

@@ -1,419 +1,470 @@
 <template>
-  <el-container class="home">
-    <!-- 顶部导航栏 -->
-    <el-header class="header">
-      <Select width="200" radius @change="testClick" :selectdata="dataSelect3" :placeholder="'请选择'" :hideClear='true'/>
-      <el-popover placement="top" width="320" v-model="popVisible" popper-class="createPopper" trigger="manual">
-        <p>点击这里即可快速创建拓扑图。</p>
-        <div style="text-align: right; margin: 0">
-          <el-button size="mini" type="text" @click="popVisible=false">我知道了</el-button>
-        </div>
-        <el-button @click="createProject" slot="reference" size="small" type="primary">新建拓扑图</el-button>
-      </el-popover>
-    </el-header>
-    <!-- body部分 -->
-    <el-container class="bodys">
-      <!-- 左侧树状导航栏部分 -->
-      <el-aside class="aside" width="200px">
-        <leftAsideTree ref="leftAsideTree" @changeNode="changeNode" @noTree="(noTreeFlag=false,popVisible=true)"></leftAsideTree>
-        <div class="recycle" @click="showRecycleDialog">
-          <img :src='require("@/assets/images/recycle.png")' />
-          <span>回收站</span>
-        </div>
-      </el-aside>
-      <!-- 展示部分 -->
-      <el-main class="main">
-        <div class="main-head" v-if="noTreeFlag">
-          <div class="showType" v-show="!selectCard.length">
-            <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" @keyup.native.enter="changeQueryText" clearable @clear="changeQueryText">
-              </el-input>
-              <Dropdown class="Dropdown" v-model="selVal" :data="dataSelect">
-                <span class="drop-text">{{selText}}</span>
-              </Dropdown>
-            </div>
-          </div>
-          <div class="showAction" v-show="selectCard.length">
-            <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="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" v-loading="cardLoading">
-          <div class="has-data-body" v-if="cardList.length">
-            <template v-for="t in cardList">
-              <topoImageCard :isPub="isPub" :data="t" :key="t.id" @changeCheck="changeCheck" @rename="rename" @publishSuc="updateSuc" @moveTo="moveTo"
-                @delete="deleteGraph" @editTag="editTag" @toEdit="toEdit" @download="download"></topoImageCard>
-            </template>
-          </div>
-          <div class="no-data-body" v-else style="margin-top: 112px;">
-            <img src="@/assets/images/no-data.png" style="width: 116px;height:116px;">
-            <p style="font-size: 16px;margin-top: 15px;">暂无数据</p>
-          </div>
-        </div>
-      </el-main>
-    </el-container>
+    <el-container class="home">
+        <!-- 顶部导航栏 -->
+        <el-header class="header">
+            <Select width="200" radius @change="testClick" :selectdata="dataSelect3" :placeholder="'请选择'" :hideClear="true" />
+            <DropDownButton
+                @click="createCanvas"
+                type="primary"
+                drop-down-type="split-drop"
+                interactive="tap"
+                :drop-down-list="dropDownList"
+                @input="batchCreateCanvas"
+                >新建画布</DropDownButton
+            >
+            <!-- <el-popover placement="bottom" width="320" v-model="popVisible" popper-class="createPopper" trigger="manual">
+                <p>点击这里即可快速创建画布。</p>
+                <div style="text-align: right; margin: 0">
+                <el-button size="mini" type="text" @click="popVisible=false">我知道了</el-button>
+                </div>
+            </el-popover> -->
+        </el-header>
+        <!-- body部分 -->
+        <el-container class="bodys">
+            <!-- 左侧树状导航栏部分 -->
+            <el-aside class="aside" width="240px">
+                <left-folder></left-folder>
+                <!-- <leftAsideTree ref="leftAsideTree" @changeNode="changeNode" @noTree="(noTreeFlag = false), (popVisible = true)"></leftAsideTree>
+                <div class="recycle" @click="showRecycleDialog">
+                    <img :src="require('@/assets/images/recycle.png')" />
+                    <span>回收站</span>
+                </div> -->
+            </el-aside>
+            <!-- 展示部分 -->
+            <el-main class="main">
+                <div class="main-head" v-if="noTreeFlag">
+                    <div class="showType" v-show="!selectCard.length">
+                        <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"
+                                @keyup.native.enter="changeQueryText"
+                                clearable
+                                @clear="changeQueryText"
+                            >
+                            </el-input>
+                            <Dropdown class="Dropdown" v-model="selVal" :data="dataSelect">
+                                <span class="drop-text">{{ selText }}</span>
+                            </Dropdown>
+                        </div>
+                    </div>
+                    <div class="showAction" v-show="selectCard.length">
+                        <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="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" v-loading="cardLoading">
+                    <div class="has-data-body" v-if="cardList.length">
+                        <template v-for="t in cardList">
+                            <topoImageCard
+                                :isPub="isPub"
+                                :data="t"
+                                :key="t.id"
+                                @changeCheck="changeCheck"
+                                @rename="rename"
+                                @publishSuc="updateSuc"
+                                @moveTo="moveTo"
+                                @delete="deleteGraph"
+                                @editTag="editTag"
+                                @toEdit="toEdit"
+                                @download="download"
+                            ></topoImageCard>
+                        </template>
+                    </div>
+                    <div class="no-data-body" v-else style="margin-top: 112px">
+                        <img src="@/assets/images/no-data.png" style="width: 116px; height: 116px" />
+                        <p style="font-size: 16px; margin-top: 15px">暂无数据</p>
+                    </div>
+                </div>
+            </el-main>
+        </el-container>
 
-    <!-- 创建弹框 -->
-    <createGraphDialog ref="createGraphDialog"></createGraphDialog>
-    <!-- 重命名 -->
-    <rename ref="rename" :isPub="isPub" @updateSuc="updateSuc"></rename>
-    <!-- 移动到 -->
-    <move ref="move" :isPub="isPub" @moveSuc="moveSuc"></move>
-    <!-- 删除二次确认 -->
-    <deleteDialog ref="deleteDialog" :isPub="isPub" @deleteSuc="deleteSuc"></deleteDialog>
-    <!-- 修改标签 -->
-    <tagDialog ref="tagDialog" :isPub="isPub" @updateSuc="updateSuc"></tagDialog>
-    <!-- 回收站全屏弹窗 -->
-    <recycle ref="recycle" @recycleDialogClose="recycleDialogClose"></recycle>
-  </el-container>
+        <!-- 创建弹框 -->
+        <createGraphDialog ref="createGraphDialog"></createGraphDialog>
+        <!-- 重命名 -->
+        <rename ref="rename" :isPub="isPub" @updateSuc="updateSuc"></rename>
+        <!-- 移动到 -->
+        <move ref="move" :isPub="isPub" @moveSuc="moveSuc"></move>
+        <!-- 删除二次确认 -->
+        <deleteDialog ref="deleteDialog" :isPub="isPub" @deleteSuc="deleteSuc"></deleteDialog>
+        <!-- 修改标签 -->
+        <tagDialog ref="tagDialog" :isPub="isPub" @updateSuc="updateSuc"></tagDialog>
+        <!-- 回收站全屏弹窗 -->
+        <recycle ref="recycle" @recycleDialogClose="recycleDialogClose"></recycle>
+    </el-container>
 </template>
 
 <script>
-import { Select, Dropdown } from "meri-design";
+import { Select, Dropdown, DropDownButton } from "meri-design";
+import leftFolder from "@/components/homeView/leftFolder.vue";
 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"
-import tagDialog from "@/components/homeView/tagDialog"
-import recycle from "@/components/homeView/recycle"
-import createGraphDialog from "@/components/homeView/createGraphDialog"
-import { SNetUtil } from "@persagy-web/base"
+import { queryDraftsGraph, queryPubGraph } from "@/api/home";
+import rename from "@/components/homeView/rename";
+import move from "@/components/homeView/move";
+import deleteDialog from "@/components/homeView/deleteDialog";
+import tagDialog from "@/components/homeView/tagDialog";
+import recycle from "@/components/homeView/recycle";
+import createGraphDialog from "@/components/homeView/createGraphDialog";
+import { SNetUtil } from "@persagy-web/base";
 export default {
-  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" },
-      ], // 项目列表
-      selVal: "lastUpdate", // 排序方式
-      selText: "按最后修改", // 排序方式文字
-      dataSelect: [
-        { id: "lastUpdate", name: "按最后修改" },
-        { id: "name", name: "按字母顺序" },
-        { id: "createTime", name: "按创建时间" }
-      ], // 排序选项
-      queryText: "", // 搜索文字
-      isPub: 1, // 发布类型()
-      cardList: [], // 当前显示的卡片列表
-      checkAll: false, // 全选
-      selectCard: [], // 当前选中的卡片列表
-      isIndeterminate: true, // 全选按钮
-      curCategory: {}, // 当前选中的树节点
-      noTreeFlag: true, // 左侧树是否有数据-默认有
-      popVisible: false,
-      categoryName: '', // 跳转编辑页面时分类名称
-      imgUrl: '/image-service/common/image_get?systemId=dataPlatform&key=',
-      cardLoading: false,
-    };
-  },
-  methods: {
-    testClick(data) {
-      console.log(data);
-    },
-    // 创建拓扑图
-    createProject() {
-      this.$refs.createGraphDialog.showDialog()
-    },
-    // 选项改变
-    changeCheck(v) {
-      const index = this.selectCard.indexOf(v);
-      if (index > -1) {
-        this.selectCard.splice(index, 1);
-      } else {
-        this.selectCard.push(v);
-      }
-    },
-    // 全选按钮
-    handleCheckAllChange(val) {
-      this.cardList = this.cardList.map(t => {
-        t.checked = val
-        return t;
-      })
-      this.selectCard = val ? this.cardList.map(t => { t.checked = true; return t }) : [];
-      this.isIndeterminate = false;
-    },
-    // 批量移动到
-    groupMove() {
-      this.$refs.move.showDialog(this.selectCard)
-    },
-    // 批量下载
-    groupDownload() {
-      if (this.selectCard.length) {
-        this.selectCard.forEach(t => {
-          this.download(t)
-        })
-      }
-    },
-    // 单独下载
-    download(data) {
-      if (data.pic) {
-        SNetUtil.downLoad(data.name + '.png', this.imgUrl + data.pic);
-      } else {
-        // this.$message.warning(`${data.name}未绘制`)
-      }
-    },
-    // 删除
-    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.categoryName = data.name;
-      this.queryGraph()
-    },
-    // 发布修改
-    changePub() {
-      this.queryGraph()
+    name: "home",
+    components: { Select, leftAsideTree, Dropdown, DropDownButton, topoImageCard, rename, move, deleteDialog, recycle, tagDialog, createGraphDialog, leftFolder },
+    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" },
+            ], // 项目列表
+            dropDownList: [
+                {
+                    id: "batch",
+                    name: "新建画布",
+                    disabled: true,
+                },
+            ],
+            selVal: "lastUpdate", // 排序方式
+            selText: "按最后修改", // 排序方式文字
+            dataSelect: [
+                { id: "lastUpdate", name: "按最后修改" },
+                { id: "name", name: "按字母顺序" },
+                { id: "createTime", name: "按创建时间" },
+            ], // 排序选项
+            queryText: "", // 搜索文字
+            isPub: 1, // 发布类型()
+            cardList: [], // 当前显示的卡片列表
+            checkAll: false, // 全选
+            selectCard: [], // 当前选中的卡片列表
+            isIndeterminate: true, // 全选按钮
+            curCategory: {}, // 当前选中的树节点
+            noTreeFlag: true, // 左侧树是否有数据-默认有
+            popVisible: true,
+            categoryName: "", // 跳转编辑页面时分类名称
+            imgUrl: "/image-service/common/image_get?systemId=dataPlatform&key=",
+            cardLoading: false,
+        };
     },
-    // 修改标签
-    editTag(data) {
-      this.$refs.tagDialog.showDialog(data)
-    },
-    // 输入内容变化
-    changeQueryText() {
-      this.queryGraph()
-    },
-    // 回收站点击
-    showRecycleDialog() {
-      this.$refs.recycle.showDialog()
-    },
-    // 回收站关闭
-    recycleDialogClose() {
-      this.queryGraph();
-      this.$refs.leftAsideTree.getCategoryGraph();
+    methods: {
+        testClick(data) {
+            console.log(data);
+        },
+        // 创建画布
+        createCanvas() {
+            alert("创建画布");
+        },
+        // 批量新建画布
+        batchCreateCanvas(val) {
+            alert(`批量创建画布${val}`);
+        },
+        // 创建拓扑图
+        createProject() {
+            this.$refs.createGraphDialog.showDialog();
+        },
+        // 选项改变
+        changeCheck(v) {
+            const index = this.selectCard.indexOf(v);
+            if (index > -1) {
+                this.selectCard.splice(index, 1);
+            } else {
+                this.selectCard.push(v);
+            }
+        },
+        // 全选按钮
+        handleCheckAllChange(val) {
+            this.cardList = this.cardList.map((t) => {
+                t.checked = val;
+                return t;
+            });
+            this.selectCard = val
+                ? this.cardList.map((t) => {
+                      t.checked = true;
+                      return t;
+                  })
+                : [];
+            this.isIndeterminate = false;
+        },
+        // 批量移动到
+        groupMove() {
+            this.$refs.move.showDialog(this.selectCard);
+        },
+        // 批量下载
+        groupDownload() {
+            if (this.selectCard.length) {
+                this.selectCard.forEach((t) => {
+                    this.download(t);
+                });
+            }
+        },
+        // 单独下载
+        download(data) {
+            if (data.pic) {
+                SNetUtil.downLoad(data.name + ".png", this.imgUrl + data.pic);
+            } else {
+                // this.$message.warning(`${data.name}未绘制`)
+            }
+        },
+        // 删除
+        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.categoryName = data.name;
+            this.queryGraph();
+        },
+        // 发布修改
+        changePub() {
+            this.queryGraph();
+        },
+        // 修改标签
+        editTag(data) {
+            this.$refs.tagDialog.showDialog(data);
+        },
+        // 输入内容变化
+        changeQueryText() {
+            this.queryGraph();
+        },
+        // 回收站点击
+        showRecycleDialog() {
+            this.$refs.recycle.showDialog();
+        },
+        // 回收站关闭
+        recycleDialogClose() {
+            this.queryGraph();
+            this.$refs.leftAsideTree.getCategoryGraph();
+        },
+        // 新建拓扑图成功
+        toEdit(data) {
+            this.$router.push({
+                name: "Editer",
+                query: {
+                    graphId: data.graphId,
+                    id: data.id,
+                    categoryName: encodeURI(this.categoryName),
+                    isPub: this.isPub,
+                },
+            });
+        },
+        /////////////////接口
+        // 查询图形信息
+        queryGraph() {
+            if (!this.curCategory.code) {
+                return;
+            }
+            this.cardLoading = true;
+            this.selectCard = [];
+            const pa = {
+                filters: `categoryId="${this.curCategory.code}"`,
+                orders: `${this.selVal} desc`,
+            };
+            if (this.queryText) {
+                pa.filters += `;name contain "${this.queryText}"`;
+            }
+            if (this.isPub) {
+                queryPubGraph(pa).then((res) => {
+                    this.cardList = res.content.map((t) => {
+                        t.checked = false;
+                        return t;
+                    });
+                    this.cardLoading = false;
+                });
+            } else {
+                pa.filters += ";state=1";
+                queryDraftsGraph(pa).then((res) => {
+                    this.cardList = res.content.map((t) => {
+                        t.checked = false;
+                        return t;
+                    });
+                    this.cardLoading = false;
+                });
+            }
+        },
     },
-    // 新建拓扑图成功
-    toEdit(data) {
-      this.$router.push({
-        name: 'Editer',
-        query: {
-          graphId: data.graphId,
-          id: data.id,
-          categoryName: encodeURI(this.categoryName),
-          isPub: this.isPub
-        }
-      })
+    watch: {
+        // 排序方式修改
+        selVal(n, o) {
+            if (n === o) return;
+            this.selText = this.dataSelect.find((d) => d.id === n).name;
+            this.selectCard = [];
+            this.queryGraph();
+        },
     },
-    /////////////////接口
-    // 查询图形信息
-    queryGraph() {
-      if (!this.curCategory.code) {
-        return
-      }
-      this.cardLoading = true
-      this.selectCard = [];
-      const pa = {
-        filters: `categoryId="${this.curCategory.code}"`,
-        orders: `${this.selVal} desc`
-      }
-      if (this.queryText) {
-        pa.filters += `;name contain "${this.queryText}"`
-      }
-      if (this.isPub) {
-        queryPubGraph(pa).then(res => {
-          this.cardList = res.content.map(t => {
-            t.checked = false;
-            return t;
-          });
-          this.cardLoading = false
-        })
-      } else {
-        pa.filters += ";state=1"
-        queryDraftsGraph(pa).then(res => {
-          this.cardList = res.content.map(t => {
-            t.checked = false;
-            return t;
-          });
-          this.cardLoading = false
-        })
-      }
-    }
-  },
-  components: { Select, leftAsideTree, Dropdown, topoImageCard, rename, move, deleteDialog, recycle, tagDialog, createGraphDialog },
-  watch: {
-    // 排序方式修改
-    selVal(n, o) {
-      if (n === o) return;
-      this.selText = this.dataSelect.find(d => d.id === n).name;
-      this.selectCard = [];
-      this.queryGraph()
-    }
-  }
 };
 </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: calc(100% - 60px);
-    .aside {
-      .recycle {
-        line-height: 48px;
-        border-top: 1px solid #e4e5e7ff;
-        box-sizing: border-box;
+    height: 100%;
+    .header {
+        width: 100%;
+        height: 60px;
         background: #f7f9fa;
-        padding-left: 16px;
-        cursor: pointer;
-        img {
-          width: 16px;
-          height: 16px;
-          margin: -3px 8px 0 0;
-        }
-      }
+        padding: 0 16px 0 16px;
+        border-bottom: 1px solid #E4E5E7;
+        box-sizing: border-box;
+        display: flex;
+        align-items: center;
+        justify-content: space-between;
     }
-    .main {
-      width: 100%;
-      height: 100%;
-      background: #fff;
-      padding: 5px 20px;
-      box-sizing: border-box;
-      .main-head {
-        position: relative;
+    .bodys {
         width: 100%;
-        height: 46px;
-        margin-bottom: 5px;
-        .showType {
-          width: 100%;
-          padding: 7px 0;
-          display: flex;
-          align-items: center;
-          justify-content: space-between;
-          /deep/
-            .el-radio-button__orig-radio:checked
-            + .el-radio-button__inner {
-            color: #0091ff;
-            border-color: #0091ff;
-            background: #e1f2ff;
-          }
-          .head-right {
-            display: flex;
-            align-items: center;
-            .Dropdown {
-              min-width: 100px;
-              margin-left: 20px;
-              .drop-text {
-                font-size: 14px;
-                color: #1f2329;
-                line-height: 16px;
-              }
+        height: calc(100% - 60px);
+        .aside {
+            .recycle {
+                line-height: 48px;
+                border-top: 1px solid #e4e5e7ff;
+                box-sizing: border-box;
+                background: #f7f9fa;
+                padding-left: 16px;
+                cursor: pointer;
+                img {
+                    width: 16px;
+                    height: 16px;
+                    margin: -3px 8px 0 0;
+                }
             }
-          }
-        }
-        .showAction {
-          background: #e1f2ff;
-          border-radius: 4px;
-          border: 1px solid #82c7fc;
-          padding: 8px;
-          span.sum {
-            margin: 0 10px;
-            color: #778089;
-          }
-        }
-      }
-      .main-body {
-        display: block;
-        height: calc(100% - 51px);
-        overflow: auto;
-        & > div {
-          display: flex;
-          flex-wrap: wrap;
         }
-        .no-data-body {
-          flex-direction: column;
-          // justify-content: center;
-          align-items: center;
+        .main {
+            width: 100%;
+            height: 100%;
+            background: #fff;
+            padding: 5px 20px;
+            box-sizing: border-box;
+            .main-head {
+                position: relative;
+                width: 100%;
+                height: 46px;
+                margin-bottom: 5px;
+                .showType {
+                    width: 100%;
+                    padding: 7px 0;
+                    display: flex;
+                    align-items: center;
+                    justify-content: space-between;
+                    /deep/ .el-radio-button__orig-radio:checked + .el-radio-button__inner {
+                        color: #0091ff;
+                        border-color: #0091ff;
+                        background: #e1f2ff;
+                    }
+                    .head-right {
+                        display: flex;
+                        align-items: center;
+                        .Dropdown {
+                            min-width: 100px;
+                            margin-left: 20px;
+                            .drop-text {
+                                font-size: 14px;
+                                color: #1f2329;
+                                line-height: 16px;
+                            }
+                        }
+                    }
+                }
+                .showAction {
+                    background: #e1f2ff;
+                    border-radius: 4px;
+                    border: 1px solid #82c7fc;
+                    padding: 8px;
+                    span.sum {
+                        margin: 0 10px;
+                        color: #778089;
+                    }
+                }
+            }
+            .main-body {
+                display: block;
+                height: calc(100% - 51px);
+                overflow: auto;
+                & > div {
+                    display: flex;
+                    flex-wrap: wrap;
+                }
+                .no-data-body {
+                    flex-direction: column;
+                    // justify-content: center;
+                    align-items: center;
+                }
+            }
         }
-      }
     }
-  }
-  .create-dialog {
-    .dialog-bodys {
-      width: 367px;
-      margin: 0 auto;
+    .create-dialog {
+        .dialog-bodys {
+            width: 367px;
+            margin: 0 auto;
+        }
     }
-  }
-  .create-dialog-inner {
-    .inner-dialog-body {
-      width: 100%;
-      display: flex;
-      .left {
-        flex: 1;
-        border-right: 1px solid #ccc;
-      }
+    .create-dialog-inner {
+        .inner-dialog-body {
+            width: 100%;
+            display: flex;
+            .left {
+                flex: 1;
+                border-right: 1px solid #ccc;
+            }
+        }
     }
-  }
 }
 </style>
 <style lang="less">
 .createPopper.el-popover {
-  background: #0091ffff;
-  color: #fff;
-  border-color: #0091ffff;
-  .el-button {
-    background: #ffffff;
-    border-radius: 4px;
-    padding: 5px 8px;
-  }
-  .popper__arrow::after {
-    border-bottom-color: #0091ffff;
-  }
+    background: #0091ffff;
+    color: #fff;
+    border-color: #0091ffff;
+    .el-button {
+        background: #ffffff;
+        border-radius: 4px;
+        padding: 5px 8px;
+    }
+    .popper__arrow::after {
+        border-bottom-color: #0091ffff;
+    }
 }
 </style>