Forráskód Böngészése

'底图样式修改'

zhangyu 4 éve
szülő
commit
c0ec871c29
2 módosított fájl, 17 hozzáadás és 17 törlés
  1. 3 3
      package.json
  2. 14 14
      src/components/editview/basePlanEditer.vue

+ 3 - 3
package.json

@@ -18,11 +18,11 @@
   },
   "dependencies": {
     "@persagy-web/base": "2.2.1",
-    "@persagy-web/big": "2.2.30",
+    "@persagy-web/big": "2.2.31",
     "@persagy-web/draw": "2.2.8",
-    "@persagy-web/graph": "2.2.31",
+    "@persagy-web/graph": "2.2.32",
     "@persagy-web/big-edit": "2.2.4",
-    "@persagy-web/edit": "2.2.2",
+    "@persagy-web/edit": "2.2.3",
     "@types/uuid": "^8.0.0",
     "ant-design-vue": "^1.6.5",
     "axios": "^0.20.0",

+ 14 - 14
src/components/editview/basePlanEditer.vue

@@ -31,26 +31,26 @@ export default {
             default: () => {
                 return {
                     default: {
-                        stroke: "#F0F3F7",
-                        fill: "#F0F3F7",
+                        strokeColor: "#F0F3F7",
+                        fillColor: "#F0F3F7",
                         lineWidth: 1,
                         effect: {},
                     },
                     selected: {
-                        stroke: "#000000",
-                        fill: "#e1f3fe",
+                        strokeColor: "#000000",
+                        fillColor: "#ff0000",
                         lineWidth: 100,
                         effect: {},
                     },
                     disabled: {
-                        stroke: "#2b2b2b",
-                        fill: "#afafaf",
+                        strokeColor: "#2b2b2b",
+                        fillColor: "#afafaf",
                         lineWidth: 1,
                         effect: {},
                     },
                     highlight: {
-                        stroke: "#2b2b2b",
-                        fill: "#fbb029",
+                        strokeColor: "#2b2b2b",
+                        fillColor: "#fbb029",
                         lineWidth: 1,
                         effect: {},
                     },
@@ -164,7 +164,7 @@ export default {
                 //是否显示空间
                 // t.visible = this.isSpaceSelectable;
                 //设置样式
-                t = { ...this.baseMapStyle.selected };
+                Object.assign(t, this.baseMapStyle.default)
                 //是否展示名称
                 // t.showBaseName = this.showBaseName;
                 // 是否可选
@@ -175,35 +175,35 @@ export default {
                 this.scene.addItem(t);
             });
             parser.wallList.forEach((t) => {
-                //是否显示
+                // 是否显示
                 // t.visible = this.isShowWall;
                 // 是否可选
                 // t.selectable = true;
                 this.scene.addItem(t);
             });
             parser.virtualWallList.forEach((t) => {
-                //是否显示
+                // 是否显示
                 // t.visible = this.isShowVirtualWall;
                 // 是否可选
                 // t.selectable = true;
                 this.scene.addItem(t);
             });
             parser.doorList.forEach((t) => {
-                //是否显示
+                // 是否显示
                 // t.visible = this.isShowDoor;
                 // 是否可选
                 // t.selectable = true;
                 this.scene.addItem(t);
             });
             parser.columnList.forEach((t) => {
-                //是否显示
+                // 是否显示
                 // t.visible = this.isShowColumn;
                 // 是否可选
                 // t.selectable = true;
                 this.scene.addItem(t);
             });
             parser.casementList.forEach((t) => {
-                //是否显示
+                // 是否显示
                 // t.visible = this.isShowWindow;
                 // 是否可选
                 // t.selectable = true;