Browse Source

新增按钮 新增项目

YaolongHan 4 years ago
parent
commit
f5671dd0a5

+ 5 - 5
package.json

@@ -16,11 +16,11 @@
   },
   "dependencies": {
     "@persagy-web/base": "2.2.1",
-    "@persagy-web/big": "2.2.43",
-    "@persagy-web/draw": "2.2.10",
-    "@persagy-web/graph": "2.2.40",
-    "@persagy-web/big-edit": "2.2.22",
-    "@persagy-web/edit": "2.2.20",
+    "@persagy-web/big": "2.2.48",
+    "@persagy-web/draw": "2.2.12",
+    "@persagy-web/graph": "2.2.44",
+    "@persagy-web/big-edit": "2.2.24",
+    "@persagy-web/edit": "2.2.23",
     "@types/uuid": "^8.0.0",
     "ant-design-vue": "^1.6.5",
     "axios": "^0.20.0",

+ 22 - 1
public/systemConf.js

@@ -17,6 +17,27 @@ var __systemConf = {
         wantou: 'tognyong2020102700.svg',
         santong: '1612509481124.svg',
         sitong: '1612509615382.svg'
-    }
+    },
+    //引入项目
+    ProjectData: [
+        { id: "Pj1101050029", name: "东坝万达" },
+        { id: "Pj4403070003", name: "龙岗万达" },
+        { id: "Pj5001120003", name: "香港置地" },
+        { id: "Pj4403050019", name: "招商IOC" },
+        { id: "Pj0001110001", name: "飞龙商场" },
+
+        { id: "Pj0002220001", name: "数字化交付01" },
+        { id: "Pj0002220002", name: "数字化交付02" },
+        { id: "Pj0002220003", name: "数字化交付03" },
+        { id: "Pj0002220004", name: "数字化交付04" },
+        { id: "Pj0002220005", name: "数字化交付05" },
+
+        { id: "Pj0002220006", name: "数字化交付06" },
+        { id: "Pj0002220007", name: "数字化交付07" },
+        { id: "Pj0002220008", name: "数字化交付08" },
+        { id: "Pj0002220009", name: "数字化交付09" },
+        { id: "Pj00022200010", name: "数字化交付10" }
+
+    ] // 项目列表
 }
 window.__systemConf = __systemConf

BIN
src/assets/images/leftImgs/btn.png


BIN
src/assets/images/leftImgs/btnActive.png


+ 15 - 2
src/components/editClass/persagy-edit/PTopoFactory.ts

