瀏覽代碼

新增背景色以及设备信息点对应的修改

YaolongHan 4 年之前
父節點
當前提交
f012d5da4c

+ 5 - 5
package.json

@@ -16,11 +16,11 @@
   },
   "dependencies": {
     "@persagy-web/base": "2.2.1",
-    "@persagy-web/big": "2.2.33",
-    "@persagy-web/draw": "2.2.8",
-    "@persagy-web/graph": "2.2.34",
-    "@persagy-web/big-edit": "2.2.5",
-    "@persagy-web/edit": "2.2.4",
+    "@persagy-web/big": "2.2.37",
+    "@persagy-web/draw": "2.2.9",
+    "@persagy-web/graph": "2.2.36",
+    "@persagy-web/big-edit": "2.2.13",
+    "@persagy-web/edit": "2.2.11",
     "@types/uuid": "^8.0.0",
     "ant-design-vue": "^1.6.5",
     "axios": "^0.20.0",

+ 1 - 1
src/components/editClass/big-edit/items/SBaseEquipment.ts

@@ -241,7 +241,7 @@ export class SBaseEquipment extends SBaseIconTextEdit {
                 let obj = Object.assign(item.propertyData, {
                     pos: { x: item.x, y: item.y },
                     font: item.font.size,
-                    color: item.color.value
+                    color: item.color.value,
                 })
                 delete obj.currentEquipMsg
                 infoPoinList.push(obj)

+ 22 - 3
src/components/editClass/persagy-edit/PTopoScene.ts

@@ -51,6 +51,25 @@ export class PTopoScene extends SBaseEditScene {
         this.selectContainer.connect("listChange", this, this.listChange);
     }
 
+    /**
+     *  改变 view 背景色
+     *  
+     * @param val 颜色值 
+     */
+    changeBackgroundColor(val: any) {
+        if (!this.view) return;
+        if (val) {
+            if (val.includes('#')) {
+                this.view.backgroundColor = new SColor(val)
+            } else {
+                const colorlist: any = rgbaNum(val);
+                if (!colorlist) return
+                this.view.backgroundColor = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255))
+            }
+            this.view.update()
+
+        }
+    }
 
     /**
      * 选中返回的选中 item 回调方法
@@ -223,13 +242,13 @@ export class PTopoScene extends SBaseEditScene {
             styleValue = SArrowStyleType[changestyle]
         } else if (styletype == "font") {
             styleValue = new SFont("sans-serif", changestyle)
-        } else if(styletype == "url"){
+        } else if (styletype == "url") {
             styleValue = this.imgServeUrl + changestyle;
             // 设置default url
-            List.forEach((item:SGraphEdit)=>{
+            List.forEach((item: SGraphEdit) => {
                 item.defaultUrl = changestyle
             })
-        }else {
+        } else {
             styleValue = changestyle
         }
 

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

@@ -37,9 +37,10 @@ export class PTopoView extends SGraphView {
 	 *
 	 * @param painter     绘制对象
 	 */
+
 	protected drawBackground(painter: SPainter): void {
-		painter.brush.color = SColor.White;
-		painter.pen.color = SColor.Transparent;
+		painter.brush.color = this.backgroundColor;
+		painter.pen.color = this.backgroundColor;
 		painter.drawRect(0, 0, this.width, this.height);
 	} // Function drawBackground()
 }

+ 18 - 0
src/components/editview/baseTopoEditer.vue

