manageTenantZone.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624
  1. <template>
  2. <div id="manageTenantZone">
  3. <!-- 数据字典设备类型 -->
  4. <el-row>
  5. <el-button size="small" type="default" icon="el-icon-back" @click="goback"></el-button>
  6. <div style="display:inline-block;margin:10px 0 0 10px;">
  7. <label style="margin-right:10px;">业务空间类型</label>
  8. <el-badge :is-dot="onlyRead&&options.length>1">
  9. <el-select v-model="value" placeholder="请选择" @change="getTnRelatFloor">
  10. <el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value">
  11. </el-option>
  12. </el-select>
  13. </el-badge>
  14. </div>
  15. </el-row>
  16. <el-row class="main-container">
  17. <el-col :span="3" class="main-left">
  18. <div style="padding:10px;border-bottom:1px solid #e4e4e4;">
  19. <el-input :placeholder="`请输入租户名称`" @keyup.enter.native="getTenant" v-model="keyWord">
  20. <i slot="suffix" class="el-input__icon el-icon-search" @click="getTenant"></i>
  21. </el-input>
  22. </div>
  23. <div style="overflow-y:auto;height: calc(100% - 53px);">
  24. <div v-for="(item,i) in tenantList" :key="item.TenantID" :class="{'tenantItem':true, 'active':item.active}" @click="tenantChange(i)">
  25. {{item.TenantLocalName||item.TenantName}}
  26. </div>
  27. </div>
  28. </el-col>
  29. <el-col :span="21" style="height:100%;">
  30. <div style="height:52px;border-bottom:1px solid #e4e4e4;">
  31. <div v-if="onlyRead===true||onlyRead==='true'">
  32. <div v-for="(bd,i) in allBuilding" :key="bd.BuildID" :class="{'building':true,'active':bd.active}" @click="changeBuildSelect(i)">
  33. {{bd.BuildLocalName||bd.BuildName}}
  34. </div>
  35. </div>
  36. <div v-else style="line-height: 52px;padding:0 10px;">
  37. <label style="margin-right:10px;">所属建筑</label>
  38. <el-select v-model="buildSelect" placeholder="请选择" @change="changeBuildSelect">
  39. <el-option v-for="(item,i) in allBuilding" :key="item.BuildID" :label="item.BuildLocalName || item.BuildName" :value="i">
  40. </el-option>
  41. </el-select>
  42. <div style="float:right;">
  43. <el-button size="small" type="default" @click="editCanvas" v-if="!isEdit">编辑</el-button>
  44. <el-button size="small" type="default" @click="cancel" v-if="isEdit">取消</el-button>
  45. <el-button size="small" type="primary" @click="save" v-if="isEdit">确认</el-button>
  46. </div>
  47. </div>
  48. </div>
  49. <div class="canvas-container" ref="graphy" v-loading="canvasLoading">
  50. <div class="floor-container" v-show="floorList.length">
  51. <div class="before" @click="toBefore">
  52. <div><i class="el-icon-caret-top"></i></div>
  53. </div>
  54. <div class="floor">
  55. <div v-for="(fl,i) in floorList" :key="fl.id" :class="{'active':fl.active,'textParent':true}" @click="floorChange(i)">
  56. <div class="text" :title="fl.FloorLocalID || fl.FloorLocalName">
  57. {{fl.FloorLocalID || fl.FloorLocalName}}
  58. <span v-if="fl.Count">{{fl.Count>9?'9+':fl.Count}}</span>
  59. </div>
  60. </div>
  61. </div>
  62. <div class="after" @click="toNext">
  63. <div><i class="el-icon-caret-bottom"></i></div>
  64. </div>
  65. <div class="border"></div>
  66. </div>
  67. <canvas id="floorCanvas" :width="canvasWidth" :height="canvasHeight" v-show="hasMap"></canvas>
  68. <div class="canvas-fun" v-show="hasMap">
  69. <canvasFun @scale="scale" @fit="fit" @savePng="savePng" @saveSvg="saveSvg" @saveJson="saveJson" :config="config"
  70. @groupSelect="groupSelect" ref="canvasFun">
  71. </canvasFun>
  72. </div>
  73. <div class="center" v-show="!hasMap">
  74. <i class="icon-wushuju iconfont"></i>
  75. 暂无数据
  76. </div>
  77. </div>
  78. </el-col>
  79. </el-row>
  80. </div>
  81. </template>
  82. <script>
  83. import canvasFun from "@/components/business_space/newGraphy/canvasFun";
  84. import { mapGetters, mapActions } from "vuex";
  85. import { SColor, SPoint } from "@saga-web/draw/lib";
  86. import { DivideFloorScene, SpaceItem, ZoneItem, FloorView, Opt } from "@saga-web/cad-engine/lib";
  87. import { colorArr } from "@/utils/spaceColor"
  88. import { buildingQuery, queryTnRelateFloor, queryRentTableData, tnRelateZone, zoneQueryOutline } from '@/api/scan/request'
  89. export default {
  90. data() {
  91. return {
  92. options: [{ value: 'GeneralZone', label: '默认分区' }, { value: 'TenantZone', label: '租户分区' }],
  93. value: 'TenantZone',
  94. tenantList: [],
  95. floorList: [],
  96. canvasWidth: 800,
  97. canvasHeight: 800,
  98. onlyRead: false,
  99. allBuilding: [],
  100. buildSelect: 0,
  101. activeFloor: 0,
  102. activeTentanIndex: 0,
  103. canvasLoading: false,
  104. isEdit: false,
  105. view: '',
  106. scene: '',
  107. config: {
  108. isEdit: false,
  109. groupSelect: true
  110. },
  111. hasMap: true,
  112. keyWord: '', // 查询租户名称
  113. Cascade: {
  114. GeneralZone: 'zoneGeneraltList',
  115. TenantZone: 'zoneTenantList'
  116. }
  117. }
  118. },
  119. components: {
  120. canvasFun
  121. },
  122. computed: {
  123. ...mapGetters("layout", ["projectId"])
  124. },
  125. created() {
  126. this.onlyRead = this.$route.query.onlyRead;
  127. this.init();
  128. Opt.sceneMarkColor = new SColor('#ffffff');
  129. },
  130. mounted() {
  131. this.canvasWidth = this.$refs.graphy.offsetWidth;
  132. this.canvasHeight = this.$refs.graphy.offsetHeight;
  133. },
  134. methods: {
  135. init() {
  136. this.getTenant();
  137. },
  138. // 返回
  139. goback() {
  140. this.$router.push({ name: 'rentlist', query: { onlyRead: this.onlyRead } })
  141. },
  142. // 适配底图到窗口
  143. fit() {
  144. if (this.scene.sceneMark) {
  145. this.view.fitItemToView([this.scene.sceneMark])
  146. return
  147. }
  148. this.view.fitSceneToView()
  149. },
  150. // 缩放
  151. scale(val) {
  152. if (!this.view) {
  153. return;
  154. }
  155. let scale = this.view.scale;
  156. this.view.scaleByPoint(val / scale, this.canvasWidth / 2, this.canvasHeight / 2);
  157. },
  158. // 保存为png
  159. savePng() {
  160. this.view.saveImage(`${this.floorList[this.activeFloor].FloorID}.png`, 'png');
  161. },
  162. // 保存为svg
  163. saveSvg() {
  164. this.view.saveSceneSvg(`${this.floorList[this.activeFloor].FloorID}.svg`, 6400, 4800);
  165. },
  166. // 保存json
  167. saveJson() {
  168. this.view.saveFloorJson(`${this.floorList[this.activeFloor].FloorID}.json`)
  169. },
  170. // 框选
  171. groupSelect() {
  172. this.scene.isRectSelection = 2;
  173. },
  174. // 上一个
  175. toBefore() {
  176. if (this.activeFloor > 0) {
  177. let index = this.activeFloor - 1;
  178. this.floorChange(index)
  179. }
  180. },
  181. // 下一个
  182. toNext() {
  183. if (this.activeFloor < this.floorList.length - 1) {
  184. let index = this.activeFloor + 1;
  185. this.floorChange(index)
  186. }
  187. },
  188. // 建筑修改
  189. changeBuildSelect(val) {
  190. this.allBuilding.map(t => {
  191. t.active = false;
  192. })
  193. this.allBuilding[val].active = true;
  194. if (this.allBuilding[val].Floor && this.allBuilding[val].Floor.length) {
  195. this.floorList = this.allBuilding[val].Floor
  196. this.floorChange(0);
  197. } else {
  198. this.floorList = []
  199. }
  200. },
  201. // 租户修改
  202. tenantChange(index) {
  203. this.tenantList.map(t => {
  204. t.active = false;
  205. })
  206. this.curTenantId = this.tenantList[index].TenantID;
  207. this.tenantList[index].active = true;
  208. this.activeTentanIndex = index;
  209. this.tenantChangeInflu(index);
  210. },
  211. // 租户更改引起的修改
  212. tenantChangeInflu(i) {
  213. if (this.onlyRead === true || this.onlyRead === 'true') { // 只读模式-对空间类型处理
  214. let g = this.tenantList[i].ZoneGeneraltList;
  215. let t = this.tenantList[i].ZoneTenantList;
  216. let gFlag = g && g.length;
  217. let tFlag = t && t.length;
  218. if (gFlag) {
  219. if (tFlag) {
  220. this.options = [{ value: 'GeneralZone', label: '默认分区' }, { value: 'TenantZone', label: '租户分区' }]
  221. this.value = 'TenantZone';
  222. } else {
  223. this.options = [{ value: 'GeneralZone', label: '默认分区' }];
  224. this.value = 'GeneralZone';
  225. }
  226. } else {
  227. if (tFlag) {
  228. this.options = [{ value: 'TenantZone', label: '租户分区' }];
  229. this.value = 'TenantZone';
  230. } else {
  231. this.options = [];
  232. this.value = '';
  233. }
  234. }
  235. }
  236. this.getTnRelatFloor();
  237. },
  238. // 楼层修改
  239. floorChange(index) {
  240. this.floorList.map(t => {
  241. t.active = false;
  242. })
  243. this.activeFloor = index;
  244. this.floorList[index].active = true;
  245. this.getGraphy(index)
  246. },
  247. // canvas点击事件
  248. canvasClick(item, event) {
  249. if (!this.isEdit) {
  250. item.selected = false;
  251. }
  252. },
  253. // 编辑
  254. editCanvas() {
  255. this.isEdit = true;
  256. this.config.isEdit = true;
  257. this.scene.zoneList.map(t => {
  258. t.selected = t.highLightFlag;
  259. t.transparency = 20;
  260. t.highLightFlag = false;
  261. })
  262. },
  263. // 取消
  264. cancel() {
  265. this.isEdit = false;
  266. this.config.isEdit = false;
  267. this.scene.clearZoneSelection();
  268. this.getBusinessSpace();
  269. },
  270. // 清除canvas
  271. clearGraphy() {
  272. if (this.view) {
  273. this.view.scene = null;
  274. return
  275. }
  276. this.view = new FloorView('floorCanvas')
  277. },
  278. // 获取列表
  279. getTenant() {
  280. let pa = {
  281. Cascade: [
  282. { Name: 'zoneTenantList' },
  283. // , Cascade: [{ Name: 'building' }, { Name: 'floor' }]
  284. { Name: 'zoneGeneraltList' }
  285. ],
  286. Orders: "TenantID asc",
  287. PageSize: 1000
  288. }
  289. if (this.keyWord) {
  290. pa.Filters = `TenantLocalName contain '${this.keyWord}'`
  291. }
  292. queryRentTableData(pa, res => {
  293. this.tenantList = res.Content.map(t => {
  294. t.active = false;
  295. return t;
  296. })
  297. if (this.tenantList.length) {
  298. this.tenantChange(0)
  299. }
  300. })
  301. },
  302. // 获取业务空间
  303. getBusinessSpace() {
  304. let buildid = this.floorList[this.activeFloor].BuildID;
  305. let floorid = this.floorList[this.activeFloor].FloorID;
  306. let TenantID = this.tenantList[this.activeTentanIndex].TenantID
  307. if (buildid && floorid && this.value) {
  308. this.canvasLoading = true
  309. let pa = {
  310. Filters: `not RoomID isNull`,
  311. Orders: "createTime desc, RoomID asc",
  312. PageSize: 1000,
  313. ZoneType: this.value,
  314. BuildingId: buildid,
  315. FloorId: floorid
  316. }
  317. this.canvasLoading = false;
  318. let promise1 = new Promise((resolve) => {
  319. zoneQueryOutline(pa, res => {
  320. resolve(res);
  321. })
  322. })
  323. let pa2 = {
  324. Cascade: [
  325. { Name: this.Cascade[this.value], Filters: `FloorId='${floorid}'` }
  326. ],
  327. Filters: `TenantID='${TenantID}'`
  328. }
  329. let promise2 = new Promise((resolve) => {
  330. queryRentTableData(pa2, res => {
  331. resolve(res);
  332. })
  333. })
  334. Promise.all([promise1, promise2]).then(response => {
  335. let res1 = response[0];
  336. let res2 = response[1];
  337. let key = 'Z' + this.Cascade[this.value].substring(1);
  338. let relationList = res2.Content[0][key] || [];
  339. this.businessSpaceList = res1.Content;
  340. // 已关联元空间的业务空间
  341. this.BSPRelaISPList = [];
  342. res1.Content.map(t => {
  343. if (t.Outline && t.Outline.length) {
  344. this.BSPRelaISPList.push(t)
  345. }
  346. })
  347. // 绘制业务空间
  348. let tempArr = this.BSPRelaISPList.map((t, i) => {
  349. if (t.FloorId == this.floorList[this.activeFloor].FloorID && t.ObjectType == this.value) {
  350. return {
  351. RoomLocalName: t.RoomLocalName,
  352. OutLine: t.Outline,
  353. RoomID: t.RoomID,
  354. Color: colorArr[i % colorArr.length],
  355. HighLightFlag: relationList.findIndex((item) => (item.RoomID == t.RoomID)) > -1,
  356. Transparency: relationList.findIndex((item) => (item.RoomID == t.RoomID)) > -1 ? 20 : 1
  357. }
  358. } else {
  359. return undefined;
  360. }
  361. }).filter(item => item)
  362. this.scene.removeAllZone();
  363. this.scene.addZoneList(tempArr);
  364. this.scene.click(this, this.canvasClick);
  365. })
  366. }
  367. },
  368. // 初始化底图
  369. getGraphy(index) {
  370. if (this.floorList[index].StructureInfo && this.floorList[index].StructureInfo.FloorMap) {
  371. let floorMap = this.floorList[index].StructureInfo.FloorMap;
  372. this.clearGraphy();
  373. this.scene = new DivideFloorScene();
  374. this.hasMap = true;
  375. this.canvasLoading = true;
  376. this.scene.loadUrl(`/image-service/common/file_get?systemId=revit&key=${floorMap}`).then(res => {
  377. if (res == 'error') {
  378. this.$message.warning('数据解析异常');
  379. this.hasMap = false;
  380. this.canvasLoading = false;
  381. return;
  382. }
  383. this.view.scene = this.scene;
  384. if (this.floorList[index].Outline) {
  385. let newArr = this.floorList[index].Outline.map(t => {
  386. return new SPoint(t.X, t.Y);
  387. })
  388. this.scene.addSceneMark(newArr)
  389. }
  390. this.scene.isSpaceSelectable = false;
  391. // 绘制业务空间
  392. this.getBusinessSpace();
  393. this.fit();
  394. this.view.minScale = this.view.scale;
  395. if (this.$refs.canvasFun) {
  396. this.$refs.canvasFun.everyScale = this.view.scale;
  397. }
  398. })
  399. } else {
  400. this.hasMap = false;
  401. }
  402. },
  403. // 查询租户关联的业务空间所在建筑楼层,分区修改也会触发
  404. getTnRelatFloor() {
  405. if (this.value) {
  406. let pa = {
  407. objectType: this.value,
  408. tenantId: this.curTenantId
  409. }
  410. queryTnRelateFloor(pa, res => {
  411. this.allBuilding = res.Content.map(t => {
  412. t.active = false;
  413. if (t.Floor) {
  414. t.Floor.map(item => {
  415. item.active = false;
  416. })
  417. }
  418. return t;
  419. });
  420. if (this.onlyRead === true || this.onlyRead === 'true') {
  421. this.allBuilding = this.allBuilding.filter(item => item.Count > 0)
  422. this.allBuilding.map(t => {
  423. if (t.Floor) {
  424. t.Floor = t.Floor.filter(item => item.Count > 0)
  425. }
  426. })
  427. }
  428. if (this.allBuilding.length) {
  429. this.changeBuildSelect(this.buildSelect);
  430. }
  431. })
  432. } else {
  433. this.hasMap = false;
  434. this.canvasLoading = false;
  435. this.allBuilding = [];
  436. this.floorList = [];
  437. }
  438. },
  439. // 保存关系
  440. save() {
  441. let arr = this.scene.getSelectedZone();
  442. let pa = {
  443. data: {
  444. SpaceIdList: [],
  445. FloorId: this.floorList[this.activeFloor].FloorID,
  446. TenantId: this.curTenantId
  447. },
  448. type: this.value
  449. }
  450. pa.data.SpaceIdList = arr.map(t => {
  451. return t.data.RoomID;
  452. })
  453. tnRelateZone(pa, res => {
  454. this.isEdit = false;
  455. this.config.isEdit = false;
  456. this.$message.success('关联成功');
  457. this.getTnRelatFloor();
  458. })
  459. },
  460. },
  461. watch: {
  462. projectId() {
  463. this.init()
  464. },
  465. "view.scale": {
  466. handler(n) {
  467. if (this.$refs.canvasFun) {
  468. let s = n * 10 / this.view.minScale
  469. this.$refs.canvasFun.sliderVal = s > 1000 ? 1000 : s;
  470. }
  471. }
  472. },
  473. "scene.isRectSelection": {
  474. handler(n) {
  475. if (!n) {
  476. this.$refs.canvasFun.active = '';
  477. }
  478. }
  479. },
  480. }
  481. }
  482. </script>
  483. <style lang="less" scoped>
  484. @normal-border-color: #e4e4e4;
  485. @normal-border-active-color: #e8e8e8;
  486. #manageTenantZone {
  487. height: 100%;
  488. .main-container {
  489. margin-top: 10px;
  490. background: #fff;
  491. border: 1px solid @normal-border-color;
  492. height: calc(100% - 53px);
  493. overflow: hidden;
  494. .main-left {
  495. height: 100%;
  496. border-right: 1px solid @normal-border-color;
  497. .tenantItem {
  498. border-bottom: 1px solid @normal-border-color;
  499. text-align: center;
  500. line-height: 40px;
  501. color: #2b2b2b;
  502. cursor: pointer;
  503. &.active {
  504. background-color: @normal-border-active-color;
  505. }
  506. }
  507. }
  508. }
  509. .building {
  510. display: inline-block;
  511. margin: 7px 10px;
  512. border: 1px solid @normal-border-color;
  513. color: #2b2b2b;
  514. border-radius: 28px;
  515. padding: 4px 16px;
  516. cursor: pointer;
  517. &.active {
  518. border: 1px solid #409eff;
  519. color: #409eff;
  520. }
  521. }
  522. .canvas-container {
  523. position: relative;
  524. width: 100%;
  525. height: calc(100% - 53px);
  526. display: flex;
  527. align-items: center;
  528. justify-content: center;
  529. .floor-container {
  530. position: absolute;
  531. width: 60px;
  532. height: 260px;
  533. top: 20px;
  534. left: 20px;
  535. z-index: 2;
  536. background-color: #fff;
  537. .before,
  538. .after {
  539. div {
  540. width: 52px;
  541. height: 23px;
  542. margin: 0 auto;
  543. text-align: center;
  544. font-size: 24px;
  545. line-height: 1;
  546. color: #2b2b2b;
  547. border: 1px solid @normal-border-color;
  548. cursor: pointer;
  549. }
  550. }
  551. .floor {
  552. position: relative;
  553. height: 210px;
  554. overflow-y: auto;
  555. &::-webkit-scrollbar {
  556. display: none;
  557. }
  558. .textParent {
  559. cursor: pointer;
  560. &.active {
  561. background-image: url(~@/assets/image/floorBG.png);
  562. div.text {
  563. border: none;
  564. }
  565. }
  566. div.text {
  567. position: relative;
  568. width: 54px;
  569. height: 30px;
  570. line-height: 30px;
  571. white-space: nowrap;
  572. overflow: hidden;
  573. text-overflow: ellipsis;
  574. text-align: center;
  575. color: #2b2b2b;
  576. margin: 0 auto;
  577. padding: 0 10px;
  578. box-sizing: border-box;
  579. &:hover {
  580. background-color: #409eff1a;
  581. }
  582. b {
  583. font-weight: normal;
  584. }
  585. span {
  586. position: absolute;
  587. display: block;
  588. height: 10px;
  589. border-radius: 14px;
  590. line-height: 10px;
  591. text-align: center;
  592. top: 0;
  593. right: -2px;
  594. color: #fff;
  595. background-color: #f56c6c;
  596. padding: 5px;
  597. font-size: 12px;
  598. transform: scale(0.7, 0.7);
  599. }
  600. }
  601. }
  602. }
  603. div.border {
  604. position: absolute;
  605. width: 52px;
  606. height: 100%;
  607. left: 50%;
  608. top: 0;
  609. z-index: -1;
  610. transform: translateX(-50%);
  611. border-left: 1px solid @normal-border-color;
  612. border-right: 1px solid @normal-border-color;
  613. }
  614. }
  615. .canvas-fun {
  616. position: absolute;
  617. bottom: 20px;
  618. left: 50%;
  619. z-index: 3;
  620. transform: translateX(-50%;);
  621. }
  622. }
  623. }
  624. </style>