@@ -29,6 +29,7 @@ import { SArrowItem, SPolygonItem, SArrowPoly, SItemFactory, ItemOrder, SPolylin
 import { SGraphCircleItem, STextItem, SImageItem, SGraphLineItem } from "@persagy-web/graph/lib"
 import { SBaseInfoPoint } from "./items/SBaseInfoPoint"
 import { SBasePipeUninTool } from "./items/SBasePipeUninTool"
+import { SBaseBtns } from "./items/SBaseBtns"
 import { SLineStyle } from "@persagy-web/graph"
 import { BigEditFactory, Legend, Marker, Relation, ElementData } from "@persagy-web/big-edit"
 /**
@@ -52,7 +53,7 @@ export class PTopoFactory extends BigEditFactory {
      * @return 线
      */
     createBaseInfoPoint(data: Marker): SBaseInfoPoint {
-        const item = new SBaseInfoPoint(null,data);
+        const item = new SBaseInfoPoint(null, data);
         item.data = data;
         return item;
     }
@@ -64,7 +65,19 @@ export class PTopoFactory extends BigEditFactory {
      * @return 线
      */
     createBasePipeUninTool(data: Marker): SBasePipeUninTool {
-        const item = new SBasePipeUninTool(null,data);
+        const item = new SBasePipeUninTool(null, data);
+        item.data = data;
+        return item;
+    }
+
+    /**
+     * 创建按钮
+     *
+     * @param data  数据
+     * @return 线
+     */
+    createBaseBaseBtn(data: Marker): SBaseBtns {
+        const item = new SBaseBtns(null, data);
         item.data = data;
         return item;
     }

+ 3 - 0
src/components/editClass/persagy-edit/PTopoParser.ts

@@ -110,6 +110,9 @@ export class PTopoParser extends SParser {
                 case "BasePipeUninTool":
                     this.markers.push(this.factory.createBasePipeUninTool(data));
                     break;
+                case "baseBtn":
+                    this.markers.push(this.factory.createBaseBaseBtn(data));
+                    break;
                 case "BaseArrowPolygon":
                     this.markers.push(this.factory.createBasePolygonArrowEdit(data));
             }

+ 46 - 4
src/components/editClass/persagy-edit/PTopoScene.ts

@@ -32,7 +32,7 @@ import { rgbaNum } from "@persagy-web/big-edit/lib/until";
 // 引入命令
 import { SGraphAddCommand } from "@persagy-web/edit/lib/commands/SGraphAddCommand"
 import { SColor, SFont, SArrowStyleType } from '@persagy-web/draw/lib';
-import { PTopoParser, SBasePipeUninTool, SBaseEquation, SBaseInfoPoint } from "./"
+import { PTopoParser, SBasePipeUninTool, SBaseEquation, SBaseInfoPoint, SBaseBtns } from "./"
 import { ItemOrder } from '@persagy-web/big/lib';
 
 /**
@@ -113,7 +113,6 @@ export class PTopoScene extends SBaseEditScene {
                 this.setTipeEndanchor(event)
                 return true;
             }
-            console.log('this.grabItemxxxxxxxxxx', this.grabItem)
             return this.grabItem.onMouseDown(event);
         }
         if (this.editCmd == "EditBaseLine") {
@@ -166,6 +165,10 @@ export class PTopoScene extends SBaseEditScene {
             // 添加信息点
             this.addInfoPoint(event, this.editCmd);
             this.clearCmdStatus();
+        } else if (this.editCmd == "EditBaseBtn") {
+            // 添加基础按钮
+            this.SBaseBtn(event);
+            this.clearCmdStatus();
         } else if (this.editCmd == "") {
             super.onMouseDown(event);
         }
@@ -302,6 +305,45 @@ export class PTopoScene extends SBaseEditScene {
     }
 
     /**
+     * 添加按钮
+     * @param event
+     */
+    SBaseBtn(event: SMouseEvent) {
+        const data = {
+            /** 名称 */
+            name: '按钮',
+            /** 按钮 */
+            type: "text",
+            /** 位置 */
+            pos: { x: event.x, y: event.y },
+            size: { width: 60, height: 30 },
+            /** 由应用自己定义 */
+            properties: {
+                type: "baseBtn",           // 自定义类型用于区分mark与node
+                bindMsg: ''            //按钮绑定的信息
+            },
+            style: {
+                default: {
+                    text: '按钮',
+                    color: "#646c73",
+                    font: 14,
+                    backgroundColor: "#427dd213",
+                    lineWidth: 2,
+                    strokeColor: '#000000'
+                }
+            }
+        };
+        const item = new SBaseBtns(null, data);
+        item.moveTo(event.x, event.y);
+        item.moveable = true;
+        this.addItem(item);
+        this.grabItem = null;
+        item.connect("onContextMenu", this, this.getItem);
+        this.finishCreated(item);
+    }
+
+
+    /**
      * 鼠标右键事件
      *
      * @param   event   鼠标事件参数
@@ -331,7 +373,7 @@ export class PTopoScene extends SBaseEditScene {
             List = this.selectContainer.itemList;
         };
         let styleValue: any
-        if (styletype == "strokeColor" || styletype == "backgroundColor" || styletype == "fillColor") {
+        if (styletype == "strokeColor" || styletype == "backgroundColor" || styletype == "fillColor" || styletype == "color") {
             const colorlist = rgbaNum(changestyle)
             styleValue = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255);
         } else if (styletype == "filterColor") {
@@ -441,7 +483,7 @@ export class PTopoScene extends SBaseEditScene {
      */
     save(isAll: boolean = true) {
         if (!this.view) return;
-        const Marktype: string[] = ['BasePolygon', 'BaseLine', 'BaseText', 'BaseExplain', 'BaseImage', 'BaseCircle', 'BaseArrow', 'BaseTriangle', 'BaseRect', 'BaseArrowPolygon', 'InfoPoint', 'BasePipeUninTool'];
+        const Marktype: string[] = ['BasePolygon', 'BaseLine', 'BaseText', 'BaseExplain', 'BaseImage', 'BaseCircle', 'BaseArrow', 'BaseTriangle', 'BaseRect', 'BaseArrowPolygon', 'InfoPoint', 'BasePipeUninTool','baseBtn'];
         const NodeType: string[] = ['BaseEquipment'];
         const RelationType: string[] = ["BasePipe"];
         const markers: any = [];   /**图例节点 */  // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)

+ 3 - 2
src/components/editClass/persagy-edit/index.ts

@@ -4,5 +4,6 @@ import { SPersagyImageEdit } from "./item/SPersagyImageEdit"
 import { SBasePipeUninTool } from "./items/SBasePipeUninTool"
 import { SBaseEquation } from "./items/SBaseEquation"
 import { PTopoView } from './PTopoView';
-import {SBaseInfoPoint} from './items/SBaseInfoPoint'
-export { PTopoParser, PTopoScene, SPersagyImageEdit, PTopoView, SBasePipeUninTool,SBaseEquation,SBaseInfoPoint }
+import { SBaseInfoPoint } from './items/SBaseInfoPoint'
+import { SBaseBtns } from './items/SBaseBtns'
+export { SBaseBtns, PTopoParser, PTopoScene, SPersagyImageEdit, PTopoView, SBasePipeUninTool, SBaseEquation, SBaseInfoPoint }

+ 103 - 0
src/components/editClass/persagy-edit/items/SBaseBtns.ts

@@ -0,0 +1,103 @@
+/*
+* *********************************************************************************************************************
+*
+*          !!
+*        .F88X
+*        X8888Y
+*      .}888888N;
+*        i888888N;        .:!              .I$WI:
+*          R888888I      .'N88~            i8}+8Y&8"l8i$8>8W~'>W8}8]KW+8IIN"8&
+*          .R888888I    .;N8888~          .X8'  "8I.!,/8"  !%NY8`"8I8~~8>,88I
+*            +888888N;  .8888888Y                                  "&&8Y.}8,
+*            ./888888N;  .R888888Y        .'}~    .>}'.`+>  i}!    "i'  +/'  .'i~  !11,.:">,  .~]!  .i}i
+*              ~888888%:  .I888888l      .]88~`1/iY88Ii+1'.R$8$8]"888888888>  Y8$  W8E  X8E  W8888'188Il}Y88$*
+*              18888888    E8888881    .]W%8$`R8X'&8%++N8i,8N%N8+l8%`  .}8N:.R$RE%N88N%N$K$R  188,FE$8%~Y88I
+*            .E888888I  .i8888888'      .:$8I;88+`E8R:/8N,.>881.`$8E/1/]N8X.Y8N`"KF&&FK!'88*."88K./$88%RN888+~
+*            8888888I  .,N888888~        ~88i"8W,!N8*.I88.}888%F,i$88"F88"  888:E8X.>88!i88>`888*.}Fl1]*}1YKi'
+*          i888888N'      I888Y          ]88;/EX*IFKFK88X  K8R  .l8W  88Y  ~88}'88E&%8W.X8N``]88!.$8K  .:W8I
+*        .i888888N;        I8Y          .&8$  .X88!  i881.:%888>I88  ;88]  +88+.';;;;:.Y88X  18N.,88l  .+88/
+*      .:R888888I
+*      .&888888I                                          Copyright (c) 2016-2020.  博锐尚格科技股份有限公司
+*        ~8888'
+*        .!88~                                                                     All rights reserved.
+*
+* *********************************************************************************************************************
+*/
+
+import { SBaseTextEdit, SGraphEdit } from "@persagy-web/edit";
+import { SGraphItem, STextItem, SLineStyle } from "@persagy-web/graph/lib";
+import { Marker } from "@persagy-web/big-edit/lib/types/Marker";
+import { SMouseEvent } from "@persagy-web/base/lib";
+import { SColor, SPainter, SSize, SRect } from '@persagy-web/draw/lib';
+
+/**
+  * 编辑基础按钮类
+  *
+  * @author 韩耀龙 <han_yao_long@163.com>
+  */
+
+export class SBaseBtns extends SBaseTextEdit {
+
+    /**
+    * 构造函数
+    *
+    * @param parent      指向父 Item
+    * @param str         文本内容
+    */
+    constructor(parent: SGraphItem | null, data: Marker) {
+        super(parent, data);
+        this.lineWidth = data.style.default.lineWidth;
+        this.strokeColor = new SColor(data.style.default.strokeColor);
+        this.backgroundColor = new SColor(data.style.default.backgroundColor);
+        this.isTransform = true;
+    }
+
+    /**
+    * 绘制显示状态文本 Item
+    *
+    * @param painter    绘制类
+    */
+    protected drawShowText(painter: SPainter): void {
+        painter.translate(-this.origin.x, -this.origin.y);
+        //绘制矩形轮廓,是否选中
+        if (this.selected) {
+            painter.shadow.shadowBlur = 10;
+            painter.shadow.shadowColor = new SColor(`#00000033`);
+            painter.shadow.shadowOffsetX = 5;
+            painter.shadow.shadowOffsetY = 5;
+        } else {
+            painter.shadow.shadowColor = SColor.Transparent;
+        }
+
+        //绘制文本
+        painter.brush.color = new SColor(this.color);
+        painter.pen.color = new SColor(this.color);
+        painter.shadow.shadowColor = SColor.Transparent;
+        painter.font = this.font;
+        painter.drawText(
+            this.text,
+            this.font.size / 4,
+            this.font.size / 4,
+            this.maxWidth
+        );
+
+        // painter.brush.color = this.backgroundColor;
+        // painter.pen.lineWidth = this.lineWidth;
+        // painter.pen.color = this.strokeColor;
+        // painter.drawRect(0, 0, this.width, this.height);
+    }
+
+    /**
+    * Item 绘制操作
+    *
+    * @param painter   绘画对象
+    */
+    onDraw(painter: SPainter): void {
+        super.onDraw(painter)
+        painter.brush.color = this.backgroundColor;
+        painter.pen.lineWidth = this.lineWidth;
+        painter.pen.color = this.strokeColor;
+        painter.drawRect(0, 0, this.width, this.height);
+    }
+
+}

+ 6 - 0
src/components/editview/leftToolBar/data.js

@@ -23,6 +23,12 @@ export const baseEditItems = [{
             icon: require("./../../../assets/images/leftImgs/" + "EditBaseImage.png"),
             activeIcon: require("./../../../assets/images/leftImgs/" + "EditBaseImage" + "Active" + ".png")
         },
+        {
+            name: '按钮',
+            id: "EditBaseBtn",
+            icon: require("./../../../assets/images/leftImgs/" + "btn.png"),
+            activeIcon: require("./../../../assets/images/leftImgs/" + "btn" + "Active" + ".png")
+        },
             // {
             //     name: '批注',
             //     id: "BaseExplain",

+ 263 - 0
src/components/editview/rightPropertyBar/BaseBtn.vue

@@ -0,0 +1,263 @@
+<!-- 基本的文本属性框 -->
+<template>
+  <div class="base-text">
+    <div class="title">属性</div>
+    <ul>
+      <li>
+        <div class="small-title">边框</div>
+        <div class="property">
+          <div class="color-box">
+            <div class="cololorSelect">
+              <el-color-picker
+                show-alpha
+                @change="changeStrokeColor"
+                class="fix-box-1"
+                v-model="strokecolor"
+              ></el-color-picker>
+            </div>
+            <span>颜色</span>
+          </div>
+          <div class="line-width">
+            <el-input-number
+              style="width: 80px"
+              v-model="linewidth"
+              controls-position="right"
+              @change="changeborderWidth"
+              size="mini"
+              :min="1"
+              :max="20"
+              :maxlength="100"
+            ></el-input-number>
+            <span>边框宽度</span>
+          </div>
+          <div class="color-box">
+            <div class="cololorSelect">
+              <el-color-picker
+                @change="changeBackground"
+                show-alpha
+                class="fix-box-1"
+                v-model="backgroundcolor"
+              ></el-color-picker>
+            </div>
+            <span>背景颜色</span>
+          </div>
+        </div>
+      </li>
+      <li>
+        <div class="small-title">文字</div>
+        <div class="property">
+          <div class="line-width">
+            <el-input-number
+              style="width: 80px"
+              v-model="size"
+              controls-position="right"
+              @change="changeFontSize"
+              size="mini"
+              :min="1"
+              :max="20"
+              :maxlength="100"
+            ></el-input-number>
+            <span>字号</span>
+          </div>
+
+          <div class="color-box">
+            <div class="cololorSelect">
+              <el-color-picker
+                show-alpha
+                @change="changeColor"
+                class="fix-box-1"
+                v-model="Color"
+              ></el-color-picker>
+            </div>
+            <span>颜色</span>
+          </div>
+        </div>
+      </li>
+      <li>
+        <el-input @input="changeText" v-model="text"></el-input>
+      </li>
+      <li>
+        <div class="small-title">其他数据绑定</div>
+        <div class="property">
+          <div class="line-width">
+            <el-input @input="changeBindMsg" v-model="bindMsg"></el-input>
+          </div>
+        </div>
+      </li>
+    </ul>
+  </div>
+</template>
+<script>
+import bus from "@/bus/bus";
+export default {
+  props: [
+    "strokeColor",
+    "fontSize",
+    "backgroundColor",
+    "textMsg",
+    "lineWidth",
+    "Width",
+    "Height",
+    "color",
+    "bindText", //绑定数据
+    "items",
+  ],
+  data() {
+    return {
+      size: 0, //font-size
+      text: "", //文本
+      strokecolor: "", //边框色
+      backgroundcolor: "",
+      linewidth: 1,
+      width: 4,
+      height: 4,
+      borderLineOption: [
+        {
+          id: "solid",
+          src: require("@/assets/images/solidLine.png"),
+        },
+        {
+          id: "dashed",
+          src: require("@/assets/images/dashedLine.png"),
+        },
+        {
+          id: "dotted",
+          src: require("@/assets/images/dotLine.png"),
+        },
+      ],
+      borderStyle: "solid",
+      Color: "",
+      bindMsg:'',//附加信息
+    };
+  },
+  methods: {
+    // 改变文字
+    changeText(val) {
+      bus.$emit("updateStyle", "text", val);
+    },
+    // 改变b文字颜色
+    changeColor(val) {
+      bus.$emit("updateStyle", "color", val);
+    },
+    // 改变border颜色
+    changeStrokeColor(val) {
+      bus.$emit("updateStyle", "strokeColor", val);
+    },
+    // 改变背景颜色
+    changeBackground(val) {
+      bus.$emit("updateStyle", "backgroundColor", val);
+    },
+    // 改变字体大小
+    changeFontSize(val) {
+      bus.$emit("updateStyle", "font", val);
+    },
+    // 改变边框宽度
+    changeborderWidth(val) {
+      bus.$emit("updateStyle", "lineWidth", val);
+    },
+    changeBindMsg(val){
+      this.items.data.properties.bindMsg = val;
+    }
+  },
+  mounted() {
+    // console.log(Select)
+  },
+  watch: {
+    strokeColor(val) {
+      this.strokecolor = val;
+    },
+    fontSize(val) {
+      this.size = val;
+    },
+    backgroundColor(val) {
+      this.backgroundcolor = val;
+    },
+    lineWidth(val) {
+      this.linewidth = val;
+    },
+    Width(val) {
+      this.width = val;
+    },
+    Height(val) {
+      this.height = val;
+    },
+    textMsg(val) {
+      this.text = val;
+    },
+    color(val) {
+      this.Color = val;
+    },
+    items(val) {
+      if (!val) return;
+      this.bindMsg = val.data.properties.bindMsg;
+    },
+  },
+};
+</script>
+<style lang="less" scoped>
+ul,
+li {
+  margin: 0;
+  padding: 0;
+  list-style-type: none;
+}
+.base-text {
+  .title {
+    height: 47px;
+    border-bottom: 1px solid #979797;
+    color: #646c73;
+    font-size: 16px;
+    padding-left: 12px;
+    box-sizing: border-box;
+  }
+  ul {
+    width: calc(~"100% - 24px");
+    margin: -1px 12px 0 12px;
+    li {
+      border-top: 1px solid #979797;
+      .small-title {
+        font-size: 12px;
+        color: #8d9399;
+        margin: 12px 0;
+      }
+      .property {
+        display: flex;
+        align-items: center;
+        justify-content: space-around;
+        .color-box {
+          display: flex;
+          align-items: center;
+          flex-direction: column;
+          .cololorSelect {
+            width: 32px;
+            height: 20px;
+            overflow: hidden;
+            position: relative;
+            margin: 4px 0;
+            .fix-box-1 {
+              margin-top: -8px;
+              margin-left: -8px;
+              /deep/ .el-color-picker__trigger {
+                width: 200px;
+                height: 200px;
+              }
+            }
+          }
+        }
+        .line-width {
+          display: flex;
+          align-items: center;
+          flex-direction: column;
+          margin-left: 8px;
+          position: relative;
+        }
+        span {
+          font-size: 12px;
+          color: #1f2429;
+          margin-top: 4px;
+        }
+      }
+    }
+  }
+}
+</style>

+ 2 - 2
src/components/editview/rightPropertyBar/InfoPoint.vue

@@ -31,8 +31,8 @@
           v-model="formLabelAlign.code"
         ></el-input>
       </el-form-item>
-      <el-form-item label="信息点名称" @blur="changeText" v-show="InfoItem &&InfoItem.data.properties.infoData">
-        <el-input v-model="formLabelAlign.subName"></el-input>
+      <el-form-item label="信息点名称" v-show="InfoItem &&InfoItem.data.properties.infoData">
+        <el-input @change="changeText" v-model="formLabelAlign.subName"></el-input>
       </el-form-item>
     </el-form>
   </div>

+ 37 - 9
src/components/editview/rightPropertyBar/property.vue

@@ -8,6 +8,18 @@
       :backgroundColor="backgroundColor"
       v-show="itemType == 'BaseText' || itemType == 'BaseExplain'"
     ></baseTextPro>
+    <BaseBtn
+      :strokeColor="strokeColor"
+      :fontSize="fontSize"
+      :lineWidth="lineWidth"
+      :Width="Width"
+      :Height="Height"
+      :color ="color"
+      :textMsg="textMsg"
+      :backgroundColor="backgroundColor"
+      :items="items"
+      v-show="itemType == 'baseBtn'"
+    ></BaseBtn>
     <baseLinePro
       v-show="itemType == 'BaseArrow'"
       :strokeColor="strokeColor"
@@ -67,21 +79,22 @@
       :backgroundColor="backgroundColor"
       @changeEquipMsgData="changeEquipMsg"
     ></BaseEquipmentMsg>
-    <Equation  v-show="itemType == 'Equation'" :textMsg="textMsg"></Equation>
-    <InfoPoint  v-show="itemType == 'InfoPoint'"></InfoPoint>
+    <Equation v-show="itemType == 'Equation'" :textMsg="textMsg"></Equation>
+    <InfoPoint v-show="itemType == 'InfoPoint'"></InfoPoint>
     <graphPaper v-show="!itemType"> </graphPaper>
   </div>
 </template>
 <script>
 import baseTextPro from "./baseTextPro.vue";
 import baseLinePro from "./baseLinePro.vue";
+import BaseBtn from "./BaseBtn.vue";
 import BaseGraphy from "./BaseGraphy";
 import BaseImagePro from "./BaseImagePro";
 import BaseEquipment from "./BaseEquipment";
 import BaseEquipmentMsg from "./BaseEquipmentMsg";
 import BasePipe from "./BasePipe";
 import Equation from "./Equation";
-import InfoPoint from "./InfoPoint"
+import InfoPoint from "./InfoPoint";
 import graphPaper from "./graphPaper";
 import bus from "@/bus/bus";
 const lineStyle = {
@@ -113,7 +126,8 @@ export default {
     graphPaper,
     BasePipe,
     Equation,
-    InfoPoint
+    InfoPoint,
+    BaseBtn,
   },
   data() {
     return {
@@ -136,7 +150,9 @@ export default {
       EquipMsgData: {}, //设备信息点详情数据
       EquipMsgItem: null, //设备信息点实例
       AnotherMsg: "", // 附加信息 (只用与设备图例)
-      isSvg:false,   // 是否为svg图
+      isSvg: false, // 是否为svg图
+      color:'',
+      items:null,
     };
   },
   mounted() {
@@ -146,7 +162,6 @@ export default {
   },
   methods: {
     emitChoice(itemList) {
-        console.log('itemList',itemList)
       if (itemList.length == 1) {
         const data = itemList[0].data
           ? itemList[0].data
@@ -172,7 +187,9 @@ export default {
     // 同步样式
     linkStyle(itemList) {
       const item = itemList[0];
+      console.log('item',item)
       this.EquipMsgItem = null;
+      this.items = null;
       this.isSvg = false;
       if (this.itemType == "BaseArrow") {
         this.strokeColor = item.strokeColor.toRgba();
@@ -198,9 +215,10 @@ export default {
         this.lineStyle = lineStyle[item.lineStyle];
         this.lineWidth = item.lineWidth;
         this.strokeColor = item.strokeColor.toRgba();
-           console.log('itemitem',item.data.style.default.url)
-        if(item.data.style.default.url && item.data.style.default.url.includes('.svg')){
-          console.log('itemitem',item)
+        if (
+          item.data.style.default.url &&
+          item.data.style.default.url.includes(".svg")
+        ) {
           this.isSvg = true;
         }
       } else if (
@@ -242,6 +260,16 @@ export default {
         this.strokeColor = item.strokeColor.toRgba();
         this.lineStyle = lineStyle[item.lineStyle];
         this.lineWidth = item.lineWidth;
+      } else if (this.itemType == "baseBtn") {
+        this.Width = item.width; //item 宽
+        this.Height = item.height; //item 高
+        this.strokeColor = item.strokeColor.toRgba();
+        this.backgroundColor = item.backgroundColor.toRgba();
+        this.textMsg = item.text;
+        this.items = item
+        this.color = item.color.toRgba();
+        this.lineWidth = item.lineWidth;
+        this.fontSize = item.font.size;
       }
     },
     // 修改设备信息点数据

+ 2 - 6
src/views/home.vue

@@ -170,16 +170,12 @@ import { mapMutations, mapState } from "vuex";
 // 常量
 // 图服务路径
 const imgBaseUrl = window.__systemConf.imgServeUri;
+const ProjectData = window.__systemConf.ProjectData
 export default {
   name: "home",
   data() {
     return {
-      ProjectData: [
-        { id: "Pj1101050029", name: "东坝万达" },
-        { id: "Pj4403070003", name: "龙岗万达" },
-        { id: "Pj5001120003", name: "香港置地" },
-        { id: "Pj4403050019", name: "招商IOC" },
-      ], // 项目列表
+      ProjectData,
       selVal: "lastUpdate", // 排序方式
       selText: "按最后修改", // 排序方式文字
       dataSelect: [

+ 8 - 4
vue.config.js

@@ -7,22 +7,26 @@ module.exports = {
         },
         proxy: {
             '/labsl': {
-                target: 'http://39.102.40.239:8080',
+                // target: 'http://39.102.40.239:8080',
+                target: 'http://192.168.64.17:28888',
                 changeOrigin: true,
                 secure: false,
             },
             '/meiku': {
-                target: 'http://39.102.40.239:8080',
+                // target: 'http://39.102.40.239:8080',
+                target: 'http://192.168.64.17:28888',
                 changeOrigin: true,
                 secure: false,
             },
             '/datacenter': {
-                target: 'http://39.102.40.239:8080',
+                // target: 'http://39.102.40.239:8080',
+                target: 'http://192.168.64.17:28888',
                 changeOrigin: true,
                 secure: false,
             },
             '/equip-component': {
-                target: 'http://39.102.40.239:8080',
+                // target: 'http://39.102.40.239:8080',
+                target: 'http://192.168.64.17:28888',
                 changeOrigin: true,
                 secure: false,
             },