Procházet zdrojové kódy

home: feat> 回收站-恢复

haojianlong před 4 roky
rodič
revize
7e7c59d68c

+ 7 - 3
src/components/homeView/deleteDialog.vue

@@ -11,6 +11,12 @@
 <script>
 import { deleteDraftsGraph, deletePubGraph } from "@/api/home"
 export default {
+  props: {
+    isPub: {
+      type: Number,
+      default: 0
+    }
+  },
   data() {
     return {
       dialogVisible: false,
@@ -27,15 +33,13 @@ export default {
       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) { // 已发布
+      if (this.isPub) { // 已发布
         deletePubGraph(pa).then(res => {
           this.updateCall(res)
         })

+ 7 - 3
src/components/homeView/move.vue

@@ -13,6 +13,12 @@
 <script>
 import { queryCategoryGraph, updateDraftsGraph, updatePubGraph } from "@/api/home"
 export default {
+  props: {
+    isPub: {
+      type: Number,
+      default: 0
+    }
+  },
   data() {
     return {
       defaultProps: {
@@ -49,16 +55,14 @@ export default {
         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) { // 已发布
+      if (this.isPub) { // 已发布
         updatePubGraph(pa).then(res => {
           this.updateCall(res)
         })

+ 16 - 13
src/components/homeView/recycle.vue

@@ -1,7 +1,7 @@
 <template>
-  <el-dialog title="回收站" :visible.sync="dialogVisible" :fullscreen="true" custom-class="recycleDialog">
+  <el-dialog title="回收站" :visible.sync="dialogVisible" :fullscreen="true" custom-class="recycleDialog" @close="dialogClose">
     <div class="main-head">
-      <el-input placeholder="搜索" prefix-icon="el-icon-search" size="small" v-model="queryText" @change="changeQueryText" style="width: 192px;">
+      <el-input placeholder="搜索" prefix-icon="el-icon-search" size="small" v-model="queryText" @keyup.native.enter="changeQueryText" style="width: 192px;">
       </el-input>
       <div class="head-right">
         <Dropdown class="Dropdown" v-model="selVal" :data="dataSelect">
@@ -18,6 +18,8 @@
         <p style="font-size: 16px;margin-top: 15px;text-align:center;">暂无数据</p>
       </div>
     </div>
+    <!-- 二次确认弹窗 -->
+    <recycleDialog ref="recycleDialog" :title="title" @recoverSuc="queryGraph"></recycleDialog>
   </el-dialog>
 </template>
 
@@ -25,6 +27,7 @@
 import { recoveryGraph, queryDraftsGraph } from "@/api/home"
 import { Dropdown } from "meri-design";
 import topoImageCard from "@/components/homeView/topoImageCard.vue";
+import recycleDialog from "@/components/homeView/recycleDialog.vue";
 export default {
   data() {
     return {
@@ -39,7 +42,8 @@ export default {
         { id: "name", name: "按字母顺序" },
         { id: "createTime", name: "按创建时间" }
       ], // 排序选项
-      cardList: []
+      cardList: [],
+      title: '恢复'
     };
   },
   methods: {
@@ -56,8 +60,8 @@ export default {
         Filters: `state=4`,
         Orders: `${this.selVal} desc`
       }
-      if (this.queryText.trim()) {
-        pa.Filters += `;name contain "${this.queryText.trim()}"`
+      if (this.queryText) {
+        pa.Filters += `;name contain "${this.queryText}"`
       }
       queryDraftsGraph(pa).then(res => {
         this.cardList = res.content.map(t => {
@@ -70,20 +74,19 @@ export default {
     },
     // 恢复
     recover(data) {
-      const pa = {
-        id: data.id,
-        graphId: data.graphId
-      }
-      console.log(pa);
-      return
-      recoveryGraph(pa).then(res => { })
+      this.title = "恢复";
+      this.$refs.recycleDialog.showDialog(data)
     },
     // 永久删除
     deleteRecycle() {
       this.$message('开发中')
     },
+    // 关闭弹窗
+    dialogClose() {
+      this.$emit('recycleDialogClose');
+    }
   },
-  components: { Dropdown, topoImageCard },
+  components: { Dropdown, topoImageCard, recycleDialog },
   watch: {
     // 排序方式修改
     selVal(n, o) {

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

@@ -0,0 +1,60 @@
+<template>
+  <el-dialog title="提示" :visible.sync="dialogVisible" width="480px" :close-on-click-modal="false" append-to-body>
+    <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 { recoveryGraph, queryDraftsGraph } from "@/api/home"
+export default {
+  data() {
+    return {
+      dialogVisible: false,
+      data: {}
+    };
+  },
+  methods: {
+    showDialog(data) {
+      this.data = data;
+      this.getDraftsGraph()
+    },
+    // 查询草稿箱当前拓扑图是否存在新图
+    getDraftsGraph() {
+      const pa = {
+        filters: `state=1;graphId="${this.data.graphId}"`
+      }
+      queryDraftsGraph(pa).then(res => {
+        if (res.content.length) {
+          this.dialogVisible = true;
+        } else {
+          this.confirm()
+        }
+      })
+    },
+    // 确认恢复
+    confirm() {
+      const pa = {
+        id: this.data.id,
+        graphId: this.data.graphId
+      }
+      recoveryGraph(pa).then(res => {
+        this.updateCall(res)
+      })
+    },
+    // 恢复成功回调
+    updateCall(res) {
+      if (res.result == "success") {
+        this.dialogVisible = false;
+        this.$emit("recoverSuc");
+        this.$message.success('恢复成功');
+      } else {
+        this.$message(res.message)
+      }
+    }
+  }
+};
+</script>

+ 10 - 4
src/components/homeView/rename.vue

@@ -13,6 +13,12 @@
 <script>
 import { updateDraftsGraph, updatePubGraph } from "@/api/home"
 export default {
+  props: {
+    isPub: {
+      type: Number,
+      default: 0
+    }
+  },
   data() {
     return {
       dialogVisible: false,
@@ -33,14 +39,14 @@ export default {
         return
       }
       const pa = {
-        content:[{
+        content: [{
           id: this.data.id,
           graphId: this.data.graphId,
           name: newName
         }],
-        projection:['name']
+        projection: ['name']
       }
-      if (this.data.pub) { // 已发布
+      if (this.isPub) { // 已发布
         updatePubGraph(pa).then(res => {
           this.updateCall(res)
         })
@@ -51,7 +57,7 @@ export default {
       }
     },
     // 更新成功回调
-    updateCall(res){
+    updateCall(res) {
       if (res.result == "success") {
         this.dialogVisible = false;
         this.$emit("updateSuc")

+ 71 - 0
src/components/homeView/tagDialog.vue

@@ -0,0 +1,71 @@
+<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 {
+  props: {
+    isPub: {
+      type: Number,
+      default: 0
+    }
+  },
+  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.isPub) { // 已发布
+        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>

+ 0 - 1
src/components/homeView/topoImageCard.vue

@@ -99,7 +99,6 @@ export default {
     // 进入编辑页面
     toEdit(){
       console.log(123123);
-      alert(111)
     }
   },
 };

+ 22 - 12
src/views/home.vue

@@ -24,7 +24,7 @@
               <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" @change="changeQueryText">
+              <el-input placeholder="搜索" prefix-icon="el-icon-search" size="small" v-model="queryText" @keyup.native.enter="changeQueryText">
               </el-input>
               <Dropdown class="Dropdown" v-model="selVal" :data="dataSelect">
                 <span class="drop-text">{{selText}}</span>
@@ -44,7 +44,7 @@
         <div class="main-body" :class="{'no-data': !cardList.length}">
           <template v-for="t in cardList">
             <topoImageCard :data="t" :key="t.id" @changeCheck="changeCheck" @rename="rename" @publishSuc="updateSuc" @moveTo="moveTo"
-              @delete="deleteGraph"></topoImageCard>
+              @delete="deleteGraph" @editTag="editTag"></topoImageCard>
           </template>
           <div v-if="!cardList.length" style="margin-top: 112px;">
             <img src="./../assets/images/no-data.png" alt="" style="width: 116px;height:116px;">
@@ -86,13 +86,15 @@
     </el-dialog>
 
     <!-- 重命名 -->
-    <rename ref="rename" @updateSuc="updateSuc"></rename>
+    <rename ref="rename" :isPub="isPub" @updateSuc="updateSuc"></rename>
     <!-- 移动到 -->
-    <move ref="move" @moveSuc="moveSuc"></move>
+    <move ref="move" :isPub="isPub" @moveSuc="moveSuc"></move>
     <!-- 删除二次确认 -->
-    <deleteDialog ref="deleteDialog" @deleteSuc="deleteSuc"></deleteDialog>
+    <deleteDialog ref="deleteDialog" :isPub="isPub" @deleteSuc="deleteSuc"></deleteDialog>
+    <!-- 修改标签 -->
+    <tagDialog ref="tagDialog" :isPub="isPub" @updateSuc="updateSuc"></tagDialog>
     <!-- 回收站全屏弹窗 -->
-    <recycle ref="recycle"></recycle>
+    <recycle ref="recycle" @recycleDialogClose="recycleDialogClose"></recycle>
   </el-container>
 </template>
 
@@ -104,6 +106,7 @@ 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"
 export default {
   name: "home",
@@ -186,8 +189,6 @@ export default {
       curCategory: {}, // 当前选中的树节点
     };
   },
-  mounted() {
-  },
   methods: {
     testClick(data) {
       console.log(data);
@@ -276,14 +277,23 @@ export default {
     changePub() {
       this.queryGraph()
     },
+    // 修改标签
+    editTag(data) {
+      this.$refs.tagDialog.showDialog(data)
+    },
     // 输入内容变化
     changeQueryText() {
       this.queryGraph()
     },
     // 回收站点击
-    showRecycleDialog(){
+    showRecycleDialog() {
       this.$refs.recycle.showDialog()
     },
+    // 回收站关闭
+    recycleDialogClose() {
+      this.queryGraph();
+      this.$refs.leftAsideTree.getCategoryGraph();
+    },
     /////////////////接口
     // 查询图形信息
     queryGraph() {
@@ -295,8 +305,8 @@ export default {
         filters: `categoryId="${this.curCategory.code}"`,
         orders: `${this.selVal} desc`
       }
-      if (this.queryText.trim()) {
-        pa.filters += `;name contain "${this.queryText.trim()}"`
+      if (this.queryText) {
+        pa.filters += `;name contain "${this.queryText}"`
       }
       if (this.isPub) {
         queryPubGraph(pa).then(res => {
@@ -318,7 +328,7 @@ export default {
       }
     }
   },
-  components: { Select, Button, leftAsideTree, Dropdown, topoImageCard, rename, move, deleteDialog, recycle },
+  components: { Select, Button, leftAsideTree, Dropdown, topoImageCard, rename, move, deleteDialog, recycle, tagDialog },
   watch: {
     // 排序方式修改
     selVal(n, o) {