drawModel.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. <template>
  2. <div :id="`drawFloor${id}`" class="drawFloor" v-loading="canvasLoading">
  3. <canvas :id="`floorCanvas${id}`" :width="cadWidth" :height="cadHeight" ref="canvas" tabindex="0"></canvas>
  4. <div class="operate" v-show="showTools">
  5. <canvasFun @fit="fit" @savePng="savePng" @saveSvg="saveSvg" @scale="scale" @saveJson="saveJson" :config="config" ref="canvasFun"></canvasFun>
  6. </div>
  7. </div>
  8. </template>
  9. <script>
  10. import { DivideFloorScene, FloorView } from "@saga-web/cad-engine/lib"
  11. import { SColor, SPoint } from "@saga-web/draw/lib";
  12. import canvasFun from "@/components/business_space/newGraphy/canvasFun"
  13. import { queryEquip } from "@/api/scan/request";
  14. export default {
  15. components: {
  16. canvasFun
  17. },
  18. data() {
  19. return {
  20. drawMainScene: null,
  21. view: null,
  22. dataKey: '',
  23. cadWidth: 800,
  24. cadHeight: 600,
  25. canvasLoading: false,
  26. modelId: '',
  27. FloorID: '',
  28. Outline: [],
  29. deviceList: [],
  30. buttonContent: "",
  31. showTools: false,
  32. config: {
  33. isEdit: false
  34. }
  35. };
  36. },
  37. props: {
  38. isEdit: {
  39. default: false
  40. },
  41. id: {
  42. default: 0
  43. },
  44. dialog: {
  45. default: false
  46. },
  47. isLight:{
  48. type: Boolean,
  49. default: false
  50. },
  51. CurrentModelId: String
  52. },
  53. created() { },
  54. mounted() {
  55. this.cadWidth = document.getElementById(`drawFloor${this.id}`).offsetWidth;
  56. this.cadHeight = document.getElementById(`drawFloor${this.id}`).offsetHeight;
  57. },
  58. methods: {
  59. initGraphy(ModelId) {
  60. this.modelId = ModelId;
  61. this.clearGraphy()
  62. this.drawMainScene = new DivideFloorScene();
  63. this.canvasLoading = true;
  64. this.drawMainScene.getFloorData('/modelapi/base-graph/query', { ModelId: ModelId }).then(res => {
  65. // console.log(this)
  66. this.getGraphtSuc(res);
  67. })
  68. },
  69. getSelectedSpaces() {//获取选中区域
  70. if (this.view && this.view.scene) {
  71. let list = this.view.scene.getSelectedSpaces();
  72. if (list.length) {
  73. return list
  74. } else {
  75. return []
  76. }
  77. } else {
  78. return []
  79. }
  80. },
  81. // 清空平面图
  82. clearGraphy() {
  83. if (this.view) {
  84. this.view.scene = null;
  85. return
  86. }
  87. let id = `floorCanvas${this.id}`;
  88. this.view = new FloorView(id)
  89. },
  90. canvasClick(item, eventObj) {//点击平面图事件
  91. this.$emit("changeButtonContent",this.drawMainScene.getSelectedSpaces().length?"通过模型空间创建":"通过模型创建")
  92. },
  93. getGraphtSuc(res) {
  94. this.showTools = true;
  95. this.canvasLoading = false;
  96. if (res.Result == 'failure') {
  97. this.showTools = false;
  98. this.$message.warning(res.Message);
  99. return;
  100. }
  101. this.view.scene = this.drawMainScene;
  102. if(this.isLight){//高亮显示未验证的区块
  103. this.deviceList = []
  104. this.highLightPoint()
  105. }
  106. this.view.fitSceneToView();
  107. this.drawMainScene.click(this, this.canvasClick);
  108. if (this.$refs.canvasFun) {
  109. this.view.minScale = this.view.scale;
  110. this.$refs.canvasFun.everyScale = this.view.scale;
  111. }
  112. },
  113. //高亮未完成验证的区块
  114. async highLightPoint() {
  115. await this.getUnverificationDevice()
  116. this.view.scene.spaceList.forEach(item => {
  117. for(let deviceItem of this.deviceList) {
  118. if(deviceItem.LocationJson && item.contains(deviceItem.LocationJson.X, -deviceItem.LocationJson.Y)){//注:坐标体系不同,Y坐标取反
  119. item.highLightFlag = true
  120. break
  121. }
  122. }
  123. })
  124. },
  125. //获取模型下未验证的设备
  126. getUnverificationDevice(pageNum) {
  127. return new Promise((resolve) => {
  128. pageNum = pageNum ? pageNum : 1
  129. let params = {
  130. Filters: `TaskState isNull;ModelId='${this.CurrentModelId}'`,
  131. Orders: "CreateTime desc, EquipID asc",
  132. Projection: ["EquipID", "BIMID", "BIMLocation", "LocationJson"],
  133. PageNumber: pageNum,
  134. PageSize: 1000
  135. }
  136. queryEquip(params, res => {
  137. this.deviceList = res.Content
  138. resolve();
  139. });
  140. });
  141. // queryEquip(params, res => {
  142. // this.deviceList = this.deviceList.concat(res.Content)
  143. // if (res.Total / (res.PageSize * res.PageNumber) > 1) {
  144. // this.getUnverificationDevice(res.PageNumber + 1)
  145. // } else { }
  146. // });
  147. },
  148. // canvas 获取焦点
  149. focus() {
  150. document.getElementById(`floorCanvas${this.id}`).focus()
  151. },
  152. // 工具栏操作
  153. // 适配底图到窗口
  154. fit() {
  155. this.view.fitSceneToView()
  156. },
  157. // 保存为png
  158. savePng() {
  159. this.view.saveImage(`${this.floor}.png`, 'png');
  160. },
  161. // 保存为svg
  162. saveSvg() {
  163. this.view.saveSceneSvg(`${this.floor}.svg`, 6400, 4800);
  164. },
  165. saveJson() {
  166. this.view.saveFloorJson(`${this.floor}.json`)
  167. },
  168. // 缩放
  169. scale(val) {
  170. if (!this.view) {
  171. return;
  172. }
  173. let scale = this.view.scale;
  174. this.view.scaleByPoint(val / scale, this.cadWidth / 2, this.cadHeight / 2);
  175. }
  176. },
  177. watch: {
  178. isLight: {
  179. handler(newValue, oldValue) {
  180. if(newValue){//高亮显示未验证的区块
  181. this.deviceList = []
  182. this.highLightPoint()
  183. } else {
  184. this.view.scene.spaceList.forEach(item => {
  185. item.highLightFlag = false
  186. })
  187. }
  188. }
  189. },
  190. CurrentModelId: {
  191. handler(newName, oldName) {
  192. if (newName) {
  193. this.initGraphy(newName)
  194. }
  195. },
  196. immediate: true,
  197. },
  198. "view.scale": {
  199. handler(n) {
  200. if (this.$refs.canvasFun) {
  201. let s = n * 10 / this.view.minScale
  202. this.$refs.canvasFun.sliderVal = s > 1000 ? 1000 : s;
  203. }
  204. }
  205. },
  206. "isEdit": {
  207. handler(n) {
  208. this.config.isEdit = n;
  209. }
  210. }
  211. }
  212. };
  213. </script>
  214. <style scoped lang="less">
  215. .drawFloor {
  216. width: 100%;
  217. height: 100%;
  218. position: relative;
  219. .operate {
  220. position: absolute;
  221. left: 50%;
  222. bottom: 20px;
  223. transform: translateX(-50%);
  224. z-index: 99;
  225. }
  226. }
  227. </style>