瀏覽代碼

home: feat> 回收站

haojianlong 4 年之前
父節點
當前提交
7adb00d898

二進制
src/assets/images/recycle.png


+ 1 - 1
src/components/homeView/leftAsideTree.vue

@@ -43,7 +43,7 @@ export default {
 .left-aside {
 .left-aside {
   background: #f7f9fa;
   background: #f7f9fa;
   width: 100%;
   width: 100%;
-  height: 100%;
+  height: calc(100% - 49px);
   padding-left: 6px;
   padding-left: 6px;
   .el-tree{
   .el-tree{
     background: #f7f9fa;
     background: #f7f9fa;

+ 132 - 0
src/components/homeView/recycle.vue

@@ -0,0 +1,132 @@
+<template>
+  <el-dialog title="回收站" :visible.sync="dialogVisible" :fullscreen="true" custom-class="recycleDialog">
+    <div class="main-head">
+      <el-input placeholder="搜索" prefix-icon="el-icon-search" size="small" v-model="queryText" @change="changeQueryText" style="width: 192px;">
+      </el-input>
+      <div class="head-right">
+        <Dropdown class="Dropdown" v-model="selVal" :data="dataSelect">
+          <span class="drop-text">{{selText}}</span>
+        </Dropdown>
+      </div>
+    </div>
+    <div class="main-body" :class="{'no-data': !cardList.length}">
+      <template v-for="t in cardList">
+        <topoImageCard :isRecycle="true" :data="t" :key="t.id" @recover="recover" @deleteRecycle="deleteRecycle"></topoImageCard>
+      </template>
+      <div v-if="!cardList.length" style="margin-top: 112px;">
+        <img :src="require('@/assets/images/no-data.png')" style="width: 116px;height:116px;">
+        <p style="font-size: 16px;margin-top: 15px;text-align:center;">暂无数据</p>
+      </div>
+    </div>
+  </el-dialog>
+</template>
+
+<script>
+import { recoveryGraph, queryDraftsGraph } from "@/api/home"
+import { Dropdown } from "meri-design";
+import topoImageCard from "@/components/homeView/topoImageCard.vue";
+export default {
+  data() {
+    return {
+      dialogVisible: false,
+      input: '',
+      queryText: '',
+      selVal: "delTime", // 排序方式
+      selText: "按删除时间", // 排序方式文字
+      dataSelect: [
+        { id: "delTime", name: "按删除时间" },
+        { id: "lastUpdate", name: "按最后修改" },
+        { id: "name", name: "按字母顺序" },
+        { id: "createTime", name: "按创建时间" }
+      ], // 排序选项
+      cardList: []
+    };
+  },
+  methods: {
+    showDialog() {
+      this.queryGraph();
+      this.dialogVisible = true;
+    },
+    changeQueryText() {
+      this.queryGraph();
+    },
+    // 查询图形信息
+    queryGraph() {
+      const pa = {
+        Filters: `state=4`,
+        Orders: `${this.selVal} desc`
+      }
+      if (this.queryText.trim()) {
+        pa.Filters += `;name contain "${this.queryText.trim()}"`
+      }
+      queryDraftsGraph(pa).then(res => {
+        this.cardList = res.content.map(t => {
+          t.checked = false;
+          return t;
+        });
+        this.queryText = '';
+      })
+
+    },
+    // 恢复
+    recover(data) {
+      const pa = {
+        id: data.id,
+        graphId: data.graphId
+      }
+      console.log(pa);
+      return
+      recoveryGraph(pa).then(res => { })
+    },
+    // 永久删除
+    deleteRecycle() {
+      this.$message('开发中')
+    },
+  },
+  components: { Dropdown, topoImageCard },
+  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>
+/deep/ .recycleDialog {
+  color: red;
+  /deep/ .el-dialog__header {
+    border-bottom: 1px solid #f0f1f2ff;
+  }
+  .main-head {
+    display: flex;
+    justify-content: space-between;
+    .head-right {
+      display: flex;
+      align-items: center;
+      .Dropdown {
+        min-width: 100px;
+        margin-left: 20px;
+        .drop-text {
+          font-size: 14px;
+          color: #1f2329;
+          line-height: 16px;
+        }
+      }
+    }
+  }
+  .main-body {
+    display: flex;
+    flex-wrap: wrap;
+    margin-top: 12px;
+    height: calc(100% - 51px);
+    &.no-data {
+      justify-content: center;
+      // align-items: center;
+    }
+  }
+}
+</style>

+ 26 - 9
src/components/homeView/topoImageCard.vue

@@ -2,7 +2,7 @@
 <template>
 <template>
   <el-card :class="{'box-card': true, 'active': data.checked}" shadow="hover" :body-style="{ padding: '0px' }">
   <el-card :class="{'box-card': true, 'active': data.checked}" shadow="hover" :body-style="{ padding: '0px' }">
     <img :src="'/image-service/common/image_get?systemId=dataPlatform&key='+data.pic" class="image">
     <img :src="'/image-service/common/image_get?systemId=dataPlatform&key='+data.pic" class="image">
-    <div class="shadow image">
+    <div class="shadow image" v-if="!isRecycle" @click="toEdit">
       <el-checkbox v-model="data.checked" class="shadowCheck" @change="changeCheck"></el-checkbox>
       <el-checkbox v-model="data.checked" class="shadowCheck" @change="changeCheck"></el-checkbox>
     </div>
     </div>
     <div class="content">
     <div class="content">
@@ -21,7 +21,7 @@
             </span>
             </span>
             <el-dropdown-menu slot="dropdown">
             <el-dropdown-menu slot="dropdown">
               <template v-for="t in moreList">
               <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>
+                <el-dropdown-item :key="t.name" :command="t.name" v-if="dropdownItemShow(t, data)">{{t.label}}</el-dropdown-item>
               </template>
               </template>
             </el-dropdown-menu>
             </el-dropdown-menu>
           </el-dropdown>
           </el-dropdown>
@@ -42,22 +42,32 @@ export default {
       default: () => {
       default: () => {
         return {}
         return {}
       }
       }
+    },
+    isRecycle: {
+      type: Boolean,
+      default: false
     }
     }
   },
   },
   data() {
   data() {
     return {
     return {
       moreList: [
       moreList: [
-        { 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' },
+        { 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' }, // 类型为 未发布/已发布 时出现
+        { name: 'recover', label: '恢复', show: 'isRecycle' },  // 类型为 回收站 时出现
+        { name: 'deleteRecycle', label: '永久删除', show: 'isRecycle' }, // 类型为 回收站 时出现
       ],
       ],
       checked: false
       checked: false
     };
     };
   },
   },
   methods: {
   methods: {
+    // 显示下拉框内容选项判断
+    dropdownItemShow(item, data) {
+      return (!this.isRecycle && (item.show == 'any' || item.show == data.pub)) || (this.isRecycle && item.show == "isRecycle")
+    },
     // 复选框改变时
     // 复选框改变时
     changeCheck() {
     changeCheck() {
       this.$emit('changeCheck', this.data);
       this.$emit('changeCheck', this.data);
@@ -68,12 +78,14 @@ export default {
         graphId: this.data.graphId,
         graphId: this.data.graphId,
         id: this.data.id
         id: this.data.id
       };
       };
-      switch(command){
+      switch (command) {
         case "rename":
         case "rename":
         case "download":
         case "download":
         case "editTag":
         case "editTag":
         case "moveTo":
         case "moveTo":
         case "delete":
         case "delete":
+        case "recover":
+        case "deleteRecycle":
           this.$emit(command, this.data)
           this.$emit(command, this.data)
           break;
           break;
         case "publish":
         case "publish":
@@ -83,6 +95,11 @@ export default {
           });
           });
           break;
           break;
       }
       }
+    },
+    // 进入编辑页面
+    toEdit(){
+      console.log(123123);
+      alert(111)
     }
     }
   },
   },
 };
 };

