Ver código fonte

查询卡片列表

yunxing 4 anos atrás
pai
commit
7dd8f0d871

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

@@ -184,7 +184,7 @@ export default {
                 floorId: this.ruleForm.buildFloor[1],
             };
             // 判断是否添加标签字段
-            if (this.dynamicTags.length) params.babel = this.dynamicTags;
+            if (this.dynamicTags.length) params.label = this.dynamicTags;
             // 判断是否新建文件夹
             if (
                 this.folderData.find((folder) => {

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

@@ -60,7 +60,7 @@ export default {
         },
     },
     mounted() {
-        this.init();
+        // this.init();
     },
     methods: {
         async init() {

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

@@ -40,7 +40,7 @@ export default {
             if (!newName) {
                 return;
             }
-            const pa = {
+            const postParams = {
                 content: [
                     {
                         id: this.data.id,
@@ -50,14 +50,13 @@ export default {
                 ],
                 projection: ["name"],
             };
-            console.log(this.isPub);
             if (this.isPub) {
                 // 已发布
-                let res = await pubPlanerUpdate(pa);
+                let res = await pubPlanerUpdate(postParams);
                 this.updateCall(res);
             } else {
                 // 未发布
-                let res = planerUpdate(pa);
+                let res = await planerUpdate(postParams);
                 this.updateCall(res);
             }
         },
@@ -65,8 +64,8 @@ export default {
         updateCall(res) {
             if (res.result == "success") {
                 this.dialogVisible = false;
-                this.$emit("updateSuc");
                 this.$message.success("更新成功");
+                this.$emit("updateSuc");
             } else {
                 this.$message(res.message);
             }

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

@@ -45,7 +45,7 @@ export default {
     methods: {
         showDialog(data) {
             this.dialogVisible = true;
-            this.dynamicTags = JSON.parse(JSON.stringify(data.label)) || [];
+            this.dynamicTags = JSON.parse(JSON.stringify(data.label || []));
             this.data = data;
         },
         handleClose(tag) {

+ 11 - 11
src/components/homeView/topoImageCard.vue

@@ -37,7 +37,7 @@
     </el-card>
 </template>
 <script>
-import { publishGraph } from "@/api/home";
+import { planerPublish } from "@/api/labsl";
 export default {
     props: {
         data: {
@@ -81,8 +81,8 @@ export default {
             this.$emit("changeCheck", this.data);
         },
         // 点击更多中的命令时
-        handleCommand(command) {
-            const pa = {
+        async handleCommand(command) {
+            const postParams = {
                 graphId: this.data.graphId,
                 id: this.data.id,
             };
@@ -101,14 +101,14 @@ export default {
                     this.$emit(command, this.data);
                     break;
                 case "publish":
-                    publishGraph(pa).then((res) => {
-                        if (res.result == "success") {
-                            this.$message.success("发布成功");
-                            this.$emit("publishSuc");
-                        } else {
-                            this.$message.success("发布失败");
-                        }
-                    });
+                    let res = await planerPublish(postParams);
+                    if (res.result == "success") {
+                        this.$message.success("发布成功");
+                        this.$emit("publishSuc");
+                    } else {
+                        this.$message.success("发布失败");
+                    }
+
                     break;
             }
         },

+ 12 - 10
src/views/home.vue

@@ -205,9 +205,8 @@ export default {
             this.$refs.createPlanarDialog.showDialog();
         },
         // 新建画布成功回调
-        createPlanarCallback(folder) {
-            console.log(folder)
-            debugger
+        createPlanarCallback({ folderId, folderName }) {
+            this.queryGraph(folderId);
         },
         // 批量新建画布
         batchCreateCanvas(val) {
@@ -307,6 +306,7 @@ export default {
          * 更改选中的文件夹
          */
         changeFolder(data) {
+            console.log("changeFolder");
             console.log(data);
             this.folderId = data.id;
             this.queryGraph();
@@ -370,10 +370,12 @@ export default {
                 },
             });
         },
-        /////////////////接口
-        // 查询图形信息
-        async queryGraph() {
-            if (!this.folderId) {
+        /**
+         * 查询图形信息
+         * @param { string } floderId 传入的文件ID,新建画布成功之后,会调用该接口
+         */
+        async queryGraph(floderId) {
+            if (!(floderId || this.folderId)) {
                 return false;
             }
             this.cardLoading = true;
@@ -385,7 +387,7 @@ export default {
             // projectId: "Pj1101050029"
             // statistics: {}
             const postParams = {
-                filters: `folderId='${this.folderId}'`,
+                filters: `folderId='${floderId || this.folderId}'`,
                 PageNumber: 1,
                 PageSize: 1000,
             };
@@ -433,8 +435,8 @@ export default {
             });
             this.cardTree = cardTree;
             this.cardList = cardList;
-            console.log(this.cardList)
-            console.log(this.cardTree)
+            console.log(this.cardList);
+            console.log(this.cardTree);
             this.cardLoading = false;
         },
     },