|
@@ -40,6 +40,7 @@
|
|
:Height="Height"
|
|
:Height="Height"
|
|
v-show="itemType == 'BaseImage'"
|
|
v-show="itemType == 'BaseImage'"
|
|
></BaseImagePro>
|
|
></BaseImagePro>
|
|
|
|
+ <BaseEquipment v-show="itemType == 'BaseEquipment'"></BaseEquipment>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
<script>
|
|
<script>
|
|
@@ -47,6 +48,7 @@ import baseTextPro from "./baseTextPro.vue";
|
|
import baseLinePro from "./baseLinePro.vue";
|
|
import baseLinePro from "./baseLinePro.vue";
|
|
import BaseGraphy from "./BaseGraphy";
|
|
import BaseGraphy from "./BaseGraphy";
|
|
import BaseImagePro from "./BaseImagePro";
|
|
import BaseImagePro from "./BaseImagePro";
|
|
|
|
+import BaseEquipment from "./BaseEquipment";
|
|
import bus from "@/bus/bus";
|
|
import bus from "@/bus/bus";
|
|
const lineStyle = {
|
|
const lineStyle = {
|
|
0: "Solid",
|
|
0: "Solid",
|
|
@@ -67,7 +69,7 @@ const arrowType = {
|
|
5: "Circle",
|
|
5: "Circle",
|
|
};
|
|
};
|
|
export default {
|
|
export default {
|
|
- components: { baseTextPro, baseLinePro, BaseGraphy, BaseImagePro },
|
|
|
|
|
|
+ components: { baseTextPro, baseLinePro, BaseGraphy, BaseImagePro,BaseEquipment },
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
itemType: "", // item 类型
|
|
itemType: "", // item 类型
|
|
@@ -110,7 +112,7 @@ export default {
|
|
this.lineWidth = item.lineWidth;
|
|
this.lineWidth = item.lineWidth;
|
|
this.begin = arrowType[item.begin];
|
|
this.begin = arrowType[item.begin];
|
|
this.end = arrowType[item.end];
|
|
this.end = arrowType[item.end];
|
|
- console.log(this.begin,this.end)
|
|
|
|
|
|
+ console.log(this.begin, this.end);
|
|
} else if (
|
|
} else if (
|
|
this.itemType == "BaseText" ||
|
|
this.itemType == "BaseText" ||
|
|
this.itemType == "BaseExplain"
|
|
this.itemType == "BaseExplain"
|