+ 31 - 5
src/views/home.vue

@@ -10,6 +10,10 @@
       <!-- 左侧树状导航栏部分 -->
       <!-- 左侧树状导航栏部分 -->
       <el-aside class="aside" width="200px">
       <el-aside class="aside" width="200px">
         <leftAsideTree ref="leftAsideTree" @changeNode="changeNode"></leftAsideTree>
         <leftAsideTree ref="leftAsideTree" @changeNode="changeNode"></leftAsideTree>
+        <div class="recycle" @click="showRecycleDialog">
+          <img :src='require("@/assets/images/recycle.png")' />
+          <span>回收站</span>
+        </div>
       </el-aside>
       </el-aside>
       <!-- 展示部分 -->
       <!-- 展示部分 -->
       <el-main class="main">
       <el-main class="main">
@@ -87,6 +91,8 @@
     <move ref="move" @moveSuc="moveSuc"></move>
     <move ref="move" @moveSuc="moveSuc"></move>
     <!-- 删除二次确认 -->
     <!-- 删除二次确认 -->
     <deleteDialog ref="deleteDialog" @deleteSuc="deleteSuc"></deleteDialog>
     <deleteDialog ref="deleteDialog" @deleteSuc="deleteSuc"></deleteDialog>
+    <!-- 回收站全屏弹窗 -->
+    <recycle ref="recycle"></recycle>
   </el-container>
   </el-container>
 </template>
 </template>
 
 