@@ -108,6 +108,7 @@ export default {
       "ADDEQUIPITEM",
       "EDITEQUIPITEM",
       "SETVERSION",
+      'SETVBACKGROUND'
     ]),
     // 恢复命令状态
     clearCmdStatus() {
@@ -217,6 +218,11 @@ export default {
       bus.$on("chioceItem", (item) => {
         this.scene.toggleItem(item);
       });
+      // 更改背景色
+      bus.$off("changeBackgroundColor");
+      bus.$on("changeBackgroundColor", (val) => {
+        this.scene.changeBackgroundColor(val);
+      });
     },
     // 读取拓扑图
     readtopoMsg() {
@@ -242,6 +248,12 @@ export default {
       this.SETCATEGROY(res.content);
       this.topoContent = res.content;
       const parse = new PTopoParser();
+      if(this.scene){
+        const backgroundColor = res.content.viewBackground ? res.content.viewBackground : '#00000000'
+        this.scene.changeBackgroundColor(backgroundColor);
+        // 初始化保存图背景色
+        this.SETVBACKGROUND(this.view.backgroundColor.toRgba())
+      }
       parse.parseData(res.content.elements);
       parse.markers.forEach((item) => {
         item.selectable = true;
@@ -369,6 +381,7 @@ export default {
         graphId: this.graphId,
         id: this.id,
         version: this.version,
+        viewBackground:this.view.backgroundColor.value //视图背景色
       };
       return new Promise((resolve, reject) => {
         saveGroup(obj).then((res) => {
@@ -521,5 +534,10 @@ export default {
     left: 0;
     top: 0;
   }
+  .back-btn {
+    position: absolute;
+    left: 0;
+    top: 20px;
+  }
 }
 </style>

+ 228 - 74
src/components/editview/rightPropertyBar/BaseEquipmentMsg.vue

@@ -1,84 +1,148 @@
 <!-- 设备信息点详情 -->
 <template>
   <div id="equip-msg">
-    <div class="title">设备实例本地名称</div>
-    <ul class="msg">
-      <li>
-        <div class="msg-name">全局编码</div>
-        <Input
-          :width="220"
-          v-model="equipId"
-          placeholder="请输入全局编码"
-          @input="boxInput('equipId')"
-          name="persager"
-          disabled
-          class="msg-input"
-          :title="equipId"
-        />
-      </li>
-      <li>
-        <div class="msg-name">信息点编码</div>
-        <Input
-          :width="220"
-          v-model="id"
-          disabled
-          placeholder="请输入信息点编码"
-          @input="boxInput('id')"
-          name="persager"
-          :title="id"
-          class="msg-input"
-        />
-      </li>
-      <li>
-        <div class="msg-name">信息点名称</div>
-        <Input
-          :width="220"
-          v-model="name"
-          placeholder="请输入信息点名称"
-          @input="boxInput('name')"
-          name="persager"
-          class="msg-input"
-        />
-      </li>
-      <li>
-        <div class="msg-name">数据格式</div>
-        <Input
-          :width="220"
-          v-model="dataFormat"
-          placeholder="请输入数据格式"
-          @input="boxInput('dataFormat')"
-          name="persager"
-          class="msg-input"
-        />
-      </li>
-      <li>
-        <div class="msg-name">实时值</div>
-        <Input
-          :width="220"
-          v-model="currentData"
-          placeholder="请输入实时值"
-          @input="boxInput('currentData')"
-          name="persager"
-          class="msg-input"
-        />
-      </li>
-      <li>
-        <div class="msg-name">单位</div>
-        <Input
-          :width="220"
-          v-model="unit"
-          placeholder="请输入单位"
-          @input="boxInput('unit')"
-          name="persager"
-          class="msg-input"
-        />
-      </li>
-    </ul>
+    <div class="title">{{ name ? name : "--" }}</div>
+    <el-tabs v-model="activeName" @tab-click="handleClick">
+      <el-tab-pane label="属性" name="first">
+        <div class="property">
+          <ul>
+            <li>
+              <div class="small-title">文本</div>
+              <div class="property">
+                <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 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
+                      @change="changeBackground"
+                      show-alpha
+                      class="fix-box-1"
+                      v-model="backgroundcolor"
+                    ></el-color-picker>
+                  </div>
+                  <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>
+          </ul>
+        </div>
+      </el-tab-pane>
+      <el-tab-pane label="信息点" name="second">
+        <ul class="msg">
+          <li>
+            <div class="msg-name">全局编码</div>
+            <Input
+              :width="220"
+              v-model="equipId"
+              placeholder="请输入全局编码"
+              @input="boxInput('equipId')"
+              name="persager"
+              disabled
+              class="msg-input"
+              :title="equipId"
+            />
+          </li>
+          <li>
+            <div class="msg-name">信息点编码</div>
+            <Input
+              :width="220"
+              v-model="id"
+              disabled
+              placeholder="请输入信息点编码"
+              @input="boxInput('id')"
+              name="persager"
+              :title="id"
+              class="msg-input"
+            />
+          </li>
+          <li>
+            <div class="msg-name">信息点名称</div>
+            <Input
+              :width="220"
+              v-model="name"
+              placeholder="请输入信息点名称"
+              @input="boxInput('name')"
+              name="persager"
+              class="msg-input"
+            />
+          </li>
+          <li>
+            <div class="msg-name">数据格式</div>
+            <Input
+              :width="220"
+              v-model="dataFormat"
+              placeholder="请输入数据格式"
+              @input="boxInput('dataFormat')"
+              name="persager"
+              class="msg-input"
+            />
+          </li>
+          <li>
+            <div class="msg-name">实时值</div>
+            <Input
+              :width="220"
+              v-model="currentData"
+              placeholder="请输入实时值"
+              @input="boxInput('currentData')"
+              name="persager"
+              class="msg-input"
+            />
+          </li>
+          <li>
+            <div class="msg-name">单位</div>
+            <Input
+              :width="220"
+              v-model="unit"
+              placeholder="请输入单位"
+              @input="boxInput('unit')"
+              name="persager"
+              class="msg-input"
+            />
+          </li>
+        </ul>
+      </el-tab-pane>
+    </el-tabs>
   </div>
 </template>
 <script>
+import bus from "@/bus/bus";
+import { rgbaNum } from "@persagy-web/big-edit/lib/until";
+import { SFont,SColor } from '@persagy-web/draw/lib';
 export default {
-  props: ["EquipMsgData"],
+  props: ["EquipMsgData","strokeColor", "fontSize", "backgroundColor","curTextItem"],
   data() {
     return {
       equipId: "", //全局id
@@ -87,10 +151,31 @@ export default {
       unit: "", // 信息点的单位
       dataFormat: "", //数据格式
       currentData: "", //实时值
+      activeName: "first",
+      color :'',
+      size :'',
+      backgroundcolor:''
     };
   },
   mounted() {},
   methods: {
+    // 改变颜色
+    changeColor(val) {
+      const colorlist = rgbaNum(val);
+      const styleValue = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255);
+      this.curTextItem.color =  styleValue;
+    },
+    // 改变背景颜色
+    changeBackground(val) {
+      const colorlist = rgbaNum(val);
+      const styleValue = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255);
+      this.curTextItem.backgroundColor = styleValue
+    },
+    // 改变字体大小
+    changeFontSize(val) {
+      const styleValue = new SFont("sans-serif", val)
+      this.curTextItem.font =  styleValue
+    },
     boxInput() {
       const EquipMsgData = {
         equipId: this.equipId,
@@ -102,6 +187,16 @@ export default {
       };
       this.$emit("changeEquipMsgData", EquipMsgData);
     },
+    // 点击切换
+    handleClick(tab, event) {
+      // 设置高度
+      if (tab.paneName == "second") {
+        const box = document.getElementsByClassName("msgPoint-list")[0];
+        const box2 = document.getElementsByClassName("msgPoint-list-press")[0];
+        box.style.height = this.equipHeight;
+        box2.style.height = this.equipHeight;
+      }
+    },
   },
   watch: {
     EquipMsgData(val) {
@@ -111,6 +206,16 @@ export default {
       this.unit = val.unit ? val.unit : "";
       this.currentData = val.currentData ? val.currentData : "";
       this.dataFormat = val.dataFormat ? val.dataFormat : "";
+      // 文本属性
+    },
+     strokeColor(val) {
+      this.color = val;
+    },
+    fontSize(val) {
+      this.size = val;
+    },
+    backgroundColor(val) {
+      this.backgroundcolor = val;
     },
   },
 };
@@ -147,5 +252,54 @@ p {
       }
     }
   }
+    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>

+ 106 - 0
src/components/editview/rightPropertyBar/graphPaper.vue

@@ -0,0 +1,106 @@
+<template>
+  <div id="paper">
+    <ul>
+      <li>
+        <div class="property">
+          <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>
+    </ul>
+  </div>
+</template>
+<script>
+import { mapState } from "vuex";
+import bus from "@/bus/bus";
+export default {
+  data() {
+    return {
+      color: "",
+    };
+  },
+  computed: {
+    ...mapState(["viewBackground"]),
+  },
+  watch: {
+    viewBackground:function (val) {
+        if(val){
+            this.color = val;
+        }
+    },
+  },
+  methods: {
+    changeColor(val) {
+      bus.$emit("changeBackgroundColor", val);
+    },
+  },
+};
+</script>
+<style lang="less" scoped>
+ul,
+li {
+  margin: 0;
+  padding: 0;
+  list-style-type: none;
+}
+#paper {
+  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>

+ 16 - 0
src/components/editview/rightPropertyBar/property.vue

@@ -53,8 +53,14 @@
     <BaseEquipmentMsg
       v-show="itemType == 'BaseEquipmentMsg'"
       :EquipMsgData="EquipMsgData"
+      :strokeColor="strokeColor"
+      :fontSize="fontSize"
+      :curTextItem="EquipMsgItem"
+      :backgroundColor="backgroundColor" 
       @changeEquipMsgData="changeEquipMsg"
     ></BaseEquipmentMsg>
+    <graphPaper  v-show="!itemType">
+    </graphPaper>
   </div>
 </template>
 <script>
@@ -64,6 +70,7 @@ import BaseGraphy from "./BaseGraphy";
 import BaseImagePro from "./BaseImagePro";
 import BaseEquipment from "./BaseEquipment";
 import BaseEquipmentMsg from "./BaseEquipmentMsg";
+import graphPaper from "./graphPaper"
 import bus from "@/bus/bus";
 const lineStyle = {
   0: "Solid",
@@ -91,6 +98,7 @@ export default {
     BaseImagePro,
     BaseEquipment,
     BaseEquipmentMsg,
+    graphPaper
   },
   data() {
     return {
@@ -198,6 +206,14 @@ export default {
         // 获取信息点详情信息
         this.EquipMsgData = item.curTextItem.propertyData;
         this.EquipMsgItem = item.curTextItem;
+        this.strokeColor = '';
+        this.backgroundColor = '';
+        this.fontSize = 1;
+        setTimeout(()=>{
+        this.strokeColor = this.EquipMsgItem.color.toRgba();
+        this.backgroundColor = this.EquipMsgItem.backgroundColor.toRgba();
+        this.fontSize = this.EquipMsgItem.font.size;
+        })
       }
     },
     // 修改设备信息点数据

+ 4 - 0
src/store/index.ts

@@ -14,6 +14,7 @@ export default new Vuex.Store({
     categoryId: '',   //类型id 用于读图
     tupoName: '',  //拓扑图名称
     version: "", //版本号
+    viewBackground:'',
     equipmentItemList: [], // 图上相关的设备实例
     equipmentItemNum: 0 //图上相关的设备实例的数量
   },
@@ -48,6 +49,9 @@ export default new Vuex.Store({
     SETVERSION(state, val) {
       state.version = val; //版本号
     },
+    SETVBACKGROUND(state, val) {
+      state.viewBackground = val; //版本号
+    },
     // 增加设备实例 item
     ADDEQUIPITEM(state, item): void {
       state.equipmentItemList.push(item);