Browse Source

'update_2020.12.15'

zhangyu 4 years ago
parent
commit
7c704cb620

+ 11 - 25
src/components/editview/basePlanEditer.vue

@@ -13,7 +13,7 @@
 <script>
 import { SFloorParser, getJsonz } from "@persagy-web/big";
 import { SImageItem, SImageShowType } from "@persagy-web/graph";
-import { SPlanView, SPlanParser, SPlanScene, SPlanEquipment } from "@/lib";
+import { SPlanView, SPlanParser, SPlanScene, SPlanDecorator, SPlanEquipment } from "@/lib";
 import { SBaseEquipment } from "@/components/editClass/big-edit";
 import topoTooltip from "./topoTooltip.vue";
 import { mapState, mapMutations } from "vuex";
@@ -42,19 +42,7 @@ export default {
                 };
             },
             required: false,
-        },
-        // 设备默认样式
-        defaultEquipStyle: {
-            type: Object,
-            default: () => {
-                return {
-                    color: "#1F2429",
-                    size: 12,
-                    url: "tognyong2020102700.svg",
-                    formula: "",
-                };
-            },
-        },
+        }
     },
     data() {
         return {
@@ -81,6 +69,7 @@ export default {
             "buildingId",
             "floorId",
             "objExtInfo",
+            "styleMap",
         ]),
     },
     mounted() {
@@ -387,12 +376,9 @@ export default {
             // 保存样式信息
             if (res.content.style) {
                 // 拼接设备默认样式
-                res.content.style.defaultEquipStyle = this.defaultEquipStyle;
                 this.INITSTYLE(res.content.style);
             } else {
-                const style = {
-                    defaultEquipStyle: this.defaultEquipStyle
-                }
+                const style = {};
                 this.INITSTYLE(style);
             }
 
@@ -491,13 +477,13 @@ export default {
                     equipItem.moveable = true;
                     equipItem.connect("finishCreated", this.scene, this.scene.finishCreated);
                     equipItem.connect("onContextMenu", this, this.scene.getItem);
-                    // if (this.style[equip.id]) {
-                    //     Object.assign(equipItem, this.style[equip.id]);
-                    // } else if (this.style[equip.classCode]) {
-                    //     Object.assign(equipItem, this.style[equip.calssCode]);
-                    // } else {
-                    //     Object.assign(equipItem, this.style["defaultEquipStyle"]);
-                    // }
+                    if (this.styleMap[equip.id]) {
+                        SPlanDecorator.equipDecorator(equipItem, this.styleMap[equip.id]);
+                    } else if (this.styleMap[equip.classCode]) {
+                        SPlanDecorator.equipDecorator(equipItem, this.styleMap[equip.calssCode]);
+                    } else {
+                        SPlanDecorator.equipDecorator(equipItem, this.styleMap["defaultEquipStyle"]);
+                    }
                     this.scene.addItem(equipItem);
                     this.ADDEQUIP(equipItem);
                 }

+ 6 - 3
src/lib/SPlanDecorator.ts

@@ -24,6 +24,7 @@
  * ****/
 
 import { SColor, SFont } from "@persagy-web/draw";
+import { imgBaseUrl } from "@/api/imageservice";
 import { SPlanEquipment, Style } from ".";
 
 /**
@@ -38,15 +39,17 @@ export class SPlanDecorator {
      * @param equipItem    设备元素
      * @param style    样式数据
      */
-    equipDecorator(equipItem: SPlanEquipment, style: Style): void {
+    static equipDecorator(equipItem: SPlanEquipment, style: Style): void {
         // 设置设备字体颜色
         if (style.color) equipItem.color = new SColor(style.color);
         // 设置设备字体大小
         if (style.size) equipItem.font = new SFont("sans-serif", style.size);
         // 设置图片地址
-        if (style.url) equipItem.url = style.url;
+        if (style.url) {
+            equipItem.url = `${imgBaseUrl}${style.url}`;
+            equipItem.defaultUrl = style.url;
+        }
         // 设置设备公式
         if (style.formula) equipItem.formula = style.formula;
-        
     }
 }

+ 2 - 0
src/lib/item/SPlanEquipment.ts

@@ -44,6 +44,8 @@ export class SPlanEquipment extends SBaseIconTextEdit {
         return this._legendData;
     } // get legendData()
 
+    // 文件服务器key值
+    defaultUrl: string = "";
     /** 图例url */
     private _url: string = "";
     set url(val) {

+ 26 - 5
src/store/index.ts

@@ -30,7 +30,7 @@ export default new Vuex.Store({
         equipItemNum: 0, // 图上相关的设备的数量
         zoneIteMap: {}, // 图上相关的空间实例
         zoneItemNum: 0, // 图上相关的空间实例的数量
-        style: {}, // 样式库信息
+        styleMap: {}, // 样式库信息
         objExtInfo: {}, // 设备位置信息
     },
     mutations: {
@@ -44,7 +44,19 @@ export default new Vuex.Store({
         },
         // 设置项目信息
         SETPROJECT(state, data) {
-            const arr = ["name", "folderId", "folderName", "buildingId", "floorId", "floorMap", "floorLocalName", "id", "graphId", "state", "version"];
+            const arr = [
+                "name",
+                "folderId",
+                "folderName",
+                "buildingId",
+                "floorId",
+                "floorMap",
+                "floorLocalName",
+                "id",
+                "graphId",
+                "state",
+                "version",
+            ];
             arr.map((key) => {
                 // 对传入的参数进行修改
                 if (data[key] !== undefined) {
@@ -92,12 +104,21 @@ export default new Vuex.Store({
         },
         // 初始化样式库信息
         INITSTYLE(state, data) {
-            state.style = data;
+            // 设备默认样式
+            data.defaultEquipStyle = {
+                color: "#1F2429",
+                size: 12,
+                url: "tognyong2020102700.svg",
+                formula: "设备实例",
+            };
+            state.styleMap = data;
         },
         // 添加样式信息
         ADDSTYLE(state, data) {
-            // const {id, style} = {...data}
-            // state.style[data.id] = style
+            // @ts-ignore
+            const { id, style } = { ...data };
+            // @ts-ignore
+            state.styleMap[id] = style;
         },
         // 增加设备实例item
         ADDEQUIP(state, item): void {

+ 1 - 1
vue.config.js

@@ -31,7 +31,7 @@ module.exports = {
             },
             // 图片服务器
             "/image-service": {
-                target: "http://adm.sagacloud.cn",
+                target: "http://api.sagacloud.cn",
                 changeOrigin: true,
                 secure: false,
             },