@@ -98,6 +104,7 @@ import { queryDraftsGraph, queryPubGraph } from "@/api/home"
 import rename from "@/components/homeView/rename"
 import rename from "@/components/homeView/rename"
 import move from "@/components/homeView/move"
 import move from "@/components/homeView/move"
 import deleteDialog from "@/components/homeView/deleteDialog"
 import deleteDialog from "@/components/homeView/deleteDialog"
+import recycle from "@/components/homeView/recycle"
 export default {
 export default {
   name: "home",
   name: "home",
   data() {
   data() {
@@ -273,6 +280,10 @@ export default {
     changeQueryText() {
     changeQueryText() {
       this.queryGraph()
       this.queryGraph()
     },
     },
+    // 回收站点击
+    showRecycleDialog(){
+      this.$refs.recycle.showDialog()
+    },
     /////////////////接口
     /////////////////接口
     // 查询图形信息
     // 查询图形信息
     queryGraph() {
     queryGraph() {
@@ -281,11 +292,11 @@ export default {
       }
       }
       this.selectCard = [];
       this.selectCard = [];
       const pa = {
       const pa = {
-        Filters: `categoryId="${this.curCategory.code}"`,
-        Orders: `${this.selVal} desc`
+        filters: `categoryId="${this.curCategory.code}"`,
+        orders: `${this.selVal} desc`
       }
       }
       if (this.queryText.trim()) {
       if (this.queryText.trim()) {
-        pa.Filters += `;name contain "${this.queryText.trim()}"`
+        pa.filters += `;name contain "${this.queryText.trim()}"`
       }
       }
       if (this.isPub) {
       if (this.isPub) {
         queryPubGraph(pa).then(res => {
         queryPubGraph(pa).then(res => {
@@ -296,7 +307,7 @@ export default {
           this.queryText = '';
           this.queryText = '';
         })
         })
       } else {
       } else {
-        pa.Filters += ";state=1"
+        pa.filters += ";state=1"
         queryDraftsGraph(pa).then(res => {
         queryDraftsGraph(pa).then(res => {
           this.cardList = res.content.map(t => {
           this.cardList = res.content.map(t => {
             t.checked = false;
             t.checked = false;
@@ -307,7 +318,7 @@ export default {
       }
       }
     }
     }
   },
   },
-  components: { Select, Button, leftAsideTree, Dropdown, topoImageCard, rename, move, deleteDialog },
+  components: { Select, Button, leftAsideTree, Dropdown, topoImageCard, rename, move, deleteDialog, recycle },
   watch: {
   watch: {
     // 排序方式修改
     // 排序方式修改
     selVal(n, o) {
     selVal(n, o) {
@@ -336,6 +347,21 @@ export default {
   .bodys {
   .bodys {
     width: 100%;
     width: 100%;
     height: 100%;
     height: 100%;
+    .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;
+        }
+      }
+    }
     .main {
     .main {
       width: 100%;
       width: 100%;
       height: 100%;
       height: 100%;