yunxing 4 年之前
父節點
當前提交
a063de29d0

+ 47 - 7
src/api/labsl.ts

@@ -1,25 +1,65 @@
 /**
  * 蜡笔森林接口文档
  */
-import httputils from '@/api/httputils'
-const baseApi = '/labsl';
+import httputils from "@/api/httputils";
+const baseApi = "/labsl";
 
 // 创建文件夹
 export function folderCreate(postParams: any): any {
-    return httputils.postJson(`${baseApi}/planar​/folder​/create`, postParams)
+    return httputils.postJson(`${baseApi}/planar​/folder​/create`, postParams);
 }
 
 // 删除文件夹
 export function folderDelete(postParams: any): any {
-    return httputils.postJson(`${baseApi}/planar​/folder​/delete`, postParams)
+    return httputils.postJson(`${baseApi}/planar​/folder​/delete`, postParams);
 }
 
 // 修改文件夹信息
 export function folderUpdate(postParams: any): any {
-    return httputils.postJson(`${baseApi}/planar​/folder​/update`, postParams)
+    return httputils.postJson(`${baseApi}/planar​/folder​/update`, postParams);
 }
 
 // 查询文件夹信息
 export function folderQuery(postParams: any): any {
-    return httputils.postJson(`${baseApi}/planar/folder/query`, postParams)
-}
+    return httputils.postJson(`${baseApi}/planar/folder/query`, postParams);
+}
+
+/**
+ * 未发布的平面图接口
+ */
+// 未发布 - 创建单个平面图
+export function planarCreate(postParams: any): any {
+    return httputils.postJson(`${baseApi}/planar/graph/drafts/create`, postParams);
+}
+// 未发布 - 发布平面图
+export function planerPublish(postParams: any): any {
+    return httputils.postJson(`${baseApi}/planar/graph/drafts/publish`, postParams);
+}
+// 未发布 - 查询平面图信息
+export function planerQuery(postParams: any): any {
+    return httputils.postJson(`${baseApi}​/planar​/graph​/drafts​/query`, postParams);
+}
+// 未发布 - 移至回收站
+export function planerRecycle(postParams: any): any {
+    return httputils.postJson(`${baseApi}​/planar/graph/drafts/recycle`, postParams);
+}
+// 未发布 - 更新平面图信息
+export function planerUpdate(postParams: any): any {
+    return httputils.postJson(`${baseApi}​/planar/graph/drafts/update`, postParams);
+}
+
+/**
+ * 已发布的平面图接口
+ */
+// 已发布 - 查询平面图信息
+export function pubPlanerQuery(postParams: any): any {
+    return httputils.postJson(`${baseApi}/planar/graph/pub/query`, postParams);
+}
+// 已发布 - 移至回收站
+export function pubPlanerRecycle(postParams: any): any {
+    return httputils.postJson(`${baseApi}/planar/graph/pub/recycle`, postParams);
+}
+// 已发布 - 更新平面图信息
+export function pubPlanerUpdate(postParams: any): any {
+    return httputils.postJson(`${baseApi}/planar/graph/pub/update`, postParams);
+}

+ 6 - 6
src/components/editview/addEquipmentDialog.vue

@@ -6,7 +6,7 @@
         <el-dialog custom-class="equipment-detail-dialog" title="添加显示实例" :visible.sync="dialogTableVisible">
             <div class="header">
                 <span>选择设备:</span>
-                <Cascader caption="设备实例范围:" multiple :data="cascaderData1" showPanel width="300"></Cascader>
+                <Cascader caption="设备实例范围:" multiple excludeTop :data="cascaderData1" showPanel width="260"></Cascader>
             </div>
         </el-dialog>
     </div>
@@ -25,25 +25,25 @@ export default {
             cascaderData1: [
                 {
                     title: "1",
-                    code: "1code",
+                    id: "1code",
                     children: [
                         {
                             title: "1_1",
-                            code: "1_1code",
+                            id: "1_1code",
                         },
                         {
                             title: "1_2",
-                            code: "1_2code",
+                            id: "1_2code",
                         },
                     ],
                 },
                 {
                     title: "2",
-                    code: "2code",
+                    id: "2code",
                     children: [
                         {
                             title: "2_1",
-                            code: "2_1code",
+                            id: "2_1code",
                         },
                     ],
                 },

+ 10 - 16
src/components/homeView/deleteDialog.vue

@@ -10,6 +10,7 @@
 
 <script>
 import { deleteDraftsGraph, deletePubGraph } from "@/api/home";
+import { planerRecycle, pubPlanerRecycle } from "@/api/labsl";
 export default {
     props: {
         isPub: {
@@ -25,34 +26,27 @@ export default {
     },
     methods: {
         showDialog(data) {
+            console.log("删除卡片数据:");
+            console.log(data);
             this.dialogVisible = true;
             this.data = data;
         },
         // 确认修改
-        confirm() {
+        async confirm() {
             if (!this.data.length) {
                 return;
             }
-            const pa = this.data.map((t) => {
-                return {
-                    id: t.id,
-                    graphId: t.graphId,
-                };
+            const pa = this.data.map(({ id, graphId }) => {
+                return { id, graphId };
             });
-            this.updateCall({
-                result: "success",
-            });
-            return;
             if (this.isPub) {
                 // 已发布
-                deletePubGraph(pa).then((res) => {
-                    this.updateCall(res);
-                });
+                let res = pubPlanerRecycle(pa);
+                this.updateCall(res);
             } else {
                 // 未发布
-                deleteDraftsGraph(pa).then((res) => {
-                    this.updateCall(res);
-                });
+                let res = planerRecycle(pa);
+                this.updateCall(res);
             }
         },
         // 更新成功回调

+ 14 - 5
src/components/homeView/move.vue

@@ -14,6 +14,7 @@
 
 <script>
 import { queryCategoryGraph, updateDraftsGraph, updatePubGraph } from "@/api/home";
+import { folderQuery, planerUpdate, pubPlanerUpdate } from "@/api/labsl";
 export default {
     props: {
         isPub: {
@@ -50,15 +51,23 @@ export default {
             ],
         };
     },
+    watch: {
+        /**
+         * move组件显示时,查询文件夹列表接口
+         */
+        dialogVisible(newV) {
+            newV && this.init();
+        },
+    },
     mounted() {
         this.init();
     },
     methods: {
-        init() {
-            // TODO: 查询文件夹
-            queryCategoryGraph({ switch: true }).then((res) => {
-                this.options = res.content;
-            });
+        async init() {
+            console.log("moveCom init methods");
+            // 查询文件夹
+            let res = await folderQuery({ switch: true });
+            res.content && (this.options = res.content);
         },
         /**
          * 展示弹窗

+ 7 - 7
src/components/homeView/rename.vue

@@ -12,6 +12,7 @@
 
 <script>
 import { updateDraftsGraph, updatePubGraph } from "@/api/home";
+import { planerUpdate, pubPlanerUpdate } from "@/api/labsl";
 export default {
     props: {
         isPub: {
@@ -34,7 +35,7 @@ export default {
             this.data = data;
         },
         // 确认修改
-        confirm() {
+        async confirm() {
             const newName = this.input.trim();
             if (!newName) {
                 return;
@@ -49,16 +50,15 @@ export default {
                 ],
                 projection: ["name"],
             };
+            console.log(this.isPub);
             if (this.isPub) {
                 // 已发布
-                updatePubGraph(pa).then((res) => {
-                    this.updateCall(res);
-                });
+                let res = await pubPlanerUpdate(pa);
+                this.updateCall(res);
             } else {
                 // 未发布
-                updateDraftsGraph(pa).then((res) => {
-                    this.updateCall(res);
-                });
+                let res = planerUpdate(pa);
+                this.updateCall(res);
             }
         },
         // 更新成功回调

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

@@ -25,7 +25,7 @@
 </template>
 
 <script>
-import { updatePubGraph } from "@/api/home";
+import { pubPlanerUpdate } from "@/api/labsl";
 export default {
     props: {
         isPub: {
@@ -68,7 +68,7 @@ export default {
             this.inputValue = "";
         },
         // 确认修改
-        confirm() {
+        async confirm() {
             const pa = {
                 content: [
                     {
@@ -81,9 +81,8 @@ export default {
             };
             if (this.isPub) {
                 // 已发布
-                updatePubGraph(pa).then((res) => {
-                    this.updateCall(res);
-                });
+                let res = await pubPlanerUpdate(pa);
+                this.updateCall(res);
             }
         },
         // 更新成功回调