index.vue 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926
  1. <!-- 底图 -->
  2. <template>
  3. <div id='floor_base' v-loading='loading' ref='graphy'>
  4. <canvas :id='`canvas${id}`' :width='canvasWidth' :height='canvasHeight' tabindex='0'></canvas>
  5. <!-- 地图底部操作按钮 -->
  6. <div class='strip-bottom'>
  7. <canvasFun @fit='fit' @savePng='savePng' @saveSvg='saveSvg' @saveJson='saveJson' @scale='scale' @showText='showText' ref='canvasFun'></canvasFun>
  8. </div>
  9. <room-box ref='boxRoom'></room-box>
  10. <equip-detail ref='equipDetail' :key='equipKey'></equip-detail>
  11. <el-popover ref='popover' placement='right' trigger='manual' v-model='visible' width='380'>
  12. <!-- <div style="text-align: right;margin-bottom: 10px;">
  13. <span style="float: left;">对应的工程信息化信息</span>
  14. <el-link icon="el-icon-close" :underline="false" @click="visible = false"></el-link>
  15. </div>-->
  16. <!-- 点击图标,出现的弹窗 -->
  17. <div v-if='equipIds.length && !tabData.pointData.length' style='margin-top: 10px;'>
  18. <el-table
  19. :data='tabData.tableData'
  20. max-height='235'
  21. style='width: 100%'
  22. @row-click='handleClickEquipDetail'
  23. v-loading='eqLoading'
  24. :cell-class-name='tableCellClassName'
  25. >
  26. <el-table-column prop='sbjc' label='设备简称' width='144' :show-overflow-tooltip='true'></el-table-column>
  27. <el-table-column prop='sl' width='50' label='数量' :show-overflow-tooltip='true'></el-table-column>
  28. <el-table-column prop='sb_status' width='80' label='设备状态' :show-overflow-tooltip='true'></el-table-column>
  29. <el-table-column prop='sbglgs' width='80' label='管理归属' :show-overflow-tooltip='true'></el-table-column>
  30. <!-- <el-table-column prop="assetnum" width="80" label="设备内码" :show-overflow-tooltip='true'></el-table-column>
  31. <el-table-column label="" width="80" :show-overflow-tooltip='true'>
  32. <template slot-scope="scope">
  33. <span class="equip-detail-btn">台账详情</span>
  34. </template>
  35. </el-table-column>-->
  36. </el-table>
  37. <!-- <div style="text-align: right; margin-top: 10px;">
  38. <el-button size="mini" type="primary" @click="visible = false">关闭</el-button>
  39. </div>-->
  40. </div>
  41. <!-- 点击空间,出现的弹窗 -->
  42. <div v-else-if='!equipIds.length && tabData.pointData.length' style='margin-top: 10px;'>
  43. <ul class='pointList'>
  44. <li v-for='point in tabData.pointData' :key='point.id' @click='handleClickPointDeatil(point)'>
  45. <span :title='point.name'>{{point.name}}</span>
  46. <a>查看</a>
  47. </li>
  48. </ul>
  49. <div style='text-align: right; margin-top: 10px;'>
  50. <el-button v-show='showBtnWell' size='mini' type='primary' @click='handleClickHightLight(tabData.pointData)'>查看控制商铺范围</el-button>
  51. <!-- <el-button size="mini" type="primary" @click="visible = false">关闭</el-button> -->
  52. </div>
  53. </div>
  54. <!-- 既有空间,又有设备的弹窗 -->
  55. <el-tabs v-else-if='equipIds.length && tabData.pointData.length' v-model='activeName'>
  56. <el-tab-pane label='设备设施' name='equip'>
  57. <el-table
  58. :data='tabData.tableData'
  59. max-height='235'
  60. style='width: 100%'
  61. @row-click='handleClickEquipDetail'
  62. :cell-class-name='tableCellClassName'
  63. v-loading='eqLoading'
  64. >
  65. <el-table-column prop='sbjc' label='设备简称' width='164' :show-overflow-tooltip='true'></el-table-column>
  66. <el-table-column prop='sl' width='50' label='数量' :show-overflow-tooltip='true' align='right'></el-table-column>
  67. <el-table-column prop='sb_status' width='70' label='设备状态' :show-overflow-tooltip='true'></el-table-column>
  68. <el-table-column prop='sbglgs' width='70' label='管理归属' :show-overflow-tooltip='true'></el-table-column>
  69. <!-- <el-table-column prop="assetnum" width="80" label="设备内码" :show-overflow-tooltip='true'></el-table-column>
  70. <el-table-column label="" width="80" :show-overflow-tooltip='true'>
  71. <template slot-scope="scope">
  72. <span class="equip-detail-btn">台账详情</span>
  73. </template>
  74. </el-table-column>-->
  75. </el-table>
  76. <div style='text-align: right; margin-top: 10px;'>
  77. <!-- <el-button size="mini" type="primary" @click="visible = false">关闭</el-button> -->
  78. </div>
  79. </el-tab-pane>
  80. <el-tab-pane label='位置' name='point'>
  81. <ul class='pointList'>
  82. <li v-for='point in tabData.pointData' :key='point.id' @click='handleClickPointDeatil(point)'>
  83. <span :title='point.name'>{{point.name}}</span>
  84. <a>查看</a>
  85. </li>
  86. </ul>
  87. <div style='text-align: right; margin-top: 10px;'>
  88. <el-button v-show='showBtnWell' size='mini' type='primary' @click='handleClickHightLight(tabData.pointData)'>查看控制商铺范围</el-button>
  89. <!-- <el-button size="mini" type="primary" @click="visible = false">关闭</el-button> -->
  90. </div>
  91. </el-tab-pane>
  92. </el-tabs>
  93. </el-popover>
  94. <span class='popStyle' :style='popoverPosition' v-popover:popover></span>
  95. </div>
  96. </template>
  97. <script>
  98. /**
  99. * @author yunxing
  100. * @date 2020年08月21日11:04
  101. * @description 停用,已拆除的状态,使用message进行提示
  102. */
  103. import { SFengParser, ProjectRf } from '@saga-web/feng-map'
  104. import { SFloorParser, ItemOrder, ItemColor, SPolygonItem, SBoardItem } from '@saga-web/big'
  105. import { FloorView } from '@/lib/FloorView'
  106. import { FloorScene } from '@/lib/FloorScene'
  107. import RoomBox from '@/views/room/index'
  108. import canvasFun from '@/components/floorMap/canvasFun'
  109. import { readGroup, queryStatis, graphQuery } from '@/api/public'
  110. import { queryShops, queryAssetAll } from '@/api/equipmentList.js'
  111. import { STopologyParser } from '@/lib/parsers/STopologyParser'
  112. import { mapGetters, mapActions } from 'vuex'
  113. import { SImageItem, SImageShowType, SGraphItem } from '@saga-web/graph/lib'
  114. import { SColor } from '@saga-web/draw/lib'
  115. import bus from '@/utils/bus.js'
  116. import { TipelineItem } from '../../lib/items/TipelineItem'
  117. import { SImageLegendItem } from '../../lib/items/SImageLegendItem'
  118. import equipDetail from '../../views/equipment/table/equipDetail'
  119. import { debounce } from 'lodash'
  120. // import { uuid } from "@/components/mapClass/until";
  121. export default {
  122. data() {
  123. return {
  124. appName: '万达可视化系统',
  125. key: '23f30a832a862c58637a4aadbf50a566',
  126. mapServerURL: `http://map.wanda.cn/editor`,
  127. canvasWidth: 600,
  128. canvasHeight: 800,
  129. loading: false, // 限制重复查询
  130. view: null,
  131. urlMsg: {},
  132. canvasID: 'canvas',
  133. floorid: '', //楼层id
  134. topologyParser: null, // 解析器数据
  135. fParser: null, // 底图解析器
  136. wellMap: {}, // 电井控制商铺映射
  137. activeName: 'equip',
  138. popoverPosition: {
  139. top: 0,
  140. left: 0,
  141. },
  142. statusTextPosition: {
  143. top: 0,
  144. left: 0,
  145. },
  146. visible: false,
  147. eqLoading: true,
  148. equipIds: [],
  149. tabData: {
  150. tableData: [],
  151. pointData: [],
  152. },
  153. activeItem: null,
  154. showBtnWell: false,
  155. count: 0, // 顶楼为多张图时计数器
  156. equipKey: 1, //设备弹窗使用key值,解决打开弹窗数据为上次弹窗的数据
  157. statusDisabled: ['停用', '已拆除'], //显示红色的设备状态
  158. }
  159. },
  160. props: {
  161. id: {
  162. default: '1',
  163. type: String,
  164. },
  165. categoryId: {
  166. default: '',
  167. type: String,
  168. },
  169. // 弹窗高度,适配底图高度使用
  170. modalHeight: {
  171. type: [Number, undefined],
  172. default: undefined,
  173. },
  174. loadName: null,
  175. type: null,
  176. },
  177. components: { RoomBox, canvasFun, equipDetail },
  178. computed: {
  179. ...mapGetters(['plazaId', 'fmapID', 'haveFengMap', 'bunkObj']),
  180. },
  181. methods: {
  182. handleClickLegendItem(item, events) {
  183. this.tabData = { tableData: [], pointData: [] }
  184. this.equipIds = []
  185. this.showBtnWell = false
  186. this.visible = false
  187. this.activeItem = null
  188. this.isLoading = true
  189. if (item.data.AttachObjectIds && item.data.AttachObjectIds.length) {
  190. const e = events[0]
  191. this.activeItem = item
  192. item.data.AttachObjectIds.forEach((v) => {
  193. if (v.type == 'Image') {
  194. if (v.id) {
  195. this.equipIds.push(v.id)
  196. }
  197. // this.tabData.tableData.push(v);
  198. } else if (v.type == 'Zone') {
  199. this.tabData.pointData.push(v)
  200. }
  201. })
  202. if (this.equipIds.length) {
  203. this.eqLoading = true
  204. let data = {
  205. plazaId: this.$store.state.plazaId,
  206. page: 1,
  207. size: this.equipIds.length,
  208. }
  209. let postParams = {
  210. assetnumList: this.equipIds,
  211. }
  212. queryAssetAll({ data, postParams }).then((res) => {
  213. this.tabData.tableData = res.data.data
  214. this.eqLoading = false
  215. console.log(this.tabData)
  216. })
  217. }
  218. this.popoverPosition.top = `${e.clientY}px`
  219. this.popoverPosition.left = `${e.clientX}px`
  220. this.$nextTick(() => {
  221. if (
  222. item.data.GraphElementId == '100050' ||
  223. item.data.GraphElementId == '100055' ||
  224. item.data.GraphElementId == '100056' ||
  225. item.data.GraphElementId == '100057'
  226. ) {
  227. //判断是否为电井
  228. this.showBtnWell = true
  229. }
  230. this.visible = true
  231. })
  232. }
  233. },
  234. // 查看浮层设备详情
  235. handleClickEquipDetail: debounce(function (row, column, event) {
  236. // 设备状态为停用或已拆除时,弹出消息
  237. if (this.statusDisabled.includes(row?.sb_status)) {
  238. let message = `当前设备为“${row.sb_status}”状态,请前往编辑器重新编辑`
  239. // 防止出现多条message
  240. // 已经有 message时,并且this.message的message字段与message一致时, 不进行提示
  241. if (this.message && this.message.visible && this.message.message === message) {
  242. return true
  243. }
  244. this.message = this.$message({
  245. message,
  246. type: 'warning',
  247. })
  248. return true
  249. }
  250. if (row.assetnum) {
  251. this.equipKey++
  252. this.$nextTick(() => {
  253. this.$refs.equipDetail.open({ row: JSON.stringify(row) })
  254. })
  255. }
  256. }, 0),
  257. // handleClickEquipDetail(row) {
  258. // if (row.assetuid) {
  259. // window.open(`http://gcgl.wanda.cn/maximo/ui/?event=loadapp&value=assetdevic&uniqueid=${row.assetuid}`)
  260. // }
  261. // },
  262. // 查看浮层位置详情
  263. handleClickPointDeatil(point) {
  264. if (point.id && this.activeItem) this.$refs.boxRoom.open({ name: this.activeItem.name, type: this.type, location: point.id })
  265. },
  266. handleClickHightLight(pointData) {
  267. this.clearHightLight()
  268. pointData.forEach((point) => {
  269. let location = point.id ? point.id : ''
  270. if (this.wellMap.hasOwnProperty(location)) {
  271. this.wellMap[location].forEach((item) => {
  272. item.highLightFlag = true
  273. item.zOrder = 30
  274. })
  275. } else {
  276. let getParams = {
  277. plazaId: this.plazaId,
  278. floor: this.floorid,
  279. keyword: `${location}:wellnum;`,
  280. }
  281. queryShops({ getParams }).then((res) => {
  282. let shopsnumList = []
  283. let shopsnumItemList = []
  284. if (res.data && res.data.length) {
  285. for (let floor in res.data[0]) {
  286. if (res.data[0][floor].length) {
  287. res.data[0][floor].forEach((v) => {
  288. shopsnumList = shopsnumList.concat(v.shopsnumList.split(','))
  289. })
  290. }
  291. }
  292. }
  293. if (shopsnumList.length) {
  294. this.fParser.spaceList.forEach((item) => {
  295. if (shopsnumList.findIndex((name) => name == item.data.Name) != -1) {
  296. item.highLightFlag = true
  297. item.zOrder = 30
  298. shopsnumItemList.push(item)
  299. }
  300. })
  301. this.wellMap[location] = shopsnumItemList
  302. }
  303. })
  304. }
  305. })
  306. this.visible = false
  307. },
  308. ...mapActions(['getfmapID']),
  309. init(floorid) {
  310. this.loading = true
  311. this.floorid = floorid
  312. this.mapSize()
  313. this.$refs.canvasFun.isShow = false
  314. setTimeout(() => {
  315. this.clearGraphy()
  316. this.scene = new FloorScene()
  317. if (this.haveFengMap == 1) {
  318. this.scene.selectContainer.connect('listChange', this, this.listChange)
  319. if (this.canvasID != `canvas${this.id}`) {
  320. this.canvasID = `canvas${this.id}`
  321. }
  322. this.getGraphDetail().then((res) => {
  323. if (res.Content.length == 1) {
  324. const data = res.Content[0]
  325. if (data.MaxY && data.MinX) {
  326. window.fengmapData.maxY = data.MaxY
  327. window.fengmapData.minX = data.MinX
  328. }
  329. }
  330. this.parserData(floorid)
  331. })
  332. // this.parserData(floorid);
  333. } else if (this.haveFengMap == 0) {
  334. this.view.scene = this.scene
  335. this.readGraph()
  336. } else {
  337. this.loading = false
  338. }
  339. }, 100)
  340. },
  341. parserData(floor) {
  342. if (floor == 'g80') {
  343. // 屋顶
  344. if (window.fengmapData.frImg) {
  345. const pj = this.fmapID.split('_')[0]
  346. // 单张图片
  347. if (!ProjectRf[pj]) {
  348. let imgItem = new SImageItem(null, `${this.mapServerURL}/webtheme/${this.fmapID}/${window.fengmapData.frImg}`)
  349. imgItem.showType = SImageShowType.AutoFit
  350. imgItem.connect('imgLoadOver', this, () => {
  351. this.readGraph()
  352. })
  353. this.scene.addItem(imgItem)
  354. this.view.scene = this.scene
  355. // this.view.fitSceneToView()
  356. } else {
  357. // 多张图
  358. try {
  359. // 初始化0
  360. this.count = 0
  361. ProjectRf[pj].forEach((t) => {
  362. const item = new SImageItem(null, `${this.mapServerURL}/webtheme/${this.fmapID}/${t.name}`)
  363. item.width = t.width
  364. item.height = t.height
  365. item.moveTo(t.x, t.y)
  366. item.connect('imgLoadOver', this, () => {
  367. this.countRf(ProjectRf[pj].length)
  368. })
  369. this.scene.addItem(item)
  370. })
  371. this.view.scene = this.scene
  372. } catch (e) {
  373. console.log(e)
  374. }
  375. }
  376. } else {
  377. // 屋顶图不为图片
  378. this.readBaseMap(floor)
  379. }
  380. } else {
  381. if (window.fengmapData.gnameToGid[floor]) {
  382. this.readBaseMap(floor)
  383. } else {
  384. console.log('楼层不正确')
  385. }
  386. }
  387. }, // 解析底图
  388. // 解析楼地板
  389. loadBoard(floor) {
  390. window.fengmapData.loadFloor(floor, (res) => {
  391. const zone = new SBoardItem(null, res)
  392. this.scene.addItem(zone)
  393. })
  394. },
  395. readBaseMap(floor) {
  396. this.loadBoard(window.fengmapData.gnameToGid[floor])
  397. window.fengmapData.parseData(window.fengmapData.gnameToGid[floor], (res) => {
  398. if (res.err) {
  399. console.log('errr', res.err)
  400. return
  401. }
  402. this.fParser = new SFloorParser(null)
  403. this.fParser.parseData(res)
  404. this.fParser.spaceList.forEach((t) => {
  405. this.scene.addItem(t)
  406. t.nameSize = 12
  407. t.nameColor = '#2a2a2a'
  408. if (t.data.Name && this.bunkObj[t.data.Name]) {
  409. t.name = this.bunkObj[t.data.Name].brandname
  410. } else {
  411. // t.name = t.data.Name
  412. t.name = ''
  413. }
  414. })
  415. this.fParser.wallList.forEach((t) => this.scene.addItem(t))
  416. this.fParser.virtualWallList.forEach((t) => this.scene.addItem(t))
  417. this.fParser.doorList.forEach((t) => this.scene.addItem(t))
  418. this.fParser.columnList.forEach((t) => this.scene.addItem(t))
  419. this.fParser.casementList.forEach((t) => this.scene.addItem(t))
  420. this.view.scene = this.scene
  421. // this.view.fitSceneToView()
  422. this.readGraph()
  423. })
  424. },
  425. readGraph() {
  426. this.readGroup(this.floorid)
  427. .then((data) => {
  428. if (data.Result == 'failure') {
  429. this.$store.commit('SETISMESSAGE', false)
  430. this.view.fitSceneToView()
  431. this.view.minScale = this.view.scale
  432. if (this.$refs.canvasFun) {
  433. this.$refs.canvasFun.everyScale = this.view.scale
  434. }
  435. this.loading = false
  436. return
  437. } else {
  438. if (
  439. data.Data[0].Elements.Nodes.length === 0 &&
  440. data.Data[0].Elements.Markers.length === 0 &&
  441. data.Data[0].Elements.Relations.length === 0
  442. ) {
  443. this.$store.commit('SETISMESSAGE', false)
  444. } else {
  445. this.$store.commit('SETISMESSAGE', true)
  446. }
  447. }
  448. // 无返回Data处理
  449. if (!(data.Data && data.Data.length)) {
  450. this.view.fitSceneToView()
  451. this.view.minScale = this.view.scale
  452. if (this.$refs.canvasFun) {
  453. this.$refs.canvasFun.everyScale = this.view.scale
  454. }
  455. return false
  456. }
  457. // 请求回来的备注
  458. if (data.Data && data.Data[0].Note) {
  459. let note = data.Data[0].Note
  460. bus.$emit('queryRemarksMethods', note)
  461. } else {
  462. bus.$emit('queryRemarksMethods', '')
  463. }
  464. //土建装饰的图例展示
  465. if (this.$cookie.get('categoryId') == 'SCPZ') {
  466. let scpzTable = [],
  467. arr = []
  468. scpzTable = data.Data[0].Elements.Nodes || []
  469. console.log(scpzTable)
  470. if (scpzTable.length > 0) {
  471. scpzTable.forEach((e) => {
  472. if (e.Properties.ItemExplain) {
  473. let obj = e
  474. arr.push(obj)
  475. }
  476. })
  477. }
  478. console.log(arr)
  479. this.$store.commit('SETSCPZTABLE', arr)
  480. }
  481. if (data.Data[0].Elements.Nodes.length > 0) {
  482. this.$store.commit('SETTYPENUM', '')
  483. let Lengd = data.Data[0].Elements.Nodes
  484. Lengd.forEach((el) => {
  485. if (el.Type == 'Image' && el.Num > 1) {
  486. console.log(el.Num)
  487. this.$store.commit('SETTYPENUM', el.Num)
  488. }
  489. })
  490. }
  491. // 放到后边 $cookie graphId
  492. this.$cookie.set('graphId', data.Data[0].ID, 3)
  493. if (this.$cookie.get('graphId')) {
  494. // 得到graphId 就请求图例
  495. // 除土建装饰之外的图例展示 包括楼层功能
  496. bus.$emit('queryViewMethods')
  497. }
  498. this.topologyParser = new STopologyParser(null)
  499. this.topologyParser.parseData(data.Data[0].Elements)
  500. // 多边形
  501. this.topologyParser.zoneLegendList.forEach((t) => {
  502. this.scene.addItem(t)
  503. t.connect('legendItemClick', t, this.handleClickLegendItem)
  504. })
  505. // 增加文字
  506. this.topologyParser.textMarkerList.forEach((t) => {
  507. this.scene.addItem(t)
  508. })
  509. // 增加图片
  510. this.topologyParser.imageMarkerList.forEach((t) => {
  511. this.scene.addItem(t)
  512. })
  513. // 增加直线
  514. this.topologyParser.lineMarkerList.forEach((t) => {
  515. this.scene.addItem(t)
  516. })
  517. // 增加图标类图例
  518. this.topologyParser.imageLegendList.forEach((t) => {
  519. this.scene.addItem(t)
  520. t.connect('legendItemClick', t, this.handleClickLegendItem)
  521. })
  522. // 增加管线类
  523. // 增加图标类图例
  524. this.topologyParser.relationList.forEach((t) => {
  525. t.selectable = true
  526. this.scene.addItem(t)
  527. t.connect('legendItemClick', t, this.handleClickLegendItem)
  528. })
  529. this.view.fitSceneToView()
  530. this.view.minScale = this.view.scale
  531. if (this.$refs.canvasFun) {
  532. this.$refs.canvasFun.everyScale = this.view.scale
  533. }
  534. this.loading = false
  535. })
  536. .catch(() => {
  537. this.loading = false
  538. })
  539. },
  540. // 顶楼为多张图时计数器
  541. countRf(len) {
  542. this.count++
  543. if (len == this.count) {
  544. this.readGraph()
  545. } else {
  546. console.log('所有图片未加载完成')
  547. }
  548. },
  549. clearGraphy() {
  550. if (this.view) {
  551. this.view.scene = null
  552. return
  553. }
  554. this.view = new FloorView(`canvas${this.id}`)
  555. },
  556. listChange(item, ev) {
  557. // if (ev[0].length) {
  558. // let selectItem1 = ev[0][0],
  559. // location = selectItem1.data.AttachObjectIds[0] ? selectItem1.data.AttachObjectIds[0].id : ''
  560. // // 空间类型都可打开弹窗(除防火分区 编号100131,商管办公室 编号100112,铺装石材 编号100129)
  561. // if (selectItem1.data.GraphElementType == 'Zone') {
  562. // if (
  563. // selectItem1.data.GraphElementId != '100131' &&
  564. // selectItem1.data.GraphElementId != '100112' &&
  565. // selectItem1.data.GraphElementId != '100129'
  566. // ) {
  567. // if (location) {
  568. // this.$refs.boxRoom.open({ name: selectItem1.name, type: this.type, location: location })
  569. // }
  570. // }
  571. // }
  572. // // // 选中电井设置电井关联的商铺高亮
  573. // // this.setHightLight(ev[0])
  574. // }
  575. // else {
  576. // this.clearHightLight()
  577. // }
  578. if (ev[0].length) {
  579. if (!(ev[0][0] instanceof SPolygonItem || ev[0][0] instanceof TipelineItem || ev[0][0] instanceof SImageLegendItem)) {
  580. this.visible = false
  581. }
  582. } else {
  583. this.visible = false
  584. }
  585. this.clearHightLight()
  586. },
  587. // 选中电井关联的商铺高亮
  588. setHightLight(arr) {
  589. this.clearHightLight()
  590. arr.forEach((item) => {
  591. let location = item.data.AttachObjectIds[0] ? item.data.AttachObjectIds[0].id : ''
  592. // 添加了位置类型并且选中的类型为电井类型
  593. if (
  594. (item.data.GraphElementId == '100050' ||
  595. item.data.GraphElementId == '100055' ||
  596. item.data.GraphElementId == '100056' ||
  597. item.data.GraphElementId == '100057') &&
  598. location
  599. ) {
  600. if (this.wellMap.hasOwnProperty(location)) {
  601. this.wellMap[location].forEach((item) => {
  602. item.highLightFlag = true
  603. item.zOrder = 30
  604. })
  605. } else {
  606. let getParams = {
  607. plazaId: this.plazaId,
  608. floor: this.floorid,
  609. keyword: `${location}:wellnum;`,
  610. }
  611. queryShops({ getParams }).then((res) => {
  612. let shopsnumList = []
  613. let shopsnumItemList = []
  614. if (res.data && res.data.length) {
  615. for (let floor in res.data[0]) {
  616. if (res.data[0][floor].length) {
  617. res.data[0][floor].forEach((v) => {
  618. shopsnumList = shopsnumList.concat(v.shopsnumList.split(','))
  619. })
  620. }
  621. }
  622. }
  623. if (shopsnumList.length) {
  624. this.fParser.spaceList.forEach((item) => {
  625. if (shopsnumList.findIndex((name) => name == item.data.Name) != -1) {
  626. item.highLightFlag = true
  627. item.zOrder = 30
  628. shopsnumItemList.push(item)
  629. }
  630. })
  631. this.wellMap[location] = shopsnumItemList
  632. }
  633. })
  634. }
  635. }
  636. })
  637. },
  638. // 清除电井关联商铺的高亮状态
  639. clearHightLight() {
  640. ItemColor.spaceHighColor = new SColor('#FBF2CC')
  641. for (let key in this.wellMap) {
  642. this.wellMap[key].forEach((item) => {
  643. item.highLightFlag = false
  644. item.zOrder = ItemOrder.spaceOrder
  645. })
  646. }
  647. },
  648. // 适配底图到窗口
  649. fit() {
  650. this.view.fitSceneToView()
  651. },
  652. // 保存为png
  653. savePng() {
  654. // this.view.saveImage(`${this.loadName}.png`, 'png')
  655. this.view.saveImageSize(`${this.loadName}.png`, 'png', 1920 * 2, 1080 * 2)
  656. //console.log(`${this.loadName}.png`)
  657. },
  658. // 保存为svg
  659. saveSvg() {
  660. this.view.saveSceneSvg(`${this.loadName}.svg`, 6400, 4800)
  661. },
  662. // 保存为json
  663. saveJson() {
  664. this.view.saveFloorJson(`${this.loadName}.json`)
  665. },
  666. // 缩放
  667. scale(val) {
  668. if (!this.view) {
  669. return
  670. }
  671. let scale = this.view.scale
  672. this.view.scaleByPoint(val / scale, this.canvasWidth / 2, this.canvasHeight / 2)
  673. },
  674. // 小眼睛控制显示铺位名称
  675. showText(val) {
  676. // this.topologyParser.zoneLegendList.forEach(t => {
  677. // t.showText = val
  678. // })
  679. this.fParser.spaceList.forEach((t) => {
  680. t.showBaseName = val
  681. })
  682. },
  683. // 读取数据
  684. readGroup(FloorID) {
  685. const data = {
  686. BuildingID: '1',
  687. FloorID: FloorID,
  688. categoryId: this.categoryId ? this.categoryId : this.$cookie.get('categoryId'),
  689. projectId: this.urlMsg.ProjectID,
  690. Pub: true,
  691. }
  692. return readGroup(data)
  693. },
  694. // 获取图最大最小值
  695. getGraphDetail() {
  696. const categoryId = this.categoryId ? this.categoryId : this.$cookie.get('categoryId')
  697. const data = {
  698. Filters: `categoryId='${categoryId}';projectId='${this.urlMsg.ProjectID}';BuildingID='1';FloorID='${this.floorid}';isPub=true`,
  699. }
  700. return graphQuery(data)
  701. },
  702. // 地图尺寸
  703. mapSize() {
  704. this.canvasWidth = this.$refs.graphy.offsetWidth
  705. if (window.screen.height == '768') {
  706. this.canvasHeight = this.$refs.graphy.offsetHeight - 100
  707. } else {
  708. this.canvasHeight = 900
  709. }
  710. // 弹窗中底图高度适配
  711. if (this.modalHeight) {
  712. this.canvasHeight = this.modalHeight
  713. }
  714. },
  715. getEvent() {
  716. bus.$on('changeShow', (res) => {
  717. this.topologyParser &&
  718. this.topologyParser.zoneLegendList.forEach((t) => {
  719. let id = t.data.GraphElementId
  720. t.maskFlag = !(res.indexOf(id) > -1)
  721. })
  722. // this.topologyParser.textMarkerList.forEach(t => {
  723. // let id = t.data.GraphElementId
  724. // t.maskFlag = !(res.indexOf(id) > -1)
  725. // })
  726. // this.topologyParser.imageMarkerList.forEach(t => {
  727. // let id = t.data.GraphElementId
  728. // t.maskFlag = !(res.indexOf(id) > -1)
  729. // })
  730. // this.topologyParser.lineMarkerList.forEach(t => {
  731. // let id = t.data.GraphElementId
  732. // t.maskFlag = !(res.indexOf(id) > -1)
  733. // })
  734. this.topologyParser &&
  735. this.topologyParser.imageLegendList.forEach((t) => {
  736. let id = t.data.GraphElementId
  737. t.maskFlag = !(res.indexOf(id) > -1)
  738. })
  739. this.topologyParser &&
  740. this.topologyParser.relationList.forEach((t) => {
  741. let id = t.data.GraphElementId || t.data.GraphElementID
  742. t.maskFlag = !(res.indexOf(id) > -1)
  743. })
  744. })
  745. },
  746. /**
  747. * @description 处理popover显隐
  748. * 当点击位置不在canvas内部时 ( 如点击 页面空白,图例,楼层,设备设施左侧列表项时),将visible置为false,隐藏popover
  749. */
  750. handlePopover(e) {
  751. this.$nextTick(() => {
  752. if (!this.$refs.graphy.contains(e.target)) {
  753. this.visible = false
  754. }
  755. this.showStatusText = false
  756. this.statusText = ''
  757. })
  758. },
  759. /**
  760. * @description 设备状态列, 状态为停用或已拆除时,样式红色
  761. */
  762. tableCellClassName({ row, column, rowIndex, columnIndex }) {
  763. if (columnIndex === 2 && this.statusDisabled.includes(row.sb_status)) {
  764. return 'status-disabled'
  765. }
  766. },
  767. },
  768. watch: {
  769. 'view.scale': {
  770. handler(n) {
  771. if (this.$refs.canvasFun) {
  772. let s = (n * 10) / this.view.minScale
  773. this.$refs.canvasFun.sliderVal = s > 1000 ? 1000 : s
  774. }
  775. },
  776. },
  777. haveFengMap() {
  778. this.init(this.floorid)
  779. },
  780. },
  781. mounted() {
  782. this.mapSize()
  783. this.getEvent()
  784. // 添加监听点击事件,处理popover显隐
  785. window.addEventListener('click', this.handlePopover, false)
  786. this.$once('hook:beforeDestroy', () => {
  787. window.removeEventListener('click', this.handlePopover)
  788. })
  789. },
  790. created() {
  791. // document.addEventListener("mousedown", () => {
  792. // this.visible = false;
  793. // })
  794. this.urlMsg = {
  795. categoryId: this.$cookie.get('categoryId'),
  796. ProjectID: this.plazaId,
  797. BuildingID: '1',
  798. FloorID: this.$cookie.get('floorMapId') || 'f1',
  799. fmapID: this.fmapID,
  800. }
  801. },
  802. }
  803. </script>
  804. <style lang="less" scoped>
  805. #floor_base {
  806. position: relative;
  807. height: 100%;
  808. .fengMap {
  809. position: fixed;
  810. width: 100px;
  811. height: 100px;
  812. z-index: -1;
  813. }
  814. .strip-bottom {
  815. position: absolute;
  816. right: 0;
  817. bottom: 40px;
  818. width: 100%;
  819. }
  820. .popStyle {
  821. position: fixed;
  822. }
  823. }
  824. </style>
  825. <style lang="less">
  826. a:hover {
  827. text-decoration: none;
  828. }
  829. .el-popover {
  830. .el-table {
  831. tr {
  832. .equip-detail-btn {
  833. display: none;
  834. }
  835. }
  836. tr:hover {
  837. cursor: pointer;
  838. .equip-detail-btn {
  839. cursor: pointer;
  840. display: inline-block;
  841. color: #025baa;
  842. }
  843. }
  844. }
  845. .pointList {
  846. max-height: 235px;
  847. overflow-y: auto;
  848. text-align: right;
  849. li {
  850. height: 38px;
  851. line-height: 38px;
  852. padding: 0 12px;
  853. cursor: pointer;
  854. border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  855. span {
  856. float: left;
  857. width: 260px;
  858. text-align: left;
  859. overflow: hidden;
  860. text-overflow: ellipsis;
  861. white-space: nowrap;
  862. }
  863. a {
  864. display: none;
  865. color: #025baa;
  866. font-size: 13px;
  867. }
  868. }
  869. li:hover {
  870. background-color: #f5f6f7;
  871. a {
  872. display: inline-block;
  873. }
  874. }
  875. }
  876. .el-button--primary {
  877. background: linear-gradient(180deg, #369cf7 0%, #025baa 100%);
  878. }
  879. .el-tabs--bottom .el-tabs__item.is-bottom:nth-child(2),
  880. .el-tabs--bottom .el-tabs__item.is-top:nth-child(2),
  881. .el-tabs--top .el-tabs__item.is-bottom:nth-child(2),
  882. .el-tabs--top .el-tabs__item.is-top:nth-child(2) {
  883. padding-left: 16px;
  884. }
  885. .el-tabs--bottom .el-tabs__item.is-bottom:last-child,
  886. .el-tabs--bottom .el-tabs__item.is-top:last-child,
  887. .el-tabs--top .el-tabs__item.is-bottom:last-child,
  888. .el-tabs--top .el-tabs__item.is-top:last-child {
  889. padding-right: 16px;
  890. }
  891. .el-tabs__nav-wrap::after {
  892. height: 0;
  893. }
  894. .is-active {
  895. color: #025baa !important;
  896. border-color: #025baa !important;
  897. background: rgba(2, 91, 170, 0.15);
  898. }
  899. .el-tabs__item {
  900. padding: 5px 16px;
  901. height: 30px;
  902. line-height: 20px;
  903. font-size: 14px;
  904. font-family: MicrosoftYaHei;
  905. color: rgba(31, 36, 41, 1);
  906. border: 1px solid rgba(195, 199, 203, 1);
  907. }
  908. .el-tabs__active-bar {
  909. background-color: transparent !important;
  910. }
  911. /deep/ .el-tabs__item:last-child {
  912. border-radius: 0px 4px 4px 0px;
  913. }
  914. /deep/ .el-tabs__item:nth-child(2) {
  915. border-radius: 4px 0px 0px 4px;
  916. }
  917. // 设备状态
  918. .status-disabled {
  919. color: #c0c4cc !important;
  920. text-decoration: line-through;
  921. }
  922. }
  923. </style>