property.vue 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. <!--属性栏-->
  2. <template>
  3. <div class="propertys">
  4. <baseTextPro
  5. :strokeColor="strokeColor"
  6. :fontSize="fontSize"
  7. :textMsg="textMsg"
  8. :backgroundColor="backgroundColor"
  9. v-show="itemType == 'BaseText' || itemType == 'BaseExplain'"
  10. ></baseTextPro>
  11. <BaseBtn
  12. :strokeColor="strokeColor"
  13. :fontSize="fontSize"
  14. :lineWidth="lineWidth"
  15. :Width="Width"
  16. :Height="Height"
  17. :color ="color"
  18. :textMsg="textMsg"
  19. :backgroundColor="backgroundColor"
  20. :items="items"
  21. v-show="itemType == 'baseBtn'"
  22. ></BaseBtn>
  23. <baseLinePro
  24. v-show="itemType == 'BaseArrow'"
  25. :strokeColor="strokeColor"
  26. :lineStyle="lineStyle"
  27. :lineWidth="lineWidth"
  28. :Begin="begin"
  29. :End="end"
  30. ></baseLinePro>
  31. <BasePipe
  32. v-show="itemType == 'BasePipe'"
  33. :strokeColor="strokeColor"
  34. :lineStyle="lineStyle"
  35. :lineWidth="lineWidth"
  36. :Radius="Radius"
  37. ></BasePipe>
  38. <BaseGraphy
  39. :lineStyle="lineStyle"
  40. :lineWidth="lineWidth"
  41. :strokeColor="strokeColor"
  42. :fillColor="fillColor"
  43. :Url="Url"
  44. :Width="Width"
  45. :Height="Height"
  46. v-show="
  47. itemType == 'BaseRect' ||
  48. itemType == 'BaseTriangle' ||
  49. itemType == 'BaseCircle' ||
  50. itemType == 'BasePolygon' ||
  51. itemType == 'BaseArrowPolygon'
  52. "
  53. ></BaseGraphy>
  54. <BaseImagePro
  55. :lineStyle="lineStyle"
  56. :lineWidth="lineWidth"
  57. :strokeColor="strokeColor"
  58. :Url="Url"
  59. :Width="Width"
  60. :Height="Height"
  61. :isSvg="isSvg"
  62. :Rotate="Rotate"
  63. v-show="itemType == 'BaseImage' || itemType == 'BasePipeUninTool'"
  64. ></BaseImagePro>
  65. <BaseEquipment
  66. :Width="Width"
  67. :Height="Height"
  68. :AnotherMsg="AnotherMsg"
  69. :InfoPointList="infoPointList"
  70. :EquipData="EquipData"
  71. v-show="itemType == 'BaseEquipment'"
  72. :equipHeight="equipHeight"
  73. ></BaseEquipment>
  74. <BaseEquipmentMsg
  75. v-show="itemType == 'BaseEquipmentMsg'"
  76. :EquipMsgData="EquipMsgData"
  77. :strokeColor="strokeColor"
  78. :fontSize="fontSize"
  79. :curTextItem="EquipMsgItem"
  80. :backgroundColor="backgroundColor"
  81. @changeEquipMsgData="changeEquipMsg"
  82. ></BaseEquipmentMsg>
  83. <Equation v-show="itemType == 'Equation'" :textMsg="textMsg"></Equation>
  84. <InfoPoint v-show="itemType == 'InfoPoint'"></InfoPoint>
  85. <graphPaper v-show="!itemType"> </graphPaper>
  86. </div>
  87. </template>
  88. <script>
  89. import baseTextPro from "./baseTextPro.vue";
  90. import baseLinePro from "./baseLinePro.vue";
  91. import BaseBtn from "./BaseBtn.vue";
  92. import BaseGraphy from "./BaseGraphy";
  93. import BaseImagePro from "./BaseImagePro";
  94. import BaseEquipment from "./BaseEquipment";
  95. import BaseEquipmentMsg from "./BaseEquipmentMsg";
  96. import BasePipe from "./BasePipe";
  97. import Equation from "./Equation";
  98. import InfoPoint from "./InfoPoint";
  99. import graphPaper from "./graphPaper";
  100. import bus from "@/bus/bus";
  101. const lineStyle = {
  102. 0: "Solid",
  103. 1: "Dashed",
  104. /** 点线 */
  105. 2: "Dotted",
  106. /** 无 */
  107. 3: "None",
  108. };
  109. const arrowType = {
  110. 0: "None",
  111. 1: "Basic",
  112. /** 点线 */
  113. 2: "Triangle",
  114. /** 无 */
  115. 3: "Diamond",
  116. 4: "Square",
  117. 5: "Circle",
  118. };
  119. export default {
  120. components: {
  121. baseTextPro,
  122. baseLinePro,
  123. BaseGraphy,
  124. BaseImagePro,
  125. BaseEquipment,
  126. BaseEquipmentMsg,
  127. graphPaper,
  128. BasePipe,
  129. Equation,
  130. InfoPoint,
  131. BaseBtn,
  132. },
  133. data() {
  134. return {
  135. itemType: "", // item 类型
  136. strokeColor: "", //线条颜色
  137. lineStyle: "solid", //线条样式
  138. lineWidth: 1, //线宽
  139. fontSize: 0, //字体大小
  140. textMsg: "", // 文本
  141. backgroundColor: "", // 背景色
  142. Width: 0, //item 宽
  143. Height: 0, //item 高
  144. Url: "", // 路径
  145. Rotate: 0, // 旋转角度
  146. fillColor: "", //填充色
  147. begin: "", //开头样式
  148. end: "", //结尾样式
  149. infoPointList: [], //设备--信息点数组
  150. EquipData: {}, //设备 信息
  151. equipHeight: "", // 设备属性栏得高度
  152. EquipMsgData: {}, //设备信息点详情数据
  153. EquipMsgItem: null, //设备信息点实例
  154. AnotherMsg: "", // 附加信息 (只用与设备图例)
  155. isSvg: false, // 是否为svg图
  156. color:'',
  157. items:null,
  158. Radius: 0, // 管线的圆角半径
  159. };
  160. },
  161. mounted() {
  162. const box = document.getElementsByClassName("propertys")[0];
  163. this.equipHeight = box.offsetHeight - 150 + "px";
  164. bus.$on("emitChoice", this.emitChoice);
  165. },
  166. methods: {
  167. emitChoice(itemList) {
  168. if (itemList.length == 1) {
  169. const data = itemList[0].data
  170. ? itemList[0].data
  171. : itemList[0].legendData
  172. ? itemList[0].legendData
  173. : itemList[0].relationData
  174. ? itemList[0].relationData
  175. : null;
  176. this.itemType = data.properties.type ? data.properties.type : "";
  177. } else {
  178. this.itemType = "";
  179. }
  180. // 对设备做出判断 看是否点入的是设备相关信息点
  181. if (this.itemType == "BaseEquipment") {
  182. this.EquipData = itemList[0].legendData;
  183. if (itemList[0].curTextItem) {
  184. this.itemType = "BaseEquipmentMsg";
  185. }
  186. }
  187. // 同步联动样式
  188. this.linkStyle(itemList);
  189. },
  190. // 同步样式
  191. linkStyle(itemList) {
  192. const item = itemList[0];
  193. console.log('item',item)
  194. this.EquipMsgItem = null;
  195. this.items = null;
  196. this.isSvg = false;
  197. if (this.itemType == "BaseArrow") {
  198. this.strokeColor = item.strokeColor.toRgba();
  199. this.lineStyle = lineStyle[item.lineStyle];
  200. this.lineWidth = item.lineWidth;
  201. this.begin = arrowType[item.begin];
  202. this.end = arrowType[item.end];
  203. } else if (
  204. this.itemType == "BaseText" ||
  205. this.itemType == "BaseExplain"
  206. ) {
  207. this.strokeColor = item.color.toRgba();
  208. this.backgroundColor = item.backgroundColor.toRgba();
  209. this.textMsg = item.text;
  210. this.fontSize = item.font.size;
  211. } else if (
  212. this.itemType == "BaseImage" ||
  213. this.itemType == "BasePipeUninTool"
  214. ) {
  215. this.Width = item.width; //item 宽
  216. this.Height = item.height; //item 高
  217. this.Url = item.url; // 路径
  218. this.lineStyle = lineStyle[item.lineStyle];
  219. this.lineWidth = item.lineWidth;
  220. this.strokeColor = item.strokeColor.toRgba();
  221. this.Rotate = item.rotate;
  222. if (
  223. item.data.style.default.url &&
  224. item.data.style.default.url.includes(".svg")
  225. ) {
  226. this.isSvg = true;
  227. }
  228. } else if (
  229. this.itemType == "BaseRect" ||
  230. this.itemType == "BaseTriangle" ||
  231. this.itemType == "BaseCircle" ||
  232. this.itemType == "BasePolygon"
  233. ) {
  234. this.Width = item.width; //item 宽
  235. this.Height = item.height; //item 高
  236. this.lineStyle = lineStyle[item.lineStyle];
  237. this.lineWidth = item.lineWidth;
  238. this.strokeColor = item.strokeColor.toRgba();
  239. this.fillColor = item.fillColor.toRgba();
  240. // 填充色
  241. } else if (this.itemType == "BaseEquipment") {
  242. this.Width = item.sWidth; //item 宽
  243. this.Height = item.sHeight; //item 高
  244. this.AnotherMsg = item.anotherMsg;
  245. if (item.infoPointList && item.infoPointList.length) {
  246. this.infoPointList = item.infoPointList;
  247. } else {
  248. this.infoPointList = [];
  249. }
  250. } else if (this.itemType == "BaseEquipmentMsg") {
  251. // 获取信息点详情信息
  252. this.EquipMsgData = item.curTextItem.propertyData;
  253. this.EquipMsgItem = item.curTextItem;
  254. this.strokeColor = "";
  255. this.backgroundColor = "";
  256. this.fontSize = 1;
  257. setTimeout(() => {
  258. this.strokeColor = this.EquipMsgItem.color.toRgba();
  259. this.backgroundColor = this.EquipMsgItem.backgroundColor.toRgba();
  260. this.fontSize = this.EquipMsgItem.font.size;
  261. });
  262. } else if (this.itemType == "BasePipe") {
  263. // 管道
  264. this.strokeColor = item.strokeColor.toRgba();
  265. this.lineStyle = lineStyle[item.lineStyle];
  266. this.lineWidth = item.lineWidth;
  267. this.Radius = item.radius;
  268. } else if (this.itemType == "baseBtn") {
  269. this.Width = item.width; //item 宽
  270. this.Height = item.height; //item 高
  271. this.strokeColor = item.strokeColor.toRgba();
  272. this.backgroundColor = item.backgroundColor.toRgba();
  273. this.textMsg = item.text;
  274. this.items = item
  275. this.color = item.color.toRgba();
  276. this.lineWidth = item.lineWidth;
  277. this.fontSize = item.font.size;
  278. }
  279. },
  280. // 修改设备信息点数据
  281. changeEquipMsg(val) {
  282. const obj = this.EquipMsgItem.propertyData;
  283. let obj2 = Object.assign(obj, val);
  284. this.EquipMsgItem.propertyData = obj2;
  285. this.EquipMsgItem.text = val.name;
  286. },
  287. },
  288. };
  289. </script>
  290. <style lang="less" scoped>
  291. .propertys {
  292. width: 100%;
  293. height: 100%;
  294. }
  295. </style>