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
1bbf1a40e8

+ 26 - 8
package-lock.json

@@ -1068,13 +1068,31 @@
       "resolved": "http://192.168.200.80:8081/repository/npm-saga/@saga-web/big/-/big-1.0.48.tgz",
       "integrity": "sha512-ql3Hglt9HcdbtoJ2v5k6vEs4ECvDTQoBvILLh22K4ByEc26k9kLITISDjQx2l5tL19HSQ8nr0RH2fi9UHY9e9A==",
       "requires": {
-        "@saga-web/graph": "2.1.91"
+        "@saga-web/graph": "2.1.92"
+      },
+      "dependencies": {
+        "@saga-web/draw": {
+          "version": "2.1.99",
+          "resolved": "http://192.168.200.80:8081/repository/npm-saga/@saga-web/draw/-/draw-2.1.99.tgz",
+          "integrity": "sha512-DEcgIZRVfCeCTaXCxO2qwisttApo/gz5Acs9Z16+nAQ/OUAZFj083qkwY40BmHFzsy27RFEi1l/zy5+lyJe8eQ==",
+          "requires": {
+            "@saga-web/base": "^2.1.22"
+          }
+        },
+        "@saga-web/graph": {
+          "version": "2.1.92",
+          "resolved": "http://192.168.200.80:8081/repository/npm-saga/@saga-web/graph/-/graph-2.1.92.tgz",
+          "integrity": "sha512-r/oGwf8TdZUg0IKXAkgkn9I49Sihju6qz8GOr4sjuvOdJdrCLz3/hq30EPQ2g2p7S5yxMyyk5MbQxZF2Ezx62w==",
+          "requires": {
+            "@saga-web/draw": "2.1.99"
+          }
+        }
       }
     },
     "@saga-web/draw": {
-      "version": "2.1.98",
-      "resolved": "http://192.168.200.80:8081/repository/npm-saga/@saga-web/draw/-/draw-2.1.98.tgz",
-      "integrity": "sha512-ZoMEQPpZknHeAuGwc2s6NHbZhEvGrk9TTv3t8y2JYOEXPtySuSs3wJnhk+LX09EiqsYoK2jDoxYeleM9LXVE/Q==",
+      "version": "2.1.100",
+      "resolved": "http://192.168.200.80:8081/repository/npm-saga/@saga-web/draw/-/draw-2.1.100.tgz",
+      "integrity": "sha512-NQkIE2+oQPlOYwNajkIqeCJgKxERBlnC9/nA8w5KzM70UmLoYoExsMvsyV8qOu3o6a9xtPPdyZUe3hOBJyZ1UQ==",
       "requires": {
         "@saga-web/base": "^2.1.22"
       }
@@ -1115,11 +1133,11 @@
       }
     },
     "@saga-web/graph": {
-      "version": "2.1.91",
-      "resolved": "http://192.168.200.80:8081/repository/npm-saga/@saga-web/graph/-/graph-2.1.91.tgz",
-      "integrity": "sha512-wMMufmOKa8VjBP9qcM7n4V6CMfa3Wj5PDasqT30rqFfbkHAw1YzKFHJp//85bZue8D3nSi53STYWmby4a/KZqg==",
+      "version": "2.1.93",
+      "resolved": "http://192.168.200.80:8081/repository/npm-saga/@saga-web/graph/-/graph-2.1.93.tgz",
+      "integrity": "sha512-M8DYminPBzc4wgzCkNcPUCakC/rQp10HaMwv+TcjhIrsJJT3NL9GG61ksh5IUe3zSdh6Y0QDekCV3zvFc+5hRg==",
       "requires": {
-        "@saga-web/draw": "2.1.98"
+        "@saga-web/draw": "2.1.100"
       }
     },
     "@saga-web/graphy": {

+ 3 - 3
package.json

@@ -9,10 +9,10 @@
   },
   "dependencies": {
     "@saga-web/base": "2.1.22",
-    "@saga-web/big": "1.0.48",
-    "@saga-web/draw": "2.1.98",
+    "@saga-web/big": "1.0.50",
+    "@saga-web/draw": "2.1.100",
     "@saga-web/feng-map": "1.0.11",
-    "@saga-web/graph": "2.1.91",
+    "@saga-web/graph": "2.1.93",
     "@saga-web/topology": "1.0.84",
     "ant-design-vue": "^1.6.0",
     "core-js": "^3.6.4",

+ 42 - 7
src/components/edit/right_toolbar.vue

@@ -15,8 +15,8 @@
                 :suffix="item.unit"
               />
             </li>
-            <li>
-              <img class="lock" :src="require(`./../../assets/images/t-lock.png`)" alt />
+            <li @click="lockItem" :title="isLock?'锁定':'解锁'">
+              <Icon style="vertical-align: middle;" :name="isLock?'lock':'unlock'" />
             </li>
           </ul>
           <attrSelect v-show="attrType" :type="attrType" :focusItemList="focusItemList" />
@@ -97,6 +97,8 @@ export default {
       attrType: "",
       elementData: [],
       key: "",
+      isLock: false,
+      aspectRatio: 1,// 元素宽高比
     };
   },
   methods: {
@@ -123,11 +125,40 @@ export default {
     onSearch(key) {
       console.log(key);
     },
+    // 切换锁状态
+    lockItem() {
+      this.isLock = !this.isLock;
+      if (this.isLock) {
+        let width,height;
+        this.msgList.forEach(item => {
+          if (item.name == "Width") {
+            width = item.msg;
+          } else if (item.name == "Height") {
+            height = item.msg;
+          }
+        });
+        this.aspectRatio = width / height;
+      }
+    },
     // 改变状态
     changeStatus(item) {
       if (item.name == "Width") {
+        if (this.isLock) {
+          const height = item.msg / this.aspectRatio;
+          this.msgList.find(item => {
+            return item.name == "Height"
+          }).msg = height;
+          bus.$emit("itemHeight", height);
+        }
         bus.$emit("itemWidth", item.msg);
       } else if (item.name == "Height") {
+        if (this.isLock) {
+          const width = item.msg * this.aspectRatio;
+          this.msgList.find(item => {
+            return item.name == "Width"
+          }).msg = width;
+          bus.$emit("itemWidth", width);
+        }
         bus.$emit("itemHeight", item.msg);
       } else if (item.name == "X" || item.name == "Y") {
         let x,
@@ -161,9 +192,13 @@ export default {
             item.msg = 0;
           }
         });
+        this.aspectRatio = 1;
       } else {
         this.msgList.forEach(item => {
           const Item = newVal.itemList[0];
+          const width = Item.boundingRect().width;
+          const height = Item.boundingRect().height;
+          this.aspectRatio = width / height;
           if (item.name == "X") {
             item.msg = Item.mapToScene(
               Item.boundingRect().left,
@@ -177,9 +212,9 @@ export default {
             ).y;
           }
           if (item.name == "Width") {
-            item.msg = Item.boundingRect().width;
-            // 针对icon 以及图片
-            if (Item instanceof SImageMarkerItem || Item instanceof SImageLegendItem) {
+            item.msg = width;
+            // 针对图片
+            if (Item instanceof SImageMarkerItem) {
               item.disable = false;
               // item.msg = Item.width;
             } else {
@@ -187,8 +222,8 @@ export default {
             }
           }
           if (item.name == "Height") {
-            item.msg = Item.boundingRect().height;
-            if (Item instanceof SImageMarkerItem || Item instanceof SImageLegendItem) {
+            item.msg = height;
+            if (Item instanceof SImageMarkerItem) {
               item.disable = false;
               // item.msg = Item.height;
             } else {

+ 1 - 1
src/components/mapClass/EditScence.ts

@@ -283,7 +283,7 @@ export class EditScence extends SGraphScene {
                     FillColor: this._legend.FillColor,
                     LineDash: this._legend.LineDash,
                     LineWidth: this._legend.LineWidth,
-                    font: 0,
+                    font: 12,
                     color: '',
                     TextPos: { X: item.data.Location.Points[0].X, Y: -item.data.Location.Points[0].Y }
                 },

+ 8 - 9
src/lib/items/SFHFQZoneLegendItem.ts

@@ -25,11 +25,11 @@ export class SFHFQZoneLegendItem extends SPolygonItem {
         this.textItem.text = v;
         this.update();
     }
-    get color(): string {
+    get color(): SColor {
         return this.textItem.color;
     }
-    set color(v: string) {
-        this.textItem.color = v
+    set color(v: SColor) {
+        this.textItem.color = v;
     }
     get font(): SFont {
         return this.textItem.font
@@ -111,7 +111,6 @@ export class SFHFQZoneLegendItem extends SPolygonItem {
         this.id = data.ID;
         this.name = data.Name;
         this.text = data.Name;
-        this.font = new SFont("sans-serif", 2);
         if (data) {
             this.setPointList = [];
             let setPointList: SPoint[];
@@ -133,13 +132,13 @@ export class SFHFQZoneLegendItem extends SPolygonItem {
                 this.strokeColor = data.Properties.StrokeColor.includes('#') ? new SColor(data.Properties.StrokeColor) : new SColor(hexify(data.Properties.StrokeColor));
             }
             if (data.Properties.FillColor) {
-                this.fillColor = data.Properties.FillColor.includes('#') ? new SColor(data.Properties.FillColor) : new SColor(hexify(data.Properties.FillColor))
+                this.fillColor = data.Properties.FillColor.includes('#') ? new SColor(data.Properties.FillColor) : new SColor(hexify(data.Properties.FillColor));
             }
             if (data.Properties.TextPos) {
                 this.textItem.moveTo(data.Properties.TextPos.X, data.Properties.TextPos.Y);
             }
             if (data.Properties.color) {
-                this.color = data.Properties.color
+                this.color = new SColor(data.Properties.color);
             }
             if (data.Properties.font) {
                 this.font = new SFont("sans-serif", data.Properties.font);
@@ -173,9 +172,9 @@ export class SFHFQZoneLegendItem extends SPolygonItem {
                 Y: pos.y
             }
         });
-        this.data.Properties.TextPos = { X: this.textItem.x, Y: this.textItem.y };
-        this.data.Properties.font = this.font.size;
-        this.data.Properties.color = this.color;
+        this.data.Properties.TextPos = {X: this.textItem.x, Y: this.textItem.y};
+        this.data.Properties.font =  this.font.size;
+        this.data.Properties.color =  this.color.value;
         return this.data;
     }
 

+ 3 - 3
src/lib/items/SImageLegendItem.ts

@@ -3,7 +3,7 @@ import { SGraphItem } from "@saga-web/graph/lib";
 import { SIconTextItem } from '@saga-web/big/lib/items/SIconTextItem';
 import { Legend } from '../types/Legend';
 import { ItemOrder } from '@saga-web/big/lib';
-import { SFont } from '@saga-web/draw/lib';
+import { SFont, SColor } from '@saga-web/draw/lib';
 /**
  * 图例节点Item(图标类型)
  *
@@ -66,7 +66,7 @@ export class SImageLegendItem extends SIconTextItem {
             this.font = new SFont("sans-serif", data.Properties.font);
         }
         if (data.Properties && data.Properties.color) {
-            this.color = data.Properties.color;
+            this.color = new SColor(data.Properties.color);
         }
     }
 
@@ -78,7 +78,7 @@ export class SImageLegendItem extends SIconTextItem {
         this.data.Properties.sWidth = this.sWidth;
         this.data.Properties.sHeight = this.sHeight;
         this.data.Properties.font = this.font.size;
-        this.data.Properties.color = this.color;
+        this.data.Properties.color = this.color.value;
 
         return this.data;
     }

+ 2 - 2
src/lib/items/SLineMarkerItem.ts

@@ -53,7 +53,7 @@ export class SLineMarkerItem extends SLineItem {
             this.lineStyle = data.Properties.LineStyle;
         }
         if (data.Properties && data.Properties.StrokeColor) {
-            this.strokeColor = data.Properties.StrokeColor;
+            this.strokeColor = new SColor(data.Properties.StrokeColor);
         }
     } // Constructor
 
@@ -66,7 +66,7 @@ export class SLineMarkerItem extends SLineItem {
             }
         });
         this.data.Properties.LineWidth = this.lineWidth;
-        this.data.Properties.StrokeColor = this.strokeColor;
+        this.data.Properties.StrokeColor = this.strokeColor.value;
         this.data.Properties.LineStyle = this.lineStyle;
         return this.data;
     }

+ 7 - 8
src/lib/items/SSCPZZoneLegendItem.ts

@@ -25,11 +25,11 @@ export class SSCPZZoneLegendItem extends SPolygonItem {
         this.textItem.text = v;
         this.update();
     }
-    get color(): string {
+    get color(): SColor {
         return this.textItem.color;
     }
-    set color(v: string) {
-        this.textItem.color = v
+    set color(v: SColor) {
+        this.textItem.color = v;
     }
     get font(): SFont {
         return this.textItem.font
@@ -119,7 +119,6 @@ export class SSCPZZoneLegendItem extends SPolygonItem {
         this.id = data.ID;
         this.name = data.Name;
         this.text = data.Name;
-        this.font = new SFont("sans-serif", 2);
         if (data) {
             this.setPointList = [];
             let setPointList: SPoint[];
@@ -147,7 +146,7 @@ export class SSCPZZoneLegendItem extends SPolygonItem {
                 this.textItem.moveTo(data.Properties.TextPos.X, data.Properties.TextPos.Y);
             }
             if (data.Properties.color) {
-                this.color = data.Properties.color
+                this.color = new SColor(data.Properties.color);
             }
             if (data.Properties.font) {
                 this.font = new SFont("sans-serif", data.Properties.font);
@@ -181,9 +180,9 @@ export class SSCPZZoneLegendItem extends SPolygonItem {
                 Y: pos.y
             }
         });
-        this.data.Properties.TextPos = { X: this.textItem.x, Y: this.textItem.y };
-        this.data.Properties.font = this.font.size;
-        this.data.Properties.color = this.color;
+        this.data.Properties.TextPos = {X: this.textItem.x, Y: this.textItem.y};
+        this.data.Properties.font =  this.font.size;
+        this.data.Properties.color =  this.color.value;
         return this.data;
     }
 

+ 9 - 10
src/lib/items/SZoneLegendItem.ts

@@ -24,17 +24,17 @@ export class SZoneLegendItem extends SPolygonItem {
         this.textItem.text = v;
         this.update();
     }
-    get color(): string {
+    get color(): SColor {
         return this.textItem.color;
     }
-    set color(v: string) {
-        this.textItem.color = v
+    set color(v: SColor) {
+        this.textItem.color = v;
     }
     get font(): SFont {
-        return this.textItem.font
+        return this.textItem.font;
     }
     set font(v: SFont) {
-        this.textItem.font = v
+        this.textItem.font = v;
     }
 
     get status(): SItemStatus {
@@ -110,7 +110,6 @@ export class SZoneLegendItem extends SPolygonItem {
         this.id = data.ID;
         this.name = data.Name;
         this.text = data.Name;
-        this.font = new SFont("sans-serif", 2);
         if (data) {
             this.setPointList = [];
             let setPointList: SPoint[];
@@ -139,7 +138,7 @@ export class SZoneLegendItem extends SPolygonItem {
                 this.textItem.moveTo(data.Properties.TextPos.X, data.Properties.TextPos.Y);
             }
             if (data.Properties.color) {
-                this.color = data.Properties.color
+                this.color = new SColor(data.Properties.color);
             }
             if (data.Properties.font) {
                 this.font = new SFont("sans-serif", data.Properties.font);
@@ -173,9 +172,9 @@ export class SZoneLegendItem extends SPolygonItem {
                 Y: pos.y
             }
         });
-        this.data.Properties.TextPos = { X: this.textItem.x, Y: this.textItem.y };
-        this.data.Properties.font = this.font.size;
-        this.data.Properties.color = this.color;
+        this.data.Properties.TextPos = {X: this.textItem.x, Y: this.textItem.y};
+        this.data.Properties.font =  this.font.size;
+        this.data.Properties.color =  this.color.value;
         return this.data;
     }
 

+ 2 - 2
src/lib/items/TipelineItem.ts

@@ -128,7 +128,7 @@ export class TipelineItem extends SPolylineItem {
       this._anchor2ID = data.Anchor2ID
     }
     if (data.Properties && data.Properties.Color) {
-      this.strokeColor = data.Properties.Color
+      this.strokeColor = new SColor(data.Properties.Color);
     }
     // if(data.Properties && data.Properties.LineDash){
     //   this.LineDash = data.Properties.LineDash
@@ -151,7 +151,7 @@ export class TipelineItem extends SPolylineItem {
       this.data.PointList = pointList;
       this.data.Properties.LineWidth = this.lineWidth;
       // this.data.Properties.LineDash = this.LineDash;
-      this.data.Properties.Color = this.strokeColor
+      this.data.Properties.Color = this.strokeColor.value;
     }
 
     return this.data