property.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <!--属性栏-->
  2. <template>
  3. <div class="propertys">
  4. <baseTextProVue
  5. :strokeColor="strokeColor"
  6. :fontSize="fontSize"
  7. :textMsg="textMsg"
  8. :backgroundColor="backgroundColor"
  9. v-show="itemType == 'BaseText' || itemType == 'BaseExplain' "
  10. ></baseTextProVue>
  11. <baseLinePro
  12. v-show="itemType == 'BaseLine'"
  13. :strokeColor="strokeColor"
  14. :lineStyle="lineStyle"
  15. :lineWidth="lineWidth"
  16. ></baseLinePro>
  17. <BaseGraphy
  18. :lineStyle="lineStyle"
  19. :lineWidth="lineWidth"
  20. :strokeColor="strokeColor"
  21. :fillColor="fillColor"
  22. :Url="Url"
  23. :Width="Width"
  24. :Height="Height"
  25. v-show="itemType == 'BaseRect' || itemType == 'BaseTriangle' || itemType == 'BaseArrow'|| itemType == 'BaseCircle'"
  26. ></BaseGraphy>
  27. <BaseImagePro
  28. :lineStyle="lineStyle"
  29. :lineWidth="lineWidth"
  30. :strokeColor="strokeColor"
  31. :Url="Url"
  32. :Width="Width"
  33. :Height="Height"
  34. v-show="itemType == 'BaseImage'"
  35. ></BaseImagePro>
  36. </div>
  37. </template>
  38. <script>
  39. import baseTextProVue from "./baseTextPro.vue";
  40. import baseLinePro from "./baseLinePro.vue";
  41. import BaseGraphy from "./BaseGraphy";
  42. import BaseImagePro from "./BaseImagePro";
  43. import bus from "@/bus/bus";
  44. const lineStyle = {
  45. 0: "Solid",
  46. 1: "Dashed",
  47. /** 点线 */
  48. 2: "Dotted",
  49. /** 无 */
  50. 3: "None",
  51. };
  52. export default {
  53. components: { baseTextProVue, baseLinePro, BaseGraphy, BaseImagePro },
  54. data() {
  55. return {
  56. itemType: "", // item 类型
  57. strokeColor: "", //线条颜色
  58. lineStyle: "solid", //线条样式
  59. lineWidth: 1, //线宽
  60. fontSize: 12, //字体大小
  61. textMsg: "", // 文本
  62. backgroundColor: "", // 背景色
  63. Width: 0, //item 宽
  64. Height: 0, //item 高
  65. Url: "", // 路径
  66. fillColor: "", //填充色
  67. };
  68. },
  69. mounted() {
  70. bus.$on("emitChoice", this.emitChoice);
  71. },
  72. methods: {
  73. emitChoice(itemList) {
  74. console.log('itemList',itemList)
  75. if (itemList.length == 1) {
  76. this.itemType = itemList[0].data.Properties.Type
  77. ? itemList[0].data.Properties.Type
  78. : "";
  79. } else {
  80. this.itemType = "";
  81. }
  82. console.log(this.itemType);
  83. // 同步联动样式
  84. this.linkStyle(itemList);
  85. },
  86. // 同步样式
  87. linkStyle(itemList) {
  88. const item = itemList[0];
  89. if (this.itemType == "BaseLine") {
  90. this.strokeColor = item.strokeColor.toRgba();
  91. this.lineStyle = lineStyle[item.lineStyle];
  92. this.lineWidth = item.lineWidth;
  93. } else if (
  94. this.itemType == "BaseText" ||
  95. this.itemType == "BaseExplain"
  96. ) {
  97. this.strokeColor = item.strokeColor.toRgba();
  98. this.backgroundColor = item.backgroundColor.toRgba();
  99. this.textMsg = item.text;
  100. this.fontSize = item.font.size;
  101. } else if (this.itemType == "BaseImage") {
  102. this.Width = item.width; //item 宽
  103. this.Height = item.height; //item 高
  104. this.Url = item.url; // 路径
  105. this.lineStyle = lineStyle[item.lineStyle];
  106. this.lineWidth = item.lineWidth;
  107. this.strokeColor = item.strokeColor.toRgba();
  108. } else if (
  109. this.itemType == "BaseRect" ||
  110. this.itemType == "BaseTriangle" ||
  111. this.itemType == "BaseArrow" ||
  112. this.itemType == "BaseCircle"
  113. ) {
  114. this.Width = item.width; //item 宽
  115. this.Height = item.height; //item 高
  116. this.lineStyle = lineStyle[item.lineStyle];
  117. this.lineWidth = item.lineWidth;
  118. this.strokeColor = item.strokeColor.toRgba();
  119. this.fillColor = item.fillColor.toRgba()
  120. // 填充色
  121. }
  122. },
  123. },
  124. };
  125. </script>
  126. <style lang="less" scoped>
  127. .propertys {
  128. }
  129. </style>