index.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654
  1. <template>
  2. <div class="adm-space">
  3. <statistics :statistics-msg="statisticsMsg"/>
  4. <el-divider class="small-divider"></el-divider>
  5. <div class="tabs">
  6. <el-tabs v-model="activeName" type="card" @tab-click="tabChange">
  7. <el-tab-pane label="列表" name="table"></el-tab-pane>
  8. <el-tab-pane label="平面图" name="picture"></el-tab-pane>
  9. </el-tabs>
  10. <div class="tab-content">
  11. <div class="search" :class="{ 'borderBottom': activeName==='picture' }">
  12. <el-cascader clearable ref="floorCascader" placeholder="请选择建筑楼层" :options="options"
  13. v-model="building" filterable size="small"
  14. @change="changeCascader" style="margin-right: 12px"
  15. v-if="activeName==='table'"></el-cascader>
  16. <admSearch @SearchValue="searchValue" class="item" v-if="activeName==='table'"/>
  17. <el-cascader clearable ref="graphCascader" placeholder="请选择建筑楼层" :options="graphOptions"
  18. v-model="graphBuilding" filterable
  19. size="small" @change="changeGraphCascader" style="margin-right: 12px"
  20. v-if="activeName==='picture'" :props="graphProps">
  21. </el-cascader>
  22. <el-cascader v-model="zoneTypeVal" :options="zoneTypeOption" @change="changeZoneType"
  23. placeholder="请选择分区" class="item"
  24. v-if="activeName==='picture'"></el-cascader>
  25. </div>
  26. <div v-if="activeName==='table'" v-loading="loading" style="height: calc(100% - 100px);padding: 0 12px">
  27. <template style="height: 100%;" v-if="building.length > 0">
  28. <admMultiTable
  29. @handleCurrentEdit="handleCurrentEdit"
  30. :currentHeader="currentHeader"
  31. :headersStage="headersStage"
  32. :tableData="tableData"/>
  33. <Pagination v-if="tableData.length > 0" :paginationList="paginationList"
  34. @handleCurrentChange="handleCurrentChange"
  35. @handleSizeChange="handleSizeChange"/>
  36. </template>
  37. <div v-else class="void align">
  38. <svg-icon name="void" :width="String(120)" :height="String(123)"/>
  39. <p class="void-title">暂无内容</p>
  40. <p class="void-tips">可点击左上角选择设备类型</p>
  41. </div>
  42. </div>
  43. <div class="graph" v-if="activeName==='picture'">
  44. <spaceGraph ref="spaceGraph"/>
  45. </div>
  46. </div>
  47. </div>
  48. <el-dialog title="编辑空间信息" :visible.sync="dialogVisible" @close="close">
  49. <baseDataForm :objectHeaders="spaceHeaders"
  50. :currRowContent="currRowContent"
  51. ref="baseDataForm"/>
  52. <span slot="footer" class="dialog-footer">
  53. <el-button type="primary" @click="handleDataForm">完成</el-button>
  54. <el-button @click="dialogVisible = false">取消</el-button>
  55. </span>
  56. </el-dialog>
  57. </div>
  58. </template>
  59. <script lang="ts">
  60. import { Component, Vue } from "vue-property-decorator";
  61. import { AdmMultiTable, AdmSearch, baseDataForm, Pagination, Statistics } from "../components/index";
  62. import spaceGraph from "./components/spaceGraph.vue";
  63. import { buildingQuery, dictQuery, floorQuery, queryCountSpace, queryZone, updateZone } from "@/api/datacenter";
  64. import tools from "@/utils/maintain";
  65. import { BeatchQueryParam } from "@/api/equipComponent";
  66. import { UserModule } from "@/store/modules/user";
  67. @Component({
  68. name: "adm-space",
  69. components: {
  70. Statistics,
  71. AdmSearch,
  72. AdmMultiTable,
  73. spaceGraph,
  74. Pagination,
  75. baseDataForm
  76. },
  77. })
  78. export default class spaceIndex extends Vue {
  79. // loading
  80. loading = false;
  81. private statisticsMsg = {
  82. title: "全部空间",
  83. total: 93640,
  84. };
  85. currentHeader = "租赁系统";
  86. activeName = "table";
  87. building = ["all"];
  88. zoneTypeVal = ["GeneralZone"];
  89. // 分页
  90. private paginationList = {
  91. page: 1,
  92. size: 50,
  93. sizes: [10, 30, 50, 100, 150, 200],
  94. total: 0,
  95. };
  96. options = [];
  97. graphOptions = [];
  98. zoneTypeOption = [
  99. {
  100. value: "GeneralZone",
  101. label: "功能分区",
  102. },
  103. {
  104. value: "Zone",
  105. label: "业务分区",
  106. children: [
  107. {
  108. value: "FireZone",
  109. label: "防火空间",
  110. },
  111. {
  112. value: "PowerSupplyZone",
  113. label: "供电空间",
  114. },
  115. ],
  116. },
  117. ];
  118. // 信息点集合(表头)
  119. all = [];
  120. codeToDataSource = {};
  121. tableData = [];
  122. // 表头阶段信息结合
  123. headersStage = {};
  124. // 搜索框字段
  125. inputSearch = "";
  126. // 楼层映射
  127. floorToMap = {};
  128. //
  129. graphProps = {
  130. label: "localName",
  131. value: "id",
  132. children: "floor",
  133. };
  134. graphBuilding = [];
  135. spaceHeaders = {}
  136. // 当前行数据
  137. currRowContent = {}
  138. // 弹窗开关
  139. dialogVisible = false
  140. //
  141. // 项目id
  142. private get projectId(): string {
  143. return UserModule.projectId;
  144. }
  145. created() {
  146. this.getData();
  147. this.dataCount();
  148. // 默认显示全部建筑信息
  149. this.changeCascader();
  150. }
  151. //查询统计数量
  152. dataCount() {
  153. queryCountSpace({}).then((res) => {
  154. this.statisticsMsg.total = res.count;
  155. });
  156. }
  157. //获取楼层数据
  158. getData() {
  159. let data,
  160. buildParams = {
  161. pageNumber: 1,
  162. pageSize: 1000,
  163. orders: "localName asc",
  164. projection: ["id", "localName"],
  165. },
  166. floorParams = {
  167. orders: "floorSequenceId desc",
  168. pageNumber: 1,
  169. pageSize: 1000,
  170. };
  171. let promise1 = new Promise((resolve) => {
  172. buildingQuery(buildParams).then((res) => {
  173. resolve(res);
  174. });
  175. });
  176. let promise2 = new Promise((resolve) => {
  177. floorQuery(floorParams).then((res) => {
  178. resolve(res);
  179. });
  180. });
  181. Promise.all([promise1, promise2]).then((values) => {
  182. let buildData = values[0].content,
  183. floorData = values[1].content;
  184. this.floorToMap = {};
  185. data = buildData.map((build) => {
  186. return {
  187. value: build.id,
  188. label: build.localName,
  189. };
  190. });
  191. data.unshift(
  192. {
  193. value: "all",
  194. label: "全部",
  195. },
  196. {
  197. value: "noKnow",
  198. label: "未明确建筑",
  199. }
  200. );
  201. data.forEach((build) => {
  202. floorData.forEach((floor) => {
  203. this.floorToMap[floor.id] = floor;
  204. if (
  205. build.value == floor.buildingId &&
  206. floor.id &&
  207. floor.localName
  208. ) {
  209. if (build.children) {
  210. build.children.push({
  211. value: floor.id,
  212. label: floor.localName,
  213. FloorSequenceID: floor.floorSequenceId,
  214. infos: floor.infos || {},
  215. outline: floor.outline || null,
  216. });
  217. } else {
  218. build.children = [];
  219. build.children.push(
  220. {
  221. value: "all",
  222. label: "全部",
  223. },
  224. {
  225. value: "noKnow",
  226. label: "未明确楼层",
  227. },
  228. {
  229. value: floor.id,
  230. label: floor.localName,
  231. FloorSequenceID: floor.floorSequenceId,
  232. infos: floor.infos || {},
  233. outline: floor.outline || null,
  234. }
  235. );
  236. }
  237. }
  238. });
  239. });
  240. this.options = data;
  241. let arr = data.filter((item) => item.children);
  242. console.log(arr);
  243. });
  244. const pa = {
  245. pageSize: 1000,
  246. orders: "localName asc",
  247. cascade: [{ name: "floor", orders: "floorSequenceId desc" }],
  248. };
  249. buildingQuery(pa).then((res) => {
  250. try {
  251. this.graphOptions = res.content.map((t) => {
  252. if (!t.floor) {
  253. t.floor = [];
  254. }
  255. return t;
  256. });
  257. } catch (err) {
  258. this.graphOptions = [];
  259. }
  260. if (this.graphOptions.length) {
  261. if (this.graphOptions[0].floor.length) {
  262. this.graphBuilding = [
  263. this.graphOptions[0].id,
  264. this.graphOptions[0].floor[0].id,
  265. ];
  266. }
  267. }
  268. });
  269. }
  270. //改变楼层
  271. changeCascader(value) {
  272. //todo delete
  273. // if (value && value.length > 0 && this.building[0] != 'all') {
  274. // this.buildingLabel = this.$refs['floorCascader'].getCheckedNodes()[0].pathLabels
  275. // }
  276. if (this.building.length > 0) {
  277. this.loading = true;
  278. let param = {
  279. type: "GeneralZone",
  280. orders: "sort asc, name desc",
  281. pageNumber: 1,
  282. pageSize: 1000,
  283. };
  284. let param2 = {
  285. // 级联查建筑楼层信息
  286. cascade: [
  287. { name: "building" },
  288. { name: "floor", orders: "floorSequenceId desc" },
  289. ],
  290. zoneType: "GeneralZone",
  291. pageNumber: this.paginationList.page,
  292. pageSize: this.paginationList.size,
  293. orders: "createTime asc, localName asc, localId desc, id asc",
  294. };
  295. if (this.building.length === 1) {
  296. param2.filters = "";
  297. switch (this.building[0]) {
  298. case "noKnow":
  299. param2.filters = `buildingId='isnull'`;
  300. break;
  301. case "all":
  302. delete param2.filters;
  303. break;
  304. }
  305. } else if (this.building.length === 2) {
  306. switch (this.building[1]) {
  307. case "noKnow":
  308. param2.filters = `buildingId='${this.building[0]}';floorId='isnull'`;
  309. break;
  310. case "all":
  311. param2.filters = `buildingId='${this.building[0]}'`;
  312. break;
  313. default:
  314. param2.filters = `buildingId='${this.building[0]}';floorId='${this.building[1]}'`;
  315. }
  316. }
  317. let promise = new Promise((resolve) => {
  318. dictQuery(param).then((res) => {
  319. resolve(res);
  320. });
  321. });
  322. let promise2 = new Promise((resolve) => {
  323. queryZone(param2).then((res) => {
  324. resolve(res);
  325. });
  326. });
  327. Promise.all([promise, promise2]).then((res) => {
  328. let tableData = [];
  329. this.loading = false;
  330. // 类型下信息点,重组数据
  331. let basicInfos = [],
  332. dictStages = [];
  333. this.all = res[0].content;
  334. res[0].content.forEach((item) => {
  335. let i = ["localName", "localId", "building", "floor"];
  336. if (i.includes(item.path)) {
  337. basicInfos.push(item);
  338. } else {
  339. dictStages.push(item);
  340. }
  341. });
  342. dictStages.map((val, index) => {
  343. if (val.path == "outline") {
  344. dictStages.splice(index, 1);
  345. }
  346. return val;
  347. });
  348. basicInfos.map((item) => {
  349. if (item.path == "building") {
  350. item.path = "buildingSign";
  351. }
  352. if (item.path == "floor") {
  353. item.path = "floorSign";
  354. }
  355. return item;
  356. });
  357. this.headersStage = {
  358. basicInfos: {
  359. name: "模型解析",
  360. data: basicInfos,
  361. },
  362. dictStages: {
  363. name: "租赁系统",
  364. data: dictStages,
  365. },
  366. };
  367. this.paginationList.total = res[1].total;
  368. tableData = res[1].content; // 主体数据
  369. // 处理 outline BIM模型中轮廓坐标 展示
  370. // 添加建筑,楼层展示(从下拉框获取)
  371. this.tableData = tableData.map((item) => {
  372. if (item.building) {
  373. item.buildingSign = item.building.localName;
  374. }
  375. if (item.floor) {
  376. item.floorSign = item.floor.localName;
  377. }
  378. // 删除轮廓线
  379. if (item.outline) {
  380. delete item.outline;
  381. }
  382. // const category = ['ENUM', 'MENUM', 'BOOLEAN']
  383. // if (item.category == 'STATIC' && item.dataType.includes(category) && item.dataSource) {
  384. // console.log(item, item.path)
  385. // }
  386. // item = {
  387. // ...item,
  388. // outline: JSON.stringify(item.outline),
  389. // };
  390. return item;
  391. });
  392. // 列表信息展示,获取动态数据
  393. this.codeToDataSource = {};
  394. this.all.forEach((item) => {
  395. const category = ['ENUM', 'MENUM', 'BOOLEAN']
  396. console.log(item.category,item.dataType)
  397. if (item.category == 'STATIC' && item.dataType.includes(category) && item.dataSource) {
  398. console.log(21)
  399. }
  400. if (item.dataSource) {
  401. try {
  402. this.codeToDataSource[item.code] = {};
  403. item.dataSource.forEach((dic) => {
  404. this.codeToDataSource[item.code][dic.code] =
  405. dic.name;
  406. });
  407. } catch (e) {
  408. console.log(e);
  409. }
  410. }
  411. console.log(this.codeToDataSource,' this.codeToDataSource')
  412. });
  413. this.getBatch(this.tableData);
  414. });
  415. } else {
  416. console.log("void");
  417. }
  418. }
  419. // 图建筑楼层修改
  420. changeGraphCascader(value) {
  421. this.toGraph();
  422. }
  423. // 动态信息点
  424. getBatch(data) {
  425. let param = {
  426. groupCode: "WD",
  427. appId: "datacenter",
  428. projectId: this.projectId,
  429. data: [],
  430. };
  431. this.all.forEach((head) => {
  432. if (head.category != "STATIC") {
  433. data.forEach((item) => {
  434. let cur = tools.dataForKey(item, head.path);
  435. if (cur) {
  436. param.data.push({
  437. objectId: item.id,
  438. infoCode: head.code,
  439. });
  440. }
  441. });
  442. }
  443. });
  444. if (param.data.length) {
  445. BeatchQueryParam(param).then((res) => {
  446. this.tableData = data.map((item) => {
  447. res.data.map((child) => {
  448. if (item.id == child.objectId) {
  449. if (!!child.data || child.data == 0) {
  450. this.all.map((head) => {
  451. if (head.code == child.infoCode) {
  452. let contentVal = child.data;
  453. if (this.codeToDataSource[child.infoCode]) {
  454. contentVal = this.codeToDataSource[child.infoCode][child.data];
  455. }
  456. tools.setDataForKey(
  457. item,
  458. head.path,
  459. contentVal
  460. );
  461. }
  462. });
  463. } else {
  464. this.all.map((head) => {
  465. if (head.code == child.infoCode) {
  466. tools.setDataForKey(
  467. item,
  468. head.path,
  469. child.error
  470. );
  471. }
  472. });
  473. }
  474. }
  475. });
  476. return item;
  477. });
  478. });
  479. }
  480. }
  481. // 修改分区类型
  482. changeZoneType(val) {
  483. this.toGraph();
  484. }
  485. // 当前分页
  486. handleCurrentChange(val: number) {
  487. this.paginationList.page = val;
  488. this.changeCascader();
  489. }
  490. // close
  491. close() {
  492. // this.next = true;
  493. }
  494. // 添加/编辑 事件处理
  495. handleDataForm() {
  496. let from = tools.formatData(this.$refs.baseDataForm.form)
  497. let param = {
  498. content: [from]
  499. }
  500. updateZone(param).then(res => {
  501. res.result == 'success' && this.$message.success('更新成功')
  502. this.dialogVisible = false
  503. // this.getData();
  504. // this.dataCount();
  505. // 默认显示全部建筑信息
  506. this.changeCascader();
  507. })
  508. }
  509. handleSizeChange(val: number) {
  510. this.paginationList.size = val;
  511. this.changeCascader();
  512. }
  513. // 搜索
  514. searchValue(val: string) {
  515. this.inputSearch = val;
  516. this.changeCascader();
  517. }
  518. // 编辑当前行
  519. handleCurrentEdit(val) {
  520. // this.next = false
  521. this.currRowContent = val
  522. this.spaceHeaders = this.headersStage
  523. // this.handleNext()
  524. this.dialogVisible = true
  525. }
  526. // tab页切换
  527. tabChange() {
  528. if (this.activeName == "picture") {
  529. this.$nextTick(() => {
  530. this.toGraph();
  531. });
  532. }
  533. }
  534. // 切换至图
  535. toGraph() {
  536. if (this.graphBuilding.length) {
  537. if (
  538. this.graphBuilding.indexOf("noKnow") < 0 &&
  539. this.graphBuilding.indexOf("all") < 0
  540. ) {
  541. this.$refs.spaceGraph.getData(
  542. this.floorToMap[this.graphBuilding[1]],
  543. this.zoneTypeVal
  544. );
  545. } else {
  546. this.$refs.spaceGraph.noMap();
  547. }
  548. } else {
  549. this.$refs.spaceGraph.noMap();
  550. }
  551. }
  552. }
  553. </script>
  554. <style lang="scss" scoped>
  555. .void {
  556. margin-top: 200px;
  557. }
  558. .align {
  559. display: flex;
  560. align-items: center;
  561. justify-content: center;
  562. flex-direction: column;
  563. flex-wrap: wrap;
  564. }
  565. .adm-space {
  566. background: #fff;
  567. padding: 12px;
  568. height: 100%;
  569. .small-divider {
  570. margin: 12px 0;
  571. }
  572. .tabs {
  573. position: relative;
  574. height: calc(100% - 92px);
  575. ::v-deep .el-tabs__header {
  576. margin: 0;
  577. }
  578. .tab-content {
  579. height: calc(100% - 41px);
  580. border: 1px solid #e1e7ea;
  581. border-top: none;
  582. padding-bottom: 12px;
  583. .search {
  584. padding: 16px;
  585. //border-bottom: 1px solid #e1e7ea;
  586. & > .item + .item {
  587. margin-left: 16px;
  588. }
  589. }
  590. .borderBottom {
  591. border-bottom: 1px solid #e1e7ea;
  592. }
  593. .graph {
  594. height: calc(100% - 64px);
  595. }
  596. }
  597. }
  598. .adm-pagination {
  599. right: 10px;
  600. position: absolute;
  601. bottom: 10px;
  602. }
  603. }
  604. </style>
  605. <style lang="scss">
  606. .adm-space {
  607. .el-dialog {
  608. .el-dialog__body {
  609. max-height: 500px !important;
  610. min-height: 100px;
  611. overflow-y: auto;
  612. overflow-x: hidden;
  613. }
  614. }
  615. .el-select, .el-date-editor.el-input, .el-date-editor.el-input__inner {
  616. width: 100%;
  617. }
  618. }
  619. </style>