Explorar o código

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

YaolongHan %!s(int64=4) %!d(string=hai) anos
pai
achega
4d8d0dc83f
Modificáronse 3 ficheiros con 112 adicións e 14 borrados
  1. 5 5
      package.json
  2. 5 0
      src/components/baseEditer.vue
  3. 102 9
      src/components/mapClass/EditScence.ts

+ 5 - 5
package.json

@@ -8,11 +8,11 @@
     "lint": "vue-cli-service lint"
   },
   "dependencies": {
-    "@saga-web/base": "2.1.24",
-    "@saga-web/big": "1.0.97",
-    "@saga-web/draw": "2.1.105",
-    "@saga-web/feng-map": "1.0.31",
-    "@saga-web/graph": "2.1.118",
+    "@saga-web/base": "2.1.25",
+    "@saga-web/big": "1.0.100",
+    "@saga-web/draw": "2.1.106",
+    "@saga-web/feng-map": "1.0.35",
+    "@saga-web/graph": "2.1.119",
     "ant-design-vue": "^1.6.0",
     "core-js": "^3.6.4",
     "element-ui": "^2.13.2",

+ 5 - 0
src/components/baseEditer.vue

@@ -109,6 +109,11 @@ export default {
         this.scene.setCmd = "choice";
       }
     };
+    // 监听粘贴事件
+    // document.onpaste = e =>{
+    //   const text = e.clipboardData.getData('Text')
+    //   this.scene.crossPagePaste(text)
+    // }
     // 自动保存(时间差为一分钟)
     this.autoSave = setInterval(() => {
       this.saveMsgNoMessage();

+ 102 - 9
src/components/mapClass/EditScence.ts

@@ -752,8 +752,9 @@ export class EditScence extends SGraphScene {
             ) {
                 let arr = item.data.AttachObjectIds;
                 if (arr && arr.length && arr[arr.length - 1].name) {
-                    item.text = arr[arr.length - 1].name;
-                    item.name = arr[arr.length - 1].name;
+                    let name = item.name;
+                    item.name = name + `\n${arr[arr.length - 1].name}`;
+                    item.text = name + `\n${arr[arr.length - 1].name}`;
                 }
                 // 绑定工程信息化数据后设置状态
                 if (item.data.AttachObjectIds && item.data.AttachObjectIds.length) {
@@ -1154,13 +1155,6 @@ export class EditScence extends SGraphScene {
      *
      */
     copy(){
-        // const input = document.createElement('input');
-        // console.log(1111111111111111111)
-        // input.value = 'sfsfsfsf'
-        // document.body.appendChild(input);
-        // input.select()
-        // document.execCommand('copy');
-        // input.style.display='none';
         if (this.selectContainer.itemList.length) {
             this.copyString = {
                 Nodes: [],
@@ -1178,7 +1172,19 @@ export class EditScence extends SGraphScene {
                     this.copyString[type].push(data)
                 }
             })
+            // 生成复制字符串
             console.log(this.copyString)
+            return
+            // 获取input dom
+            const input = document.createElement('input');
+            input.setAttribute('id', 'COPYINPUT')
+            input.value = JSON.stringify(this.copyString)
+            document.body.appendChild(input);
+            input.select()
+            document.execCommand('copy');
+            input.style.display='none';
+            console.log(input.value, Date.now());
+            document.body.removeChild(input)
         }
     }
 
@@ -1262,6 +1268,93 @@ export class EditScence extends SGraphScene {
         }
     }
 
+    /**
+     * 跨页面粘贴
+     *
+     */
+    crossPagePaste(crossPageString: string){
+        try {
+            console.log(crossPageString);
+            const pageObj = JSON.parse(crossPageString)
+            
+            const parserData = new STopologyParser(null);
+            // 需要深拷贝
+            parserData.parseData(JSON.parse(JSON.stringify(pageObj)))
+            // 不需要复制区域
+            // parserData.zoneLegendList.forEach(t => {
+            //     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)
+            //     }
+            //  // 加到node
+            //  // 加命令
+            // })
+            const graphItemList = [];
+            parserData.imageLegendList.forEach(t => {
+                if (this.view) {
+                    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)
+            })
+            parserData.imageMarkerList.forEach(t => {
+                if (this.view) {
+                    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)
+            })
+            parserData.lineMarkerList.forEach(t => {
+                if (this.view) {
+                    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)
+            })
+            parserData.textMarkerList.forEach(t => {
+                if (this.view) {
+                    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)
+            })
+            parserData.relationList.forEach(t => {
+                if (this.view) {
+                    t.pos.x += 10 / this.view.scale
+                    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)
+            })
+            this.scenceUpdate(this);
+            if (graphItemList.length) {
+                this.AddListCommand(graphItemList)
+            }
+        } catch (e) {
+            console.log(e);
+        }
+    }
+
     /** 类型转换    */
     itemToType(obj:SGraphItem):String{
         if (obj instanceof STextMarkerItem) {