baseTopu.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. <!-- 画板 -->
  2. <template>
  3. <div ref="basetopu" class="base-topu">
  4. <canvas
  5. id="floor_topu"
  6. :width="canvasWidth"
  7. :height="canvasHeight"
  8. tabindex="0"
  9. ></canvas>
  10. <scaleBtn
  11. v-show="hasShowContro"
  12. class="sacle-btn"
  13. @sacle="changeSize"
  14. ></scaleBtn>
  15. </div>
  16. </template>
  17. <script>
  18. import { topuScene } from "./topuClass/topuScene";
  19. import { FloorView } from "./topuClass/FloorView";
  20. import { readPubGroup } from "@/api/tuopu"; // 引入获取底图得接口
  21. import scaleBtn from "./scale";
  22. import { PTopoParser } from "./topuClass/PTopoParser";
  23. import { SColor, SFont, SPoint } from "@persagy-web/draw";
  24. import { SLineStyle } from "@persagy-web/graph";
  25. export default {
  26. components: { scaleBtn },
  27. props: {
  28. // 是否展示大小控制器
  29. hasShowContro: {
  30. type: Boolean,
  31. default: true,
  32. required: false,
  33. },
  34. },
  35. data() {
  36. return {
  37. canvasWidth: 0, // 画布的宽
  38. canvasHeight: 0, // 画布的高
  39. view: null, // 视图 view
  40. scene: null, // 场景类
  41. };
  42. },
  43. methods: {
  44. fixWindow() {
  45. this.view.fitSceneToView();
  46. },
  47. // 初始化
  48. init() {
  49. this.clearImg();
  50. this.view ? (this.view.scene = this.scene) : null;
  51. // 获取压缩包数据并解压
  52. this.getMapBlob();
  53. },
  54. // 请求获取地图的压缩包
  55. getMapBlob() {
  56. if (false) {
  57. const obj = {
  58. // graphId: "0314991b0cd148ba89da60eddf30efd1",
  59. projectId: "Pj4403070003",
  60. graphId: "994d0f65d647426f854d2a5f7f0173a4",
  61. id: "be4c75daf4d44cb89b447eb7581614da",
  62. };
  63. }
  64. const obj = {
  65. graphId: window._graphId,
  66. id: window._id,
  67. projectId: window._projectId,
  68. };
  69. // 已发布
  70. readPubGroup(obj).then((res) => {
  71. this.statDeviceIds(res);
  72. this.getDataSuc(res);
  73. });
  74. },
  75. // 读图成功回调
  76. getDataSuc(res) {
  77. let anchorList = []; //保存锚点对象
  78. // 'url 新增路径'
  79. if (res.result == "failure") return;
  80. const parse = new PTopoParser();
  81. if (this.scene) {
  82. const backgroundColor = res.data.content.viewBackground
  83. ? res.data.content.viewBackground
  84. : "#1f1f27";
  85. this.scene.changeBackgroundColor(backgroundColor);
  86. }
  87. window.parse = parse;
  88. if (
  89. res.data.content.elements.nodes &&
  90. res.data.content.elements.nodes.length
  91. ) {
  92. res.data.content.elements.nodes = res.data.content.elements.nodes.map(
  93. (obj) => {
  94. if (obj.properties.type == "BaseEquipment") {
  95. if (obj.style.default.url) {
  96. obj.style.default.url =
  97. window.img_baseurl +
  98. "/image-service/common/image_get?systemId=dataPlatform&key=" +
  99. obj.properties.state[1].pic;
  100. } else {
  101. // 默认图标
  102. obj.style.default.url =
  103. window.img_baseurl +
  104. "/image-service/common/image_get?systemId=dataPlatform&key=" +
  105. "1607752841478.svg";
  106. }
  107. }
  108. return obj;
  109. }
  110. );
  111. }
  112. parse.parseData(res.data.content.elements);
  113. parse.markers.forEach((item) => {
  114. this.scene.addItem(item);
  115. });
  116. parse.nodes.forEach((item) => {
  117. // item.moveable = false;
  118. if ("BaseEquipment" == item.data.properties.type) {
  119. item.setEquipName();
  120. item.setStatusPointColor("#7ed321");
  121. }
  122. // 相关事件触发
  123. item.connect("onMouseDown", this, this.onMousedown);
  124. item.connect("onMouseUp", this, this.onMouseup);
  125. item.connect("onMouseLeave", this, this.onMouseleave);
  126. item.connect("onMouseEnter", this, this.onMouseenter);
  127. this.scene.addItem(item);
  128. });
  129. parse.relations.forEach((t) => {
  130. // 设置锚点
  131. if (t.anchor1Id) {
  132. let startAnc = null;
  133. anchorList.forEach((aItem) => {
  134. if (aItem.id == t.anchor1Id) {
  135. startAnc = aItem;
  136. }
  137. });
  138. if (startAnc) {
  139. startAnc.isConnected = true;
  140. startAnc.parent?.connect("changePos", t, t.changePos);
  141. t.startAnchor = startAnc || null;
  142. }
  143. }
  144. if (t.anchor12d) {
  145. let endAnc = null;
  146. anchorList.forEach((aItem) => {
  147. if (aItem.id == t.anchor12d) {
  148. endAnc = aItem;
  149. }
  150. });
  151. if (endAnc) {
  152. endAnc.isConnected = true;
  153. endAnc.parent?.connect("changePos", t, t.changePos);
  154. t.endAnchor = endAnc || null;
  155. }
  156. }
  157. this.scene.addItem(t);
  158. });
  159. this.fixWindow();
  160. },
  161. // 读图成功回调
  162. statDeviceIds(res) {
  163. let anchorList = []; //保存锚点对象
  164. // 'url 新增路径'
  165. if (res.result == "failure") return;
  166. const parse = new PTopoParser();
  167. if (
  168. res.data.content.elements.nodes &&
  169. res.data.content.elements.nodes.length
  170. ) {
  171. let tempDatas = res.data.content.elements.nodes.map((obj) => {
  172. return obj.attachObjectIds[0];
  173. });
  174. }
  175. },
  176. // 图片缩小
  177. changeSize(isbiger) {
  178. if (isbiger) {
  179. this.view.scaleByPoint(
  180. (this.view.scale * 1.1) / this.view.scale,
  181. this.canvasWidth / 2,
  182. this.canvasHeight / 2
  183. );
  184. } else {
  185. this.view.scaleByPoint(
  186. (this.view.scale * 0.9) / this.view.scale,
  187. this.canvasWidth / 2,
  188. this.canvasHeight / 2
  189. );
  190. }
  191. },
  192. // 清空画布
  193. clearImg() {
  194. this.scene = new topuScene();
  195. this.scene.vueOnMouseDown = this.onMousedown;
  196. if (this.view) {
  197. this.view.update();
  198. }
  199. },
  200. // 鼠标点击事件
  201. onMousedown(item, e) {
  202. console.log("鼠标按下!", item, e);
  203. this.$emit("onMousedown", item, e);
  204. },
  205. // 鼠标抬起事件
  206. onMouseup(item, e) {
  207. // console.log("鼠标抬起!", item, e);
  208. },
  209. // 鼠标事件移入
  210. onMouseenter(item, e) {
  211. // 判断是否为设备图例
  212. item.showImgShadow = true;
  213. console.log("鼠标移入!", item.img, e);
  214. },
  215. // 鼠标事件移出
  216. onMouseleave(item, e) {
  217. item.showImgShadow = false;
  218. console.log("鼠标移出!", item, e);
  219. },
  220. },
  221. watch: {},
  222. created() {
  223. this.clearImg();
  224. },
  225. mounted() {
  226. // 获取 canvas 的宽高
  227. this.canvasWidth = this.$refs.basetopu.offsetWidth;
  228. this.canvasHeight = this.$refs.basetopu.offsetHeight;
  229. // 初始化场景类
  230. this.view = new FloorView("floor_topu");
  231. if (this.scene) {
  232. this.view.scene = this.scene;
  233. }
  234. this.init();
  235. },
  236. };
  237. </script>
  238. <style lang="less" scoped>
  239. .base-topu {
  240. width: 100%;
  241. height: 100%;
  242. position: relative;
  243. .sacle-btn {
  244. position: absolute;
  245. right: 20px;
  246. bottom: 20px;
  247. }
  248. }
  249. </style>