|
@@ -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;
|
|
|
}
|
|
|
},
|
|
|
// 修改设备信息点数据
|