|
@@ -19,8 +19,8 @@
|
|
|
<Icon style="vertical-align: middle;" :name="isLock?'lock':'unlock'" />
|
|
|
</li>
|
|
|
</ul>
|
|
|
- <equipment-attr v-if="attrType === 'Equipment'" :focusItemList="focusItemList"/>
|
|
|
- <attrSelect v-else :type="attrType" :focusItemList="focusItemList" />
|
|
|
+ <equipment-attr :key="key" v-if="attrType === 'Equipment'" :focusItemList="focusItemList"/>
|
|
|
+ <attrSelect v-else-if="attrType" :type="attrType" :focusItemList="focusItemList" />
|
|
|
<!-- <attrSelect v-show="attrType !== 'Equipment' " :type="attrType" :focusItemList="focusItemList" /> -->
|
|
|
</div>
|
|
|
</a-tab-pane>
|
|
@@ -83,7 +83,7 @@ export default {
|
|
|
focusItemList: {
|
|
|
type: Object,
|
|
|
default: function() {
|
|
|
- return [];
|
|
|
+ return {};
|
|
|
},
|
|
|
required: false
|
|
|
}
|
|
@@ -101,7 +101,8 @@ export default {
|
|
|
elementData: [],
|
|
|
key: "",
|
|
|
isLock: true,
|
|
|
- aspectRatio: 1 // 元素宽高比
|
|
|
+ aspectRatio: 1, // 元素宽高比
|
|
|
+ key:1
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
@@ -182,68 +183,72 @@ export default {
|
|
|
},
|
|
|
watch: {
|
|
|
focusItemList: function(newVal) {
|
|
|
+ // return true;
|
|
|
+ console.log('=================')
|
|
|
console.log('focusItemList',newVal)
|
|
|
this.attrType = newVal.itemType;
|
|
|
- if (newVal.itemList.length !== 1) {
|
|
|
- this.msgList.forEach(item => {
|
|
|
- if (item.name == "X") {
|
|
|
- item.msg = 0;
|
|
|
- }
|
|
|
- if (item.name == "Y") {
|
|
|
- item.msg = 0;
|
|
|
- }
|
|
|
- if (item.name == "Width") {
|
|
|
- item.msg = 0;
|
|
|
- }
|
|
|
- if (item.name == "Height") {
|
|
|
- item.msg = 0;
|
|
|
- }
|
|
|
- });
|
|
|
- this.aspectRatio = 1;
|
|
|
- } else {
|
|
|
- // 属性输入框宽高显示的数值
|
|
|
- let inputW, inputH;
|
|
|
- this.msgList.forEach(item => {
|
|
|
- const Item = newVal.itemList[0];
|
|
|
- const width = Item.boundingRect().width;
|
|
|
- const height = Item.boundingRect().height;
|
|
|
- if (item.name == "X") {
|
|
|
- item.msg = Item.mapToScene(Item.boundingRect().left, Item.boundingRect().top).x;
|
|
|
- }
|
|
|
- if (item.name == "Y") {
|
|
|
- item.msg = Item.mapToScene(Item.boundingRect().left, Item.boundingRect().top).y;
|
|
|
- }
|
|
|
- if (item.name == "Width") {
|
|
|
- item.msg = width;
|
|
|
- // Icon显示图片宽
|
|
|
- if (Item instanceof SImageLegendItem) {
|
|
|
- item.msg = Item.img.width;
|
|
|
- }
|
|
|
- // 针对图片及Icon
|
|
|
- if (Item instanceof SImageMarkerItem || Item instanceof SImageLegendItem) {
|
|
|
- item.disable = false;
|
|
|
- } else {
|
|
|
- item.disable = true;
|
|
|
- }
|
|
|
- inputW = item.msg;
|
|
|
- }
|
|
|
- if (item.name == "Height") {
|
|
|
- item.msg = height;
|
|
|
- // Icon显示图片高
|
|
|
- if (Item instanceof SImageLegendItem) {
|
|
|
- item.msg = Item.img.height;
|
|
|
- }
|
|
|
- // 针对图片及Icon
|
|
|
- if (Item instanceof SImageMarkerItem || Item instanceof SImageLegendItem) {
|
|
|
- item.disable = false;
|
|
|
- } else {
|
|
|
- item.disable = true;
|
|
|
- }
|
|
|
- inputH = item.msg;
|
|
|
- }
|
|
|
- });
|
|
|
- this.aspectRatio = inputW / inputH;
|
|
|
- }
|
|
|
+ this.key++
|
|
|
+ // if (newVal.itemList.length !== 1) {
|
|
|
+ // this.msgList.forEach(item => {
|
|
|
+ // if (item.name == "X") {
|
|
|
+ // item.msg = 0;
|
|
|
+ // }
|
|
|
+ // if (item.name == "Y") {
|
|
|
+ // item.msg = 0;
|
|
|
+ // }
|
|
|
+ // if (item.name == "Width") {
|
|
|
+ // item.msg = 0;
|
|
|
+ // }
|
|
|
+ // if (item.name == "Height") {
|
|
|
+ // item.msg = 0;
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+ // this.aspectRatio = 1;
|
|
|
+ // } else {
|
|
|
+
|
|
|
+ // // 属性输入框宽高显示的数值
|
|
|
+ // let inputW, inputH;
|
|
|
+ // this.msgList.forEach(item => {
|
|
|
+ // const Item = newVal.itemList[0];
|
|
|
+ // const width = Item.boundingRect().width;
|
|
|
+ // const height = Item.boundingRect().height;
|
|
|
+ // if (item.name == "X") {
|
|
|
+ // item.msg = Item.mapToScene(Item.boundingRect().left, Item.boundingRect().top).x;
|
|
|
+ // }
|
|
|
+ // if (item.name == "Y") {
|
|
|
+ // item.msg = Item.mapToScene(Item.boundingRect().left, Item.boundingRect().top).y;
|
|
|
+ // }
|
|
|
+ // if (item.name == "Width") {
|
|
|
+ // item.msg = width;
|
|
|
+ // // Icon显示图片宽
|
|
|
+ // if (Item instanceof SImageLegendItem) {
|
|
|
+ // item.msg = Item.img.width;
|
|
|
+ // }
|
|
|
+ // // 针对图片及Icon
|
|
|
+ // if (Item instanceof SImageMarkerItem || Item instanceof SImageLegendItem) {
|
|
|
+ // item.disable = false;
|
|
|
+ // } else {
|
|
|
+ // item.disable = true;
|
|
|
+ // }
|
|
|
+ // inputW = item.msg;
|
|
|
+ // }
|
|
|
+ // if (item.name == "Height") {
|
|
|
+ // item.msg = height;
|
|
|
+ // // Icon显示图片高
|
|
|
+ // if (Item instanceof SImageLegendItem) {
|
|
|
+ // item.msg = Item.img.height;
|
|
|
+ // }
|
|
|
+ // // 针对图片及Icon
|
|
|
+ // if (Item instanceof SImageMarkerItem || Item instanceof SImageLegendItem) {
|
|
|
+ // item.disable = false;
|
|
|
+ // } else {
|
|
|
+ // item.disable = true;
|
|
|
+ // }
|
|
|
+ // inputH = item.msg;
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+ // this.aspectRatio = inputW / inputH;
|
|
|
+ // }
|
|
|
}
|
|
|
}
|
|
|
};
|