baseEditer.vue 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914
  1. <template>
  2. <div id='baseEditer' ref='graphy'>
  3. <div id='fengMap'></div>
  4. <div class='canvas-container'>
  5. <canvas id='canvas' :width='canvasWidth' :height='canvasHeight' ref='canvas' tabindex='0'></canvas>
  6. </div>
  7. </div>
  8. </template>
  9. <script>
  10. import { SFengParser } from '@saga-web/feng-map'
  11. import { SFloorParser } from '@saga-web/big'
  12. import { FloorView } from './../lib/FloorView'
  13. import { EditScence } from './mapClass/EditScence'
  14. import bus from '@/bus'
  15. import bus2 from '@/bus2'
  16. import { saveGroup, readGroup, queryTypeGraph, publishGraph } from '@/api/editer.js'
  17. import { STopologyParser } from './../lib/parsers/STopologyParser'
  18. import { uuid } from '@/components/mapClass/until'
  19. import { SImageItem } from '@saga-web/graph/lib'
  20. import { SPainter, SColor, SFont, SPoint } from '@saga-web/draw'
  21. import store from '../store'
  22. import { Loading } from 'element-ui'
  23. import { Message } from 'element-ui'
  24. // import { SEquipParser } from "../../../sagacloud-web/saga-web-big/src";
  25. import { SEquipmentParser } from '../lib/parsers/SEquipmentParser'
  26. import { saveJSON } from '../utils/util'
  27. import { SEquipmentItem } from '@/lib/items/SEquipmentItem' // 设备类
  28. let fengmap = null
  29. //// 底图空间增加字段 isExtracted:boolean true 已被提取过
  30. export default {
  31. props: {
  32. cmdType: {
  33. type: String,
  34. default: 'choice',
  35. required: false,
  36. },
  37. changeTextMsg: {
  38. type: String,
  39. default: '',
  40. required: false,
  41. },
  42. },
  43. data() {
  44. return {
  45. appName: '万达可视化系统',
  46. key: '23f30a832a862c58637a4aadbf50a566',
  47. mapServerURL: 'http://map.wanda.cn/editor',
  48. canvasWidth: 700,
  49. canvasHeight: 800,
  50. fParser: null,
  51. scene: null,
  52. view: null,
  53. floorList: {},
  54. urlMsg: {},
  55. chiceItemList: [], //选中itemlist
  56. hasTypeList: [], // 当前类型下包含的typeid(提取)
  57. graphId: '',
  58. initScale: 1, //加载好底图之后的,初始缩放比例
  59. changeScaleByClick: false, //区分 滚轮,点击 事件改变的缩放比
  60. baseInfo: {
  61. Name: '', // 图名称
  62. CategoryID: '',
  63. ProjectID: '', // 项目ID
  64. BuildingID: '', // 建筑ID
  65. FloorID: '', // 楼层id
  66. Note: '', // 楼层id
  67. },
  68. newBaseInfo: {},
  69. }
  70. },
  71. mounted() {
  72. this.canvasWidth = this.$refs.graphy.offsetWidth
  73. this.canvasHeight = this.$refs.graphy.offsetHeight - 10
  74. this.init()
  75. // 挂在bus
  76. this.getBus()
  77. store.dispatch('getElementType', { PageSize: 1000 })
  78. },
  79. methods: {
  80. init() {
  81. document.getElementById(`canvas`).focus()
  82. this.clearGraphy()
  83. this.scene = new EditScence()
  84. this.view.scene = this.scene
  85. // this.initLoad();
  86. this.view.fitSceneToView()
  87. this.scene.emitChange = this.emitChange //监听
  88. this.scene.scenceUpdate = this.scenceUpdate
  89. },
  90. /**
  91. * 使用模拟数据,加载绘制后的数据到视图
  92. */
  93. initLoad() {
  94. let data = require('./mock.json')
  95. const parserData = new STopologyParser(null)
  96. parserData.parseData(data.Elements)
  97. let Markers = data.Elements.Markers
  98. let Nodes = data.Elements.Nodes
  99. const itemMap = {}
  100. // 使用 SEquipmentParser 解析器增加设备
  101. let parserData1 = new SEquipmentParser(null)
  102. let Equipmnet = Nodes.filter((node) => node.GraphElementType === 'Equipmnet')
  103. parserData1.parseData(Equipmnet)
  104. parserData1.equipmentItem.map((item) => {
  105. item.selectable = true
  106. item.connect('equipImgLoadOver', this, () => {
  107. this.view.fitSceneToView()
  108. })
  109. this.scene.addItem(item)
  110. // this.scene.equipmentItem.push(item);
  111. this.scene.Nodes.push(item)
  112. console.log(item)
  113. itemMap[item.id] = item
  114. })
  115. // 使用STopologyParser 解析器 增加直线
  116. parserData.lineMarkerList.map((t) => {
  117. this.scene.addItem(t)
  118. this.scene.Markers.push(t)
  119. // 设置关联Item;
  120. if (t.data.Properties && t.data.Properties.StartItemId) {
  121. const startItem = itemMap[t.data.Properties.StartItemId]
  122. startItem?.connect('onMove', t, t.changePos)
  123. t.startItem = startItem || null
  124. }
  125. if (t.data.Properties && t.data.Properties.EndItemId) {
  126. const endItem = itemMap[t.data.Properties.EndItemId]
  127. endItem?.connect('onMove', t, t.changePos)
  128. t.endItem = endItem || null
  129. }
  130. })
  131. // 增加管线类(需在图标类图例添加后添加)
  132. parserData.relationList.forEach((t) => {
  133. this.scene.addItem(t)
  134. this.scene.Relations.push(t)
  135. // 设置锚点
  136. if (t.anchor1ID) {
  137. const startAnc = itemMap[t.anchor1ID]
  138. startAnc.isConnected = true
  139. startAnc.parent?.connect('changePos', t, t.changePos)
  140. t.startAnchor = startAnc || null
  141. }
  142. if (t.anchor2ID) {
  143. const endAnc = itemMap[t.anchor2ID]
  144. endAnc.isConnected = true
  145. endAnc.parent?.connect('changePos', t, t.changePos)
  146. t.endAnchor = endAnc || null
  147. }
  148. })
  149. bus2.$emit('elementDataChange', this.scene)
  150. },
  151. /**
  152. * 本地上传万抽后,读取json进行处理
  153. * @param data json数据
  154. */
  155. loadJSON(data) {
  156. console.log(JSON.stringify(data, null, 2))
  157. const parserData = new STopologyParser(null)
  158. parserData.parseData(data.Elements)
  159. let Markers = data.Elements.Markers
  160. let Nodes = data.Elements.Nodes
  161. const itemMap = {}
  162. // 使用 SEquipmentParser 解析器增加设备
  163. let parserData1 = new SEquipmentParser(null)
  164. let Equipmnet = Nodes.filter((node) => node.GraphElementType === 'Equipment')
  165. parserData1.parseData(Equipmnet)
  166. parserData1.equipmentItem.map((item) => {
  167. item.selectable = true
  168. item.connect('equipImgLoadOver', this, () => {
  169. this.view.fitSceneToView()
  170. })
  171. this.scene.addItem(item)
  172. // this.scene.equipmentItem.push(item);
  173. this.scene.Nodes.push(item)
  174. console.log(item)
  175. itemMap[item.id] = item
  176. })
  177. // 使用STopologyParser 解析器 增加直线,管线桥线
  178. // 多边形(此item需在直线item添加之前添加)
  179. parserData.zoneLegendList.forEach((t) => {
  180. this.scene.addItem(t)
  181. // 记录提取
  182. if (t.data.Properties && t.data.Properties.FID) {
  183. this.scene.fidToItem[t.data.Properties.FID].isExtracted = true
  184. }
  185. this.scene.Nodes.push(t)
  186. itemMap[t.id] = t
  187. })
  188. // 增加文字(此item需在直线item添加之前添加)
  189. parserData.textMarkerList.forEach((t) => {
  190. this.scene.addItem(t)
  191. this.scene.Markers.push(t)
  192. itemMap[t.id] = t
  193. })
  194. // 增加图片(此item需在直线item添加之前添加)
  195. parserData.imageMarkerList.forEach((t) => {
  196. this.scene.addItem(t)
  197. this.scene.Markers.push(t)
  198. itemMap[t.id] = t
  199. })
  200. // 增加图标类图例(此item需在管线item添加之前添加)
  201. parserData.imageLegendList.forEach((t) => {
  202. this.scene.addItem(t)
  203. this.scene.Nodes.push(t)
  204. if (t.anchorList && t.anchorList.length) {
  205. t.anchorList.forEach((anc) => {
  206. itemMap[anc.id] = anc
  207. })
  208. }
  209. })
  210. // 增加直线
  211. parserData.lineMarkerList.forEach((t) => {
  212. this.scene.addItem(t)
  213. this.scene.Markers.push(t)
  214. // 设置关联Item
  215. if (t.data.Properties && t.data.Properties.StartItemId) {
  216. const startItem = itemMap[t.data.Properties.StartItemId]
  217. startItem?.connect('onMove', t, t.changePos)
  218. t.startItem = startItem || null
  219. }
  220. if (t.data.Properties && t.data.Properties.EndItemId) {
  221. const endItem = itemMap[t.data.Properties.EndItemId]
  222. endItem?.connect('onMove', t, t.changePos)
  223. t.endItem = endItem || null
  224. }
  225. })
  226. // 增加管线类(需在图标类图例添加后添加)
  227. parserData.relationList.forEach((t) => {
  228. this.scene.addItem(t)
  229. this.scene.Relations.push(t)
  230. // 设置锚点
  231. if (t.anchor1ID) {
  232. const startAnc = itemMap[t.anchor1ID]
  233. startAnc.isConnected = true
  234. startAnc.parent?.connect('changePos', t, t.changePos)
  235. t.startAnchor = startAnc || null
  236. }
  237. if (t.anchor2ID) {
  238. const endAnc = itemMap[t.anchor2ID]
  239. endAnc.isConnected = true
  240. endAnc.parent?.connect('changePos', t, t.changePos)
  241. t.endAnchor = endAnc || null
  242. }
  243. })
  244. if (data.Elements && data.Elements.backgroundImg) {
  245. let url = data.Elements.backgroundImg
  246. console.log(url)
  247. this.scene.setBackgroundImgItem(url)
  248. this.view.fitSceneToView()
  249. }
  250. bus2.$emit('elementDataChange', this.scene)
  251. bus2.$emit('baseInfo', {
  252. Name: data.Name || '', // 图名称
  253. CategoryID: data.CategoryID || '',
  254. ProjectID: data.ProjectID || '', // 项目ID
  255. BuildingID: data.BuildingID || '', // 建筑ID
  256. FloorID: data.FloorID || '', // 楼层id
  257. Note: data.Note || '', // 楼层id
  258. })
  259. },
  260. // 不适用平面图逻辑(调用蜂鸟接口,加载底图)
  261. init1() {
  262. const loadings = Loading.service({
  263. lock: true,
  264. text: 'Loading',
  265. spinner: 'el-icon-loading',
  266. background: 'rgba(0, 0, 0, 0.7)',
  267. })
  268. document.getElementById(`canvas`).focus()
  269. this.clearGraphy()
  270. this.scene = new EditScence()
  271. fengmap = new SFengParser('fengMap', this.mapServerURL + '/fmap/' + this.urlMsg.fmapID, this.key, this.appName, null)
  272. const floorid = this.urlMsg.FloorID
  273. fengmap.loadMap(this.urlMsg.fmapID, (resp) => {
  274. this.floorList = resp
  275. fengmap.loadTheme(`${this.mapServerURL}/webtheme/${this.urlMsg.fmapID}/${this.urlMsg.fmapID}.theme`).then((response) => {
  276. console.log('获取rf成功', response)
  277. this.parserData(floorid)
  278. this.readGraph()
  279. loadings.close()
  280. })
  281. this.view.fitSceneToView()
  282. })
  283. // 获取typeid
  284. this.getTypeId()
  285. this.scene.emitChange = this.emitChange
  286. this.scene.scenceUpdate = this.scenceUpdate
  287. },
  288. parserData(floor) {
  289. if (floor == 'g80') {
  290. // 屋顶
  291. if (fengmap.frImg) {
  292. const imgItem = new SImageItem(null, `${this.mapServerURL}/webtheme/${this.urlMsg.fmapID}/${fengmap.frImg}`)
  293. this.scene.addItem(imgItem)
  294. this.view.scene = this.scene
  295. this.view.fitSceneToView()
  296. this.loading = false
  297. this.isQuerying = false
  298. }
  299. } else {
  300. if (this.floorList[floor]) {
  301. fengmap.parseData(this.floorList[floor], (res) => {
  302. if (res.err) {
  303. console.log(res.err)
  304. return
  305. }
  306. this.fParser = new SFloorParser(null)
  307. this.fParser.parseData(res)
  308. this.scene.fidToItem = {}
  309. this.fParser.spaceList.forEach((t) => {
  310. t.zOrder = t.zOrder + t.data.Height
  311. t.selectable = true
  312. this.scene.fidToItem[t.data.SourceId] = t
  313. this.scene.addItem(t)
  314. })
  315. this.scene.spaceList = this.fParser.spaceList
  316. this.fParser.wallList.forEach((t) => this.scene.addItem(t))
  317. this.fParser.virtualWallList.forEach((t) => this.scene.addItem(t))
  318. this.fParser.doorList.forEach((t) => this.scene.addItem(t))
  319. this.fParser.columnList.forEach((t) => this.scene.addItem(t))
  320. this.fParser.casementList.forEach((t) => this.scene.addItem(t))
  321. this.view.scene = this.scene
  322. this.view.fitSceneToView()
  323. this.loading = false
  324. this.isQuerying = false
  325. console.log('success')
  326. // 设置初始化缩放比例
  327. this.initScale = this.view.scale
  328. bus2.$emit('initScale', this.view.scale)
  329. })
  330. } else {
  331. console.log('楼层不正确')
  332. }
  333. }
  334. },
  335. // 读取绘制数据
  336. // 读取绘制数据
  337. readGraph() {
  338. this.readGroup().then((data) => {
  339. this.graphId = data.Data[0].ID
  340. bus.$emit('setGraphId', this.graphId)
  341. if (data.Data) {
  342. const parserData = new STopologyParser(null)
  343. const itemMap = {}
  344. parserData.parseData(data.Data[0].Elements)
  345. // 多边形(此item需在直线item添加之前添加)
  346. parserData.zoneLegendList.forEach((t) => {
  347. this.scene.addItem(t)
  348. // 记录提取
  349. if (t.data.Properties && t.data.Properties.FID) {
  350. this.scene.fidToItem[t.data.Properties.FID].isExtracted = true
  351. }
  352. this.scene.Nodes.push(t)
  353. itemMap[t.id] = t
  354. })
  355. // 增加文字(此item需在直线item添加之前添加)
  356. parserData.textMarkerList.forEach((t) => {
  357. this.scene.addItem(t)
  358. this.scene.Markers.push(t)
  359. itemMap[t.id] = t
  360. })
  361. // 增加图片(此item需在直线item添加之前添加)
  362. parserData.imageMarkerList.forEach((t) => {
  363. this.scene.addItem(t)
  364. this.scene.Markers.push(t)
  365. itemMap[t.id] = t
  366. })
  367. // 增加图标类图例(此item需在管线item添加之前添加)
  368. parserData.imageLegendList.forEach((t) => {
  369. this.scene.addItem(t)
  370. this.scene.Nodes.push(t)
  371. if (t.anchorList && t.anchorList.length) {
  372. t.anchorList.forEach((anc) => {
  373. itemMap[anc.id] = anc
  374. })
  375. }
  376. })
  377. // 增加直线
  378. parserData.lineMarkerList.forEach((t) => {
  379. this.scene.addItem(t)
  380. this.scene.Markers.push(t)
  381. // 设置关联Item
  382. if (t.data.Properties && t.data.Properties.StartItemId) {
  383. const startItem = itemMap[t.data.Properties.StartItemId]
  384. startItem?.connect('onMove', t, t.changePos)
  385. t.startItem = startItem || null
  386. }
  387. if (t.data.Properties && t.data.Properties.EndItemId) {
  388. const endItem = itemMap[t.data.Properties.EndItemId]
  389. endItem?.connect('onMove', t, t.changePos)
  390. t.endItem = endItem || null
  391. }
  392. })
  393. // 增加管线类(需在图标类图例添加后添加)
  394. parserData.relationList.forEach((t) => {
  395. this.scene.addItem(t)
  396. this.scene.Relations.push(t)
  397. // 设置锚点
  398. if (t.anchor1ID) {
  399. const startAnc = itemMap[t.anchor1ID]
  400. startAnc.isConnected = true
  401. startAnc.parent?.connect('changePos', t, t.changePos)
  402. t.startAnchor = startAnc || null
  403. }
  404. if (t.anchor2ID) {
  405. const endAnc = itemMap[t.anchor2ID]
  406. endAnc.isConnected = true
  407. endAnc.parent?.connect('changePos', t, t.changePos)
  408. t.endAnchor = endAnc || null
  409. }
  410. })
  411. this.view.fitSceneToView()
  412. bus2.$emit('elementDataChange', this.scene)
  413. }
  414. })
  415. },
  416. // 监听变化
  417. emitChange(itemMsg) {
  418. console.log('itemMsg', itemMsg)
  419. this.chiceItemList = itemMsg.itemList
  420. this.$emit('changeFocusItem', itemMsg)
  421. bus2.$emit('FocusItemChanged', itemMsg)
  422. },
  423. // 监听场景元素数据变化
  424. scenceUpdate(scence) {
  425. bus2.$emit('elementDataChange', scence)
  426. },
  427. clearGraphy() {
  428. if (this.view) {
  429. this.view.scene = null
  430. return
  431. }
  432. this.view = new FloorView('canvas')
  433. document.getElementById('canvas').focus()
  434. },
  435. getBus() {
  436. // 取消所有监听,防止触发多次监听
  437. bus.$off()
  438. // 监听 baseInfo.vue组件修改后的项目基本信息
  439. bus.$on('newBaseInfo', (data) => {
  440. console.log(data)
  441. this.newBaseInfo = {
  442. Name: data.Name || '', // 图名称
  443. CategoryID: data.CategoryID || '',
  444. ProjectID: data.ProjectID || '', // 项目ID
  445. BuildingID: data.BuildingID || '', // 建筑ID
  446. FloorID: data.FloorID || '', // 楼层id
  447. Note: data.Note || '', // 备注
  448. }
  449. })
  450. // 添加设备
  451. bus.$on('addEquip', () => {
  452. // console.log("addEquip");
  453. const parserData = new SEquipmentParser(null)
  454. //
  455. let imgKey = window.__systemConf.imgKey
  456. let Nodes = [
  457. {
  458. ID: '123123', // ID
  459. Name: '1#冷冻泵', // 名称
  460. AttachObjectIds: ['Eq001', 'Eq002'], // 返回工程信息化对象 ID 列表
  461. GraphElementType: 'Equipmnet',
  462. Pos: { X: 170, Y: 188 }, // 位置
  463. Size: { Width: 80, Height: 80 }, // 大小
  464. InfoList: [
  465. {
  466. Code: '', // 对应设备的信息点
  467. Name: '温度', //信息点名称
  468. X: 30,
  469. Y: 20,
  470. Width: 100,
  471. Height: 25,
  472. FontSize: 12,
  473. Background: '#ffffff',
  474. TextAlign: '',
  475. Color: '#000000',
  476. },
  477. {
  478. Code: '', // 对应设备的信息点
  479. Name: '湿度', //信息点名称
  480. X: 40,
  481. Y: 28,
  482. Width: 100,
  483. Height: 25,
  484. FontSize: 12,
  485. Background: '#ffffff',
  486. TextAlign: '',
  487. Color: '#000000',
  488. },
  489. ],
  490. Properties: {
  491. StatusImage: [
  492. {
  493. Status: 'Running', // 运行
  494. ImageKey: imgKey[0],
  495. },
  496. {
  497. Status: 'Stop', // 停止
  498. ImageKey: '270abb1b84d5416fa059b68d1f51ac33',
  499. },
  500. {
  501. Status: 'Selected', // 选择
  502. ImageKey: 'ece9f93ffc754035bcec2e8f27d66a59',
  503. },
  504. {
  505. Status: 'Warning', // 报警
  506. ImageKey: '',
  507. },
  508. ],
  509. }, // 由应用自己定义
  510. },
  511. {
  512. ID: '34535345', // ID
  513. Name: '2#冷冻泵', // 名称
  514. AttachObjectIds: ['Eq001', 'Eq002'], // 返回工程信息化对象 ID 列表
  515. GraphElementType: 'Equipmnet',
  516. Pos: { X: 177, Y: 288 },
  517. Size: { Width: 80, Height: 80 }, // 大小
  518. InfoList: [
  519. {
  520. Code: '', // 对应设备的信息点
  521. Name: '温度', //信息点名称
  522. X: 50,
  523. Y: 50,
  524. Width: 100,
  525. Height: 25,
  526. FontSize: 12,
  527. Background: '#000000',
  528. TextAlign: '',
  529. Color: '#FFFFFF',
  530. },
  531. ],
  532. Properties: {
  533. StatusImage: [
  534. {
  535. Status: 'Running', // 运行
  536. ImageKey: imgKey[1],
  537. },
  538. ],
  539. }, // 由应用自己定义
  540. },
  541. ]
  542. parserData.parseData(Nodes)
  543. parserData.equipmentItem.map((item) => {
  544. item.selectable = true
  545. this.scene.addItem(item)
  546. // this.scene.equipmentItem.push(item);
  547. this.scene.Nodes.push(item)
  548. })
  549. // this.scene.addEquipment(event);
  550. })
  551. // 添加本地json文件
  552. bus.$on('loadJSON', (json) => {
  553. console.log('on loadJSON')
  554. this.loadJSON(json)
  555. })
  556. // TODO: 修改底图
  557. bus.$on('changeImgUrl', (val) => {
  558. let url = '/serve/topology-wanda/Picture/query/' + val
  559. console.log(url)
  560. this.scene.setBackgroundImgItem(url)
  561. // 通过监听 scene.bgImg来适配到页面上
  562. // this.view.fitSceneToView();
  563. })
  564. bus.$on('changeText', (val) => {
  565. this.scene.updatedText(val)
  566. })
  567. bus.$on('changeFont', (val) => {
  568. this.scene.updatedFontSize(val)
  569. })
  570. bus.$on('changeLineWidth', (val) => {
  571. this.scene.updatedLineWidth(val)
  572. })
  573. bus.$on('changeBorderColor', (val) => {
  574. this.scene.updatedBorderColor(val)
  575. })
  576. bus.$on('changeFontColor', (val) => {
  577. this.scene.updatedFontColor(val)
  578. })
  579. bus.$on('itemWidth', (val) => {
  580. this.scene.updatedWidth(Number(val))
  581. })
  582. bus.$on('itemHeight', (val) => {
  583. this.scene.updatedHeight(Number(val))
  584. })
  585. bus.$on('itemPositon', (x, y) => {
  586. this.scene.updatedPosition(Number(x), Number(y))
  587. })
  588. bus.$on('changebackColor', (val) => {
  589. this.scene.updatedbackColor(val)
  590. })
  591. bus.$on('deleiteItem', () => {
  592. this.scene.deleiteItem()
  593. })
  594. bus.$on('changeAlignItem', (val) => {
  595. this.scene.changeAlignItem(val)
  596. })
  597. bus.$on('extractItem', () => {
  598. const map = {}
  599. console.log(this.hasTypeList)
  600. this.fParser.spaceList.forEach((t) => {
  601. if (this.hasTypeList.indexOf(t.data.Type) > -1) {
  602. if (map[t.data.Type]) {
  603. map[t.data.Type]++
  604. } else {
  605. map[t.data.Type] = 1
  606. }
  607. }
  608. })
  609. const data = []
  610. for (const key in map) {
  611. data.push({
  612. key: key,
  613. name: key,
  614. age: '',
  615. number: map[key],
  616. address: '提取',
  617. })
  618. }
  619. bus2.$emit('exportItem', data)
  620. })
  621. bus.$on('saveMsgItem', () => {
  622. // let baseInfo = JSON.parse(sessionStorage.getItem('baseInfo'))
  623. let baseInfo = this.newBaseInfo
  624. const Elements = this.scene.saveMsgItem()
  625. const data = {
  626. Elements,
  627. ID: uuid(),
  628. Name: baseInfo.Name, // 图名称
  629. CategoryID: baseInfo.CategoryID,
  630. ProjectID: baseInfo.ProjectID, // 项目ID
  631. BuildingID: baseInfo.BuildingID, // 建筑ID
  632. FloorID: baseInfo.FloorID, // 楼层id
  633. Note: baseInfo.Note, // 楼层id
  634. }
  635. /* Message({
  636. message: "上传中,切勿关闭窗口!",
  637. type: "warning"
  638. }); */
  639. console.log('%c========', 'color:blue')
  640. console.log(data)
  641. // 保存json文件到本地
  642. let jsonData = JSON.stringify(data, null, 2)
  643. let name = `${new Date().getTime()}.json`
  644. saveJSON(jsonData, name)
  645. return true
  646. saveGroup(data)
  647. .then((res) => {
  648. Message.close()
  649. this.graphId = res.Data
  650. })
  651. .catch((err) => {})
  652. })
  653. bus.$on('exportByKey', (val) => {
  654. const list = this.fParser.spaceList
  655. .map((t) => {
  656. if (t.data.Type == val.key) {
  657. if (!t.isExtracted) {
  658. t.isExtracted = true
  659. return {
  660. ID: uuid(),
  661. Name: val.name,
  662. GraphElementType: val.properties.Type,
  663. GraphElementId: '273d633cc5c54a4882794b34843d1a00',
  664. AttachObjectIds: [],
  665. Pos: { x: t.x, y: t.y },
  666. OutLine: t.pointArr[0],
  667. SubType: '',
  668. Properties: {
  669. StrokeColor: '#3d73c0',
  670. FillColor: '#72f5f980',
  671. font: 0,
  672. color: '',
  673. TextPos: { X: 0, Y: 0 },
  674. },
  675. Num: 1,
  676. }
  677. }
  678. }
  679. })
  680. .filter((item) => item)
  681. const parserData = new STopologyParser(null)
  682. parserData.parseData({ Nodes: list })
  683. parserData.zoneLegendList.forEach((t) => {
  684. this.scene.addItem(t)
  685. this.scene.Nodes.push(t)
  686. })
  687. })
  688. // 设备图例样式对象
  689. bus.$on('setLenged', (obj) => {
  690. this.scene.setlegend = obj
  691. })
  692. // 修改图片url
  693. bus.$on('upadataImageUrl', (val) => {
  694. console.log(val)
  695. this.scene.upadataImageUrl(val)
  696. })
  697. // 改变边框样式
  698. bus.$on('changeBorder', (val) => {
  699. this.scene.upadataBorder(val)
  700. })
  701. // 改变图例名称
  702. bus.$on('changeLengedName', (val) => {
  703. this.scene.upadataLengedName(val)
  704. })
  705. // 更改设备名称
  706. bus.$on('changeEquipmentName', (val) => {
  707. this.scene.updateEquipmentName(val)
  708. })
  709. // 更改设备信息点名称
  710. bus.$on('changeInfoName', (val) => {
  711. this.scene.updateEquipmentInfoName(val)
  712. })
  713. // 添加信息点
  714. bus.$on('addEquipmentInfo', () => {
  715. console.log('baseEditer addEquipmentInfo')
  716. this.scene.addEquipmentInfo()
  717. })
  718. // 删除信息点
  719. bus.$on('deleteEquipmentInfo', () => {
  720. this.scene.deleteEquipmentInfo()
  721. })
  722. // 改变图例名称
  723. bus.$on('changeImageNum', (val) => {
  724. this.scene.upadatImageNum(val)
  725. })
  726. // 修改填充色
  727. bus.$on('changefillColor', (val) => {
  728. this.scene.upadatfillColor(val)
  729. })
  730. // 修改当前得状态是否为编辑状态
  731. bus.$on('OpenEditStatus', () => {
  732. ;` ` // 获取焦点item (必须选中且仅选中一个)
  733. if (this.chiceItemList && this.chiceItemList.length && this.chiceItemList.length == 1) {
  734. if (this.scene.grabItem) {
  735. this.view.tryDbclick()
  736. } else {
  737. this.scene.grabItem = this.chiceItemList[0]
  738. this.view.tryDbclick()
  739. }
  740. }
  741. })
  742. //修改图例说明
  743. bus.$on('changeitemExplain', (val) => {
  744. this.scene.upadatitemExplain(val)
  745. })
  746. //发布图
  747. bus.$on('publishGraph', (val) => {
  748. publishGraph({ graphId: this.graphId, pubUser: '' }).then((res) => {
  749. if (res.Result == 'success') {
  750. this.$message.success(res.Message)
  751. } else {
  752. this.$message.error(res.Message)
  753. }
  754. })
  755. })
  756. //创建区域是否点选
  757. bus.$on('changeDrawType', (val) => {
  758. this.scene.isSelecting = val == 'select'
  759. }),
  760. //发布图
  761. bus.$on('publishMap', () => {
  762. if (this.graphId == '') {
  763. this.$message.error('请先保存')
  764. return false
  765. }
  766. this.publishBtn()
  767. })
  768. /**
  769. * @name changeScale缩放底图
  770. * @param { Number } zoom 缩放比例
  771. *
  772. */
  773. // TODO: changeScale缩放底图
  774. bus.$on('changeScale', (zoom) => {
  775. const { scale } = this.view
  776. this.changeScaleByClick = true
  777. this.view.scaleByPoint(zoom, this.canvasWidth / 2, this.canvasHeight / 2)
  778. this.changeScaleByClick = false
  779. setTimeout(() => {}, 100)
  780. })
  781. // 更改图例数据工程化数据
  782. bus.$on('changeAttachObjectIds', (arr) => {
  783. this.scene.upadatAttachObjectIds(arr)
  784. })
  785. },
  786. // 读取数据
  787. readGroup() {
  788. const data = {
  789. categoryId: this.urlMsg.categoryId,
  790. projectId: this.urlMsg.projectId,
  791. BuildingID: this.urlMsg.BuildingID, // 建筑ID
  792. FloorID: this.urlMsg.FloorID, // 楼层id
  793. }
  794. return readGroup(data)
  795. },
  796. //发布
  797. publishBtn() {
  798. console.log(this.graphId)
  799. const loadings = Loading.service({
  800. lock: true,
  801. text: 'Loading',
  802. spinner: 'el-icon-loading',
  803. background: 'rgba(0, 0, 0, 0.7)',
  804. })
  805. const data = {
  806. BuildingID: this.urlMsg.BuildingID,
  807. CategoryID: this.urlMsg.categoryId,
  808. FloorID: this.urlMsg.FloorID,
  809. GraphId: this.graphId,
  810. ProjectID: this.urlMsg.projectId,
  811. PubUser: '',
  812. }
  813. publishGraph(data).then((res) => {
  814. return true
  815. loadings.close()
  816. if (res.Result == 'success') {
  817. this.$message.success('发布成功')
  818. setTimeout(() => {
  819. const data = `categoryId=${this.urlMsg.categoryId}&projectId=${this.urlMsg.projectId}&BuildingID=${this.urlMsg.BuildingID}&FloorID=${this.urlMsg.FloorID}&fmapID=${this.urlMsg.fmapID}`
  820. const url = window.location.origin + '/wandaEditer/drafts?' + encodeURIComponent(data)
  821. window.open(url, true)
  822. }, 1000)
  823. } else {
  824. this.$message.error(res.Message)
  825. }
  826. })
  827. },
  828. // 获取typeid
  829. getTypeId() {
  830. const data = {
  831. categoryId: this.urlMsg.categoryId,
  832. }
  833. queryTypeGraph(data).then((res) => {
  834. this.hasTypeList = res.Data.map((t) => Number(t))
  835. })
  836. },
  837. },
  838. watch: {
  839. cmdType: {
  840. handler(cmd) {
  841. if (cmd == null || cmd == '') {
  842. cmd = 'choice'
  843. }
  844. this.scene.setCmd = cmd
  845. },
  846. deep: true,
  847. },
  848. 'scene.cmd': {
  849. handler(cmd) {
  850. this.$emit('setCmdType', cmd)
  851. },
  852. deep: true,
  853. },
  854. // 背景图加载完成后,屏幕适配
  855. 'scene.bgImg': {
  856. handler(v) {
  857. this.view.fitSceneToView()
  858. },
  859. },
  860. // 监听scale的变化
  861. 'view.scale': {
  862. handler(scale) {
  863. // 滚轮触发的缩放
  864. if (!this.changeScaleByClick) {
  865. bus2.$emit('mouseScale', scale / this.initScale)
  866. }
  867. },
  868. },
  869. },
  870. created() {
  871. const href = window.location.href
  872. // 路由
  873. // const route = href.split("?")[0];
  874. // 参数处理
  875. let params = href.split('?')[1]
  876. if (!params) {
  877. // 参数有问题
  878. return false
  879. }
  880. params = decodeURIComponent(params)
  881. // params = "categoryId=NTXT&ProjectID=5&BuildingID=1&FloorID=1"; // mock 参数
  882. const paramsArr = params.split('&')
  883. console.log('paramsArr', paramsArr)
  884. const obj = {}
  885. paramsArr.map((item) => {
  886. const arr = item.split('=')
  887. obj[arr[0]] = arr[1]
  888. })
  889. this.urlMsg = obj
  890. },
  891. }
  892. </script>
  893. <style lang="less" scoped>
  894. #baseEditer {
  895. background: #f7f9fa;
  896. width: 100%;
  897. height: 100%;
  898. // overflow: hidden;
  899. // position: relative;
  900. #fengMap {
  901. position: absolute;
  902. width: 100px;
  903. height: 100px;
  904. z-index: -1;
  905. }
  906. .canvas-container {
  907. width: 100%;
  908. height: 100%;
  909. }
  910. }
  911. </style>