bimDialog.vue 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. <template>
  2. <el-dialog
  3. title='修改BIM模型中的坐标'
  4. v-if='dialog.bimcode'
  5. custom-class='custom-dialog'
  6. :visible.sync='dialog.bimcode'
  7. width='900px'
  8. @close='handleClose'
  9. >
  10. <div id='bim-code' v-if='Object.keys(bimcodeobj).length>0'>
  11. <div class='eq'>
  12. <span class='eq-name'>设备名称 &nbsp;&nbsp;</span>
  13. {{bimcodeobj.EquipLocalName || bimcodeobj.EquipName|| '--'}}
  14. </div>
  15. <div>
  16. <noAllDataFloor @change='changeFloor' ref='floors' @getFloorMap='getFloorMap'></noAllDataFloor>
  17. <span v-if='isShow' class='errMsg'>请选择设备所属建筑楼层</span>
  18. </div>
  19. <div class='canvas-box' v-loading='canvasLoading'>
  20. <canvas v-show='isdata' :id='`floorCanvas${id}`' :width='cadWidth' :height='cadHeight' ref='canvas' tabindex='0'></canvas>
  21. <p v-show='!isdata'>当前楼层暂无平面图,请前往“建筑楼层管理”中给楼层添加平面图</p>
  22. </div>
  23. </div>
  24. <div slot='footer' class='footer'>
  25. <el-button @click='handleClose'>取 消</el-button>
  26. <el-button type='primary' @click='save'>确 定</el-button>
  27. </div>
  28. </el-dialog>
  29. </template>
  30. <script>
  31. import noAllDataFloor from './noAllDataFloor'
  32. import {FloorView, LocationPointScene} from '@saga-web/cad-engine/lib'
  33. import {SPoint} from '@saga-web/draw/lib'
  34. import {updateEquip} from '@/api/scan/request'
  35. import {SGraphyItem} from '@saga-web/graphy/lib'
  36. export default {
  37. components: {
  38. noAllDataFloor,
  39. },
  40. props: {
  41. dialog: {
  42. type: Object,
  43. default: function () {
  44. return {
  45. bimcode: false,
  46. }
  47. },
  48. },
  49. bimcodeobj: {
  50. default: {},
  51. },
  52. },
  53. data() {
  54. return {
  55. cadWidth: 800,
  56. cadHeight: 400,
  57. Buildfloor: '',
  58. value: [],
  59. isdata: true,
  60. floorData: {},
  61. canvasLoading: false,
  62. isShow: false,
  63. id: 'ty',
  64. view: '',
  65. drawMainScene: '',
  66. floorToMap: {},
  67. }
  68. },
  69. watch:{
  70. bimcode:function(n,o){
  71. this.init()
  72. }
  73. },
  74. mounted() {
  75. console.log(this.bimcodeobj)
  76. this.init()
  77. },
  78. methods: {
  79. init() {
  80. this.isShow = true
  81. this.$nextTick(function () {
  82. if (this.bimcodeobj.FloorId) {
  83. this.isShow = false
  84. }
  85. if (this.$refs.floors) {
  86. this.$refs.floors.setValue([this.bimcodeobj.BuildingId, this.bimcodeobj.FloorId])
  87. }
  88. })
  89. },
  90. //切换楼层
  91. changeFloor(value) {
  92. this.Buildfloor = value
  93. this.isShow = true
  94. if (value.length > 1) {
  95. this.isShow = false
  96. this.floorData = this.floorToMap[value[1]]
  97. } else {
  98. this.isShow = false
  99. this.floorData = {}
  100. }
  101. this.getFloorData()
  102. },
  103. // 初始化canvas
  104. initGraphy(Id, type) {
  105. // type=1 => id:模型id 这里不需要
  106. // type=2 => id:floormap jsonz格式
  107. // type = 3 => id:floormap png或者jpg格式
  108. let that = this
  109. that.clearGraphy()
  110. that.drawMainScene = new LocationPointScene()
  111. that.canvasLoading = true
  112. if (type == 2) {
  113. that.drawMainScene.loadUrl(`/image-service/common/file_get?systemId=revit&key=${Id}`).then((res) => {
  114. that.getGraphtSuc(res)
  115. })
  116. } else if (type == 3) {
  117. that.drawMainScene.loadImg(`/image-service/common/image_get?systemId=dataPlatform&key=${Id}`, (res) => {
  118. that.getGraphtSuc(res)
  119. })
  120. }
  121. },
  122. // 获取底图成功
  123. getGraphtSuc(res) {
  124. this.canvasLoading = false
  125. if (res == 'error') {
  126. this.FloorMap = ''
  127. this.$message.warning('数据解析异常')
  128. return
  129. }
  130. if (res.Result == 'failure') {
  131. this.showTools = false
  132. this.$message.warning(res.Message)
  133. return
  134. }
  135. this.view.scene = this.drawMainScene
  136. if (this.bimcodeobj.LocationJson) {
  137. let obj = {
  138. X: this.bimcodeobj.LocationJson.X,
  139. Y: -this.bimcodeobj.LocationJson.Y,
  140. }
  141. //回写编辑
  142. this.drawMainScene.addMarker(obj)
  143. }
  144. this.view.fitSceneToView()
  145. this.drawMainScene.isSpaceSelectable = false
  146. this.drawMainScene.spaceClick(this, this.canvasClick) //锚点触发
  147. if (this.floorData.Outline && this.floorData.Outline.length) {
  148. let newArr = this.floorData.Outline.map((t) => {
  149. return new SPoint(t.X, t.Y)
  150. })
  151. this.drawMainScene.addSceneMark(newArr)
  152. }
  153. },
  154. //获取楼层数据
  155. getFloorData() {
  156. console.log(this.floorData)
  157. if (this.floorData && this.floorData.StructureInfo && this.floorData.StructureInfo.FloorMap) {
  158. this.isdata = true
  159. let floorMap = this.floorData.StructureInfo.FloorMap
  160. if (floorMap.split('.')[1].toString() == 'png' || floorMap.split('.')[1].toString() == 'jpg') {
  161. this.initGraphy(floorMap, 3)
  162. } else {
  163. this.initGraphy(floorMap, 2)
  164. }
  165. } else {
  166. //暂无数据
  167. this.isdata = false
  168. this.clearGraphy()
  169. }
  170. },
  171. //关闭弹窗
  172. handleClose(val) {
  173. this.view = ''
  174. this.drawMainScene = ''
  175. this.$emit('closeBIM', val)
  176. },
  177. //保存事件
  178. save() {
  179. if (this.drawMainScene) {
  180. if (this.drawMainScene.markerList.length) {
  181. let obj = this.drawMainScene.markerList[0], BIMLocation;
  182. if (this.bimcodeobj.BIMLocation && this.bimcodeobj.BIMLocation.split(',')[2]) {
  183. BIMLocation = `${obj.x.toFixed(2)},${(obj.y * -1).toFixed(2)},${this.bimcodeobj.BIMLocation.split(',')[2]}`
  184. } else {
  185. BIMLocation = `${obj.x.toFixed(2)},${(obj.y * -1).toFixed(2)},0`
  186. }
  187. let param = {
  188. Content: [
  189. {
  190. EquipID: this.bimcodeobj.EquipID,
  191. BuildingId: this.Buildfloor[0],
  192. FloorId: this.Buildfloor[1],
  193. BIMLocation
  194. },
  195. ]
  196. }
  197. param.Projection = []
  198. if(this.Buildfloor[0]){
  199. param.Projection .push('BuildingId')
  200. }
  201. if(this.Buildfloor[1]){
  202. param.Projection .push('FloorId')
  203. }
  204. if(BIMLocation){
  205. param.Projection .push('BIMLocation')
  206. }
  207. updateEquip(param, (res) => {
  208. if (res.Result == 'success') {
  209. this.$message.success('保存成功')
  210. this.handleClose('update')
  211. }
  212. })
  213. }
  214. }
  215. },
  216. // 清空平面图
  217. clearGraphy() {
  218. if (this.view) {
  219. this.view.scene = null
  220. return
  221. }
  222. let id = `floorCanvas${this.id}`
  223. this.view = new FloorView(id)
  224. },
  225. //得到floormap
  226. getFloorMap(val) {
  227. this.floorToMap = val
  228. this.floorData = this.floorToMap[this.bimcodeobj.FloorId]
  229. this.getFloorData()
  230. },
  231. // canvas点击事件
  232. canvasClick(item, event) {
  233. if (item instanceof SGraphyItem) {
  234. this.clearMark()
  235. let obj = {
  236. X: event[0].x,
  237. Y: event[0].y,
  238. }
  239. this.drawMainScene.addMarker(obj)
  240. this.view.fitSceneToView()
  241. }
  242. },
  243. //清空标记
  244. clearMark() {
  245. if (this.drawMainScene) {
  246. this.drawMainScene.markerList.forEach((t) => {
  247. this.drawMainScene.removeItem(t)
  248. })
  249. this.drawMainScene.markerList = []
  250. }
  251. },
  252. },
  253. watch: {
  254. bimcodeobj: {
  255. immediate: true,
  256. handler(val) {
  257. this.init()
  258. },
  259. },
  260. },
  261. }
  262. </script>
  263. <style lang="less" scoped>
  264. #bim-code {
  265. height: 500px;
  266. .eq {
  267. padding-bottom: 10px;
  268. .eq-name {
  269. color: #999999;
  270. padding-left: 10px;
  271. }
  272. }
  273. .errMsg {
  274. color: red;
  275. padding-left: 10px;
  276. }
  277. #buildFloor {
  278. clear: both;
  279. margin-bottom: 10px;
  280. }
  281. .canvas-box {
  282. border: 1px solid #ccc;
  283. clear: both;
  284. width: 800px;
  285. height: 400px;
  286. margin-left: 10px;
  287. display: flex;
  288. justify-content: center;
  289. align-items: center;
  290. }
  291. }
  292. </style>
  293. <style lang="less" >
  294. #bim-code {
  295. }
  296. </style>