Browse Source

Merge branch 'develop' of http://39.106.8.246:3003/web/wanda-editer into develop

YaolongHan 4 years ago
parent
commit
def262d04d
3 changed files with 19 additions and 8 deletions
  1. 1 1
      src/api/editer.js
  2. 3 1
      src/components/baseEditer.vue
  3. 15 6
      src/components/mapClass/EditScence.ts

+ 1 - 1
src/api/editer.js

@@ -103,7 +103,7 @@ export function graphElementSearch(params){
 }
 // 图例搜索(提取用)
 export function graphElementQuery(params){
-    return httputils.postJson(`${testApi}/graphElement/query`, params)
+    return httputils.postJson(`${testApi}/graphElement/search`, params)
 }
 //草稿箱原理图删除
 export function deleteByCategory(params){

+ 3 - 1
src/components/baseEditer.vue

@@ -78,7 +78,9 @@ export default {
     this.init();
     // 挂在bus
     this.getBus();
-    store.dispatch("getGraphElement", { PageSize: 1000 });
+    if (this.urlMsg.categoryId) {
+      store.dispatch("getGraphElement", { PageSize: 1000, Deleted: false, GraphCategoryIds:[this.urlMsg.categoryId] });
+    }
     window.vm = this;
     const that = this;
     document.onkeydown = function(event) {

+ 15 - 6
src/components/mapClass/EditScence.ts

@@ -1186,13 +1186,17 @@ export class EditScence extends SGraphScene {
         parserData.parseData(JSON.parse(JSON.stringify(this.copyString)))
         // 不需要复制区域
         // parserData.zoneLegendList.forEach(t => {
-        //     if (this.view) {
-        //         t.pos.x += 10 / this.view.scale
-        //         t.pos.y += 10 / this.view.scale
+        //     if (t instanceof SCustomLegendItem) {
+        //         if (this.view) {
+        //             t.pos.x += 10 / this.view.scale
+        //             t.pos.y += 10 / this.view.scale
+        //         }
+        //         this.addItem(t)
+        //         this.Nodes.push(t);
+        //         graphItemList.push(t)
         //     }
-        //     this.addItem(t)
-        // // 加到node
-        // // 加命令
+        //  // 加到node
+        //  // 加命令
         // })
         const graphItemList = [];
         parserData.imageLegendList.forEach(t => {
@@ -1200,6 +1204,7 @@ export class EditScence extends SGraphScene {
                 t.pos.x += 10 / this.view.scale
                 t.pos.y += 10 / this.view.scale
             }
+            t.moveable = true;
             this.addItem(t)
             this.Nodes.push(t);
             graphItemList.push(t)
@@ -1209,6 +1214,7 @@ export class EditScence extends SGraphScene {
                 t.pos.x += 10 / this.view.scale
                 t.pos.y += 10 / this.view.scale
             }
+            t.moveable = true;
             this.addItem(t)
             this.Markers.push(t);
             graphItemList.push(t)
@@ -1218,6 +1224,7 @@ export class EditScence extends SGraphScene {
                 t.pos.x += 10 / this.view.scale
                 t.pos.y += 10 / this.view.scale
             }
+            t.moveable = true;
             this.addItem(t)
             this.Markers.push(t);
             graphItemList.push(t)
@@ -1227,6 +1234,7 @@ export class EditScence extends SGraphScene {
                 t.pos.x += 10 / this.view.scale
                 t.pos.y += 10 / this.view.scale
             }
+            t.moveable = true;
             this.addItem(t)
             this.Markers.push(t);
             graphItemList.push(t)
@@ -1237,6 +1245,7 @@ export class EditScence extends SGraphScene {
                 t.pos.y += 10 / this.view.scale
                 t.moveToOrigin(t.pos.x, t.pos.y)
             }
+            t.moveable = true;
             this.addItem(t)
             this.Relations.push(t);
             graphItemList.push(t)