浏览代码

移动删除等接口联调

haojianlong 4 年之前
父节点
当前提交
4585df3771
共有 4 个文件被更改,包括 170 次插入21 次删除
  1. 60 0
      src/components/homeView/deleteDialog.vue
  2. 67 4
      src/components/homeView/move.vue
  3. 3 2
      src/components/homeView/rename.vue
  4. 40 15
      src/views/home.vue

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

+ 67 - 4
src/components/homeView/move.vue

@@ -1,21 +1,84 @@
 <template>
-  <el-dialog title="移动到" :visible.sync="dialogVisible" width="480px">
-    <span>这是一段信息</span>
+  <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="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 {
-      dialogVisible: false
+      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>

+ 3 - 2
src/components/homeView/rename.vue

@@ -5,7 +5,7 @@
     </div>
     <span slot="footer" class="dialog-footer">
       <el-button @click="dialogVisible = false">取 消</el-button>
-      <el-button type="primary" @click="confirmUpdate">确 定</el-button>
+      <el-button type="primary" @click="confirm">确 定</el-button>
     </span>
   </el-dialog>
 </template>
@@ -27,7 +27,7 @@ export default {
       this.data = data;
     },
     // 确认修改
-    confirmUpdate() {
+    confirm() {
       const newName = this.input.trim()
       if (!newName) {
         return
@@ -55,6 +55,7 @@ export default {
       if (res.result == "success") {
         this.dialogVisible = false;
         this.$emit("updateSuc")
+        this.$message.success('重命名成功');
       } else {
         this.$message(res.message)
       }

+ 40 - 15
src/views/home.vue

@@ -9,7 +9,7 @@
     <el-container class="bodys">
       <!-- 左侧树状导航栏部分 -->
       <el-aside class="aside" width="200px">
-        <leftAsideTree @changeNode="changeNode"></leftAsideTree>
+        <leftAsideTree ref="leftAsideTree" @changeNode="changeNode"></leftAsideTree>
       </el-aside>
       <!-- 展示部分 -->
       <el-main class="main">
@@ -31,15 +31,16 @@
             <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" v-if="isPub">下载</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" :class="{'no-data': !cardList.length}">
           <template v-for="t in cardList">
-            <topoImageCard :data="t" :key="t.id" @changeCheck="changeCheck" @rename="rename" @publishSuc="updateSuc"></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;">
@@ -82,6 +83,10 @@
 
     <!-- 重命名 -->
     <rename ref="rename" @updateSuc="updateSuc"></rename>
+    <!-- 移动到 -->
+    <move ref="move" @moveSuc="moveSuc"></move>
+    <!-- 删除二次确认 -->
+    <deleteDialog ref="deleteDialog" @deleteSuc="deleteSuc"></deleteDialog>
   </el-container>
 </template>
 
@@ -91,6 +96,8 @@ 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() {
@@ -215,25 +222,43 @@ 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){
+    rename(data) {
       this.$refs.rename.showDialog(data)
     },
+    // 移动到
+    moveTo(data) {
+      this.$refs.move.showDialog([data])
+    },
+    // 单独删除
+    deleteGraph(data) {
+      this.$refs.deleteDialog.showDialog([data]);
+    },
     // 更新成功-发布成功
-    updateSuc(){
+    updateSuc() {
+      this.queryGraph()
+    },
+    // 移动成功
+    moveSuc() {
+      this.queryGraph()
+      this.$refs.leftAsideTree.getCategoryGraph();
+    },
+    // 删除成功
+    deleteSuc() {
       this.queryGraph()
+      this.$refs.leftAsideTree.getCategoryGraph();
     },
     // 选中节点变化
     changeNode(data) {
@@ -245,7 +270,7 @@ export default {
       this.queryGraph()
     },
     // 输入内容变化
-    changeQueryText(){
+    changeQueryText() {
       this.queryGraph()
     },
     /////////////////接口
@@ -282,7 +307,7 @@ export default {
       }
     }
   },
-  components: { Select, Button, leftAsideTree, Dropdown, topoImageCard, rename },
+  components: { Select, Button, leftAsideTree, Dropdown, topoImageCard, rename, move, deleteDialog },
   watch: {
     // 排序方式修改
     selVal(n, o) {