index.vue 38 KB

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