addItemModel.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710
  1. <!-- 新增实例 -->
  2. <template>
  3. <Modal
  4. class="getItemModal"
  5. :show="isShowModel"
  6. title="添加实例对象"
  7. mode="full"
  8. @close="modalClose"
  9. >
  10. <template #content class="xxx">
  11. <div class="getItem">
  12. <div id="left" class="left">
  13. <div class="top">
  14. <Cascader
  15. caption="专业系统"
  16. multiple
  17. allText="全部"
  18. :all="false"
  19. :data="categoryList"
  20. showPanel
  21. width="300"
  22. @confirm="changeEquip"
  23. ></Cascader>
  24. <Cascader
  25. caption="建筑楼层"
  26. allText="全部"
  27. multiple
  28. :data="buildFloorList"
  29. @confirm="changeFloor"
  30. showPanel
  31. width="300"
  32. ></Cascader>
  33. <!-- <Cascader
  34. caption="分区类型"
  35. multiple
  36. :data="cascaderData6"
  37. showPanel
  38. width="300"
  39. ></Cascader> -->
  40. <Input
  41. iconType="search"
  42. v-model="queryText"
  43. placeholder="搜索设备名称或本地编码"
  44. @pressEnter="pressEnter"
  45. />
  46. </div>
  47. <div class="localDom" ref="localDom">
  48. <el-table
  49. v-if="tableHeight > 0"
  50. size="small"
  51. ref="multipleTable"
  52. :data="equiptable"
  53. tooltip-effect="dark"
  54. style="width: 100%"
  55. :height="tableHeight"
  56. @selection-change="handleSelectionChange"
  57. >
  58. <el-table-column type="selection" width="55"> </el-table-column>
  59. <el-table-column type="localName" label="本地名称" width="300">
  60. <template slot-scope="scope">{{
  61. scope.row.localName ? scope.row.localName : "--"
  62. }}</template>
  63. </el-table-column>
  64. <el-table-column prop="localId" label="本地编码" width="300">
  65. <template slot-scope="scope">{{
  66. scope.row.localId ? scope.row.localId : "--"
  67. }}</template>
  68. </el-table-column>
  69. <el-table-column
  70. prop="bimLocation"
  71. label="位置"
  72. show-overflow-tooltip
  73. width="300"
  74. >
  75. <template slot-scope="scope">{{
  76. scope.row.building || scope.row.floor
  77. ? scope.row.building && scope.row.floor
  78. ? scope.row.building.localName +
  79. "-" +
  80. scope.row.floor.localName
  81. : scope.row.building
  82. ? scope.row.building.localName
  83. : scope.row.floor.localName
  84. : "--"
  85. }}</template>
  86. </el-table-column>
  87. <el-table-column
  88. prop="codeName"
  89. label="类型"
  90. show-overflow-tooltip
  91. width="300"
  92. >
  93. </el-table-column>
  94. </el-table>
  95. </div>
  96. <Pagination
  97. class="page-box"
  98. :pageCountShow="true"
  99. :pageCount="tableTotal"
  100. :pageSizeSetting="true"
  101. @change="currentChangeHandle"
  102. />
  103. </div>
  104. <div class="right">
  105. <div class="top">
  106. <div class="top-l">
  107. <span class="equip-title">已选实例</span>
  108. <span class="equip-num">{{ choiceEquipList.length }}</span>
  109. </div>
  110. <div class="top-r" @click="clearChoiceEqipment">清空</div>
  111. </div>
  112. <ul class="choiceList">
  113. <li class="choiceList-item">
  114. <div
  115. class="treeList"
  116. v-for="(items, key) in equipData"
  117. :key="key"
  118. >
  119. <div class="title" @click="collapse(items)">
  120. <i
  121. v-bind:class="[
  122. items.showChildren ? 'caret-icon-active' : 'caret-icon',
  123. 'el-icon-caret-bottom',
  124. ]"
  125. ></i>
  126. <span class="equip-title">{{ items.title }}</span>
  127. <span class="equip-num">{{ items.number }}</span>
  128. </div>
  129. <el-collapse-transition>
  130. <ul class="treeList-bodys" v-show="items.showChildren">
  131. <li
  132. class="treeList-item"
  133. v-for="(item, key) in items.children"
  134. :key="key"
  135. >
  136. <div class="item-title">
  137. {{ item.localName ? item.localName : "空" }}
  138. </div>
  139. <i
  140. class="el-icon-error"
  141. @click="deleteItem(items, key)"
  142. ></i>
  143. </li>
  144. </ul>
  145. </el-collapse-transition>
  146. </div>
  147. </li>
  148. </ul>
  149. </div>
  150. </div>
  151. <div class="btn-list">
  152. <el-button @click="modalClose">取消</el-button>
  153. <el-button type="primary" @click="finish">确认</el-button>
  154. </div>
  155. </template>
  156. </Modal>
  157. </template>
  158. <script>
  159. import { mapMutations, mapState } from "vuex";
  160. import {
  161. buildiFloor,
  162. readCategory,
  163. queryEquip,
  164. queryLegend,
  165. } from "@/api/editer";
  166. import bus from "@/bus/bus";
  167. export default {
  168. props: ["showAddItemModel"],
  169. computed: {
  170. ...mapState([
  171. "editCmd",
  172. "projectId",
  173. "equipmentItemNum",
  174. "equipmentItemList",
  175. ]),
  176. },
  177. data() {
  178. return {
  179. isShowModel: false,
  180. equipTypeString: "", //设备类型选中条件
  181. buildIdString: "", //建筑id 类型string
  182. floorIdString: "", // 楼层id 类型string
  183. tableTotal: 0, //搜索获取得设备总数
  184. equiptable: [], //table数据
  185. equipData: [], //选中得设备数组 右侧二级树
  186. buildFloorList: [], // 建筑查询数据
  187. categoryList: [], //设备类型
  188. tableHeight: 0, //table的高度
  189. choiceEquipList: [], // 选中得设备数组//非树机构
  190. pageSize: 20,
  191. currentPage: 1,
  192. local: null, //table loading
  193. local2: null, // 全局 loading
  194. queryText: "", //搜索框数据
  195. filtIdListString: "", // 要过滤的 id 字符串
  196. };
  197. },
  198. methods: {
  199. // 筛选设备
  200. changeEquip(list) {
  201. const classCode = []; // 设备类型
  202. this.currentPage = 1;
  203. list.forEach((val) => {
  204. if (val.index == 3) {
  205. classCode.push(val.id);
  206. }
  207. });
  208. //设备类型转换
  209. this.equipTypeString = classCode.length
  210. ? ";classCode in " + JSON.stringify(classCode)
  211. : "";
  212. // 调用设备接口
  213. this.queryEquip();
  214. },
  215. // 筛选楼层
  216. changeFloor(list) {
  217. let buildIdList = []; // 设备类型
  218. let floorIdList = [];
  219. let isfloornull = "";
  220. let isbuildnull = "";
  221. this.currentPage = 1;
  222. // 遍历获取对应得楼层id、建筑id
  223. list.forEach((val) => {
  224. if (val.index == 1) {
  225. if (val.id == "bisnull") {
  226. isbuildnull = "buildingId isNull";
  227. } else {
  228. buildIdList.push(val.id);
  229. }
  230. }
  231. if (val.index == 2) {
  232. if (val.id == "fisnull") {
  233. isfloornull = "floorId isNull";
  234. } else {
  235. floorIdList.push(val.id);
  236. }
  237. }
  238. });
  239. // 对id数组和or isnull 进行拼接
  240. if (buildIdList.length) {
  241. if (isbuildnull) {
  242. isbuildnull = "or " + isbuildnull;
  243. }
  244. }
  245. this.buildIdString = buildIdList.length
  246. ? ";buildingId in " + JSON.stringify(buildIdList) + isbuildnull
  247. : isbuildnull
  248. ? ";" + isbuildnull
  249. : "";
  250. if (floorIdList.length) {
  251. if (isfloornull) {
  252. isfloornull = "or " + isfloornull;
  253. }
  254. }
  255. this.floorIdString = floorIdList.length
  256. ? ";floorId in " + JSON.stringify(floorIdList) + isfloornull
  257. : isfloornull
  258. ? ";" + isfloornull
  259. : "";
  260. // 调用设备接口
  261. this.queryEquip();
  262. },
  263. // 搜索设备
  264. queryEquip() {
  265. let data = {
  266. cascade: [
  267. {
  268. name: "building",
  269. projection: ["id", "name", "localName"],
  270. },
  271. {
  272. name: "floor",
  273. projection: ["id", "name", "localName"],
  274. },
  275. ],
  276. orders: "name asc, createTime desc",
  277. pageNumber: this.currentPage,
  278. pageSize: this.pageSize,
  279. filters: `projectId='${this.projectId}'${this.filtIdListString}${this.buildIdString}${this.floorIdString}${this.equipTypeString};localName contain "${this.queryText}" or localId contain "${this.queryText}"`,
  280. };
  281. this.localLoading();
  282. queryEquip(data)
  283. .then((res) => {
  284. this.tableTotal = res.total;
  285. this.equiptable = res.content;
  286. this.$loading.close(this.local);
  287. })
  288. .catch((error) => {
  289. console.log("it is error!", error);
  290. this.$loading.close(this.local);
  291. });
  292. },
  293. // 关闭弹窗
  294. modalClose() {
  295. this.isShowModel = false;
  296. this.$emit("closeModel");
  297. // 清空搜索框信息
  298. this.queryText = ''
  299. },
  300. // 确认/提交
  301. finish() {
  302. // 获取选中图例得 iamge url
  303. if (!this.equipData.length) {
  304. this.modalClose();
  305. }
  306. const categoryList = [];
  307. this.equipData.forEach((item) => {
  308. categoryList.push(item.id);
  309. });
  310. // 获取设备得图片
  311. const categoryListString = JSON.stringify(categoryList);
  312. let data = {
  313. cascade: [
  314. {
  315. name: "anchorList",
  316. },
  317. {
  318. name: "state",
  319. },
  320. ],
  321. filters: `category in ${categoryListString}`,
  322. pageNumber: 1,
  323. pageSize: 1000,
  324. };
  325. this.local2 = this.$loading({ type: "global" });
  326. queryLegend(data)
  327. .then((res) => {
  328. if (res.content && res.content.length) {
  329. let list = this.choiceEquipList;
  330. res.content.forEach((contentType) => {
  331. list.forEach((item) => {
  332. if (item.classCode == contentType.category) {
  333. item.url = contentType.state[0].pic;
  334. item.state = contentType.state;
  335. }
  336. });
  337. });
  338. this.choiceEquipList = list;
  339. }
  340. // // 将选中的设备类存到vuex中
  341. bus.$emit("addEquipment", this.choiceEquipList);
  342. this.$loading.close(this.local2);
  343. this.modalClose();
  344. })
  345. .catch((res) => {
  346. console.log(res);
  347. this.$loading.close(this.local2);
  348. this.modalClose();
  349. });
  350. },
  351. // 搜索回车
  352. pressEnter() {
  353. this.currentPage = 1;
  354. this.queryEquip();
  355. },
  356. // /是否下拉折叠
  357. collapse(item) {
  358. item.showChildren = !item.showChildren;
  359. },
  360. // 删除item
  361. deleteItem(items, key) {
  362. let deleteItem = items.children.splice(key, 1);
  363. items.number = items.children.length;
  364. this.$refs.multipleTable.toggleRowSelection(deleteItem[0]);
  365. let index = -1;
  366. this.choiceEquipList.forEach((item, i) => {
  367. if (item.id == deleteItem[0].id) {
  368. index = i;
  369. }
  370. });
  371. if (index >= 0) {
  372. this.choiceEquipList.splice(key, 1);
  373. }
  374. this.handleSelectionChange(this.choiceEquipList);
  375. },
  376. clearChoiceEqipment() {
  377. this.$refs.multipleTable.clearSelection();
  378. },
  379. /**
  380. * 构建树list
  381. * list 需要递归得数组
  382. * arr 需要返回得结果
  383. * nameList 要递归得判断条件
  384. * index 树得层
  385. */
  386. mapList(
  387. list,
  388. arr = [],
  389. nameList = ["id", "localName", "floor"],
  390. index = 0
  391. ) {
  392. index++;
  393. if (list.length) {
  394. list.forEach((item) => {
  395. if (item[nameList[2]] && item[nameList[2]].length) {
  396. const obj = {
  397. title: item[nameList[1]],
  398. id: item[nameList[0]],
  399. index: index,
  400. children: [],
  401. };
  402. const children = this.mapList(
  403. item[nameList[2]],
  404. [],
  405. nameList,
  406. index
  407. );
  408. obj.children = children;
  409. arr.push(obj);
  410. } else {
  411. arr.push({
  412. title: item[nameList[1]],
  413. id: item[nameList[0]],
  414. index: index,
  415. });
  416. }
  417. });
  418. }
  419. return arr;
  420. },
  421. // 选中table回调
  422. handleSelectionChange(list) {
  423. let arr = [];
  424. // this.choiceEquipList = this.choiceEquipList.concat(...list);
  425. this.choiceEquipList = list;
  426. list.forEach((item) => {
  427. if (arr.length) {
  428. let index = -1;
  429. arr.forEach((aItem) => {
  430. if (aItem.id == item.classCode) {
  431. index = 1;
  432. aItem.children.push(_.cloneDeep(item));
  433. aItem.number++;
  434. }
  435. });
  436. if (index == -1) {
  437. let obj = {
  438. id: item.classCode,
  439. title: item.codeName,
  440. children: [_.cloneDeep(item)],
  441. number: 1,
  442. showChildren: true,
  443. };
  444. arr.push(obj);
  445. }
  446. } else {
  447. let obj = {
  448. id: item.classCode,
  449. title: item.codeName,
  450. children: [],
  451. number: 1,
  452. showChildren: true,
  453. };
  454. obj.children.push(_.cloneDeep(item));
  455. arr.push(obj);
  456. }
  457. });
  458. this.equipData = arr;
  459. },
  460. // 切换分页
  461. currentChangeHandle(pageMsg) {
  462. this.pageSize = pageMsg.newPageSize;
  463. this.currentPage = pageMsg.newPage;
  464. this.queryEquip();
  465. },
  466. // 局部加载
  467. localLoading() {
  468. this.local = this.$loading({
  469. el: this.$refs.localDom,
  470. type: "local",
  471. size: "min",
  472. });
  473. },
  474. // 打开窗口初始化弹窗
  475. initAddModel() {
  476. const data = {
  477. projectId: this.projectId,
  478. };
  479. // 建筑查询条件
  480. buildiFloor(data).then((res) => {
  481. this.buildFloorList = this.mapList(res.content);
  482. });
  483. // 设备类型查询条件
  484. readCategory(data).then((res) => {
  485. this.categoryList = this.mapList(
  486. res.content,
  487. [],
  488. ["code", "name", "children"]
  489. );
  490. });
  491. // 设置table的高
  492. setTimeout(() => {
  493. const domLeft = document.getElementById("left");
  494. if (domLeft) {
  495. this.tableHeight = domLeft.offsetHeight - 140;
  496. // 调取设备接口
  497. this.queryEquip();
  498. }
  499. });
  500. // 清空选中的item;
  501. this.choiceEquipList = [];
  502. // 清空右侧二级树
  503. this.equipData = [];
  504. },
  505. },
  506. watch: {
  507. // 是否打开弹窗
  508. showAddItemModel(val) {
  509. this.isShowModel = val;
  510. if (val) {
  511. this.initAddModel();
  512. }
  513. },
  514. // 监听设备变化,获取设备时做相应的过滤
  515. equipmentItemNum: {
  516. handler: function (val) {
  517. if (!val) return;
  518. const idList = [];
  519. this.equipmentItemList.forEach((item) => {
  520. idList.push(item.legendData.attachObjectIds[0]);
  521. });
  522. const filtIdListString = idList.length
  523. ? ";not id in " + JSON.stringify(idList)
  524. : "";
  525. this.filtIdListString = filtIdListString;
  526. },
  527. deep: true,
  528. immediate: true,
  529. },
  530. },
  531. };
  532. </script>
  533. <style lang="less" scoped>
  534. ul,
  535. li {
  536. margin: 0;
  537. padding: 0;
  538. list-style-type: none;
  539. }
  540. .getItemModal {
  541. height: calc(~"100% - 110px");
  542. .getItem {
  543. height: calc(~"100% - 110px");
  544. display: flex;
  545. margin: 0 32px 16px 32px;
  546. border: 1px solid #e4e5e7;
  547. position: relative;
  548. top: 16px;
  549. .xxx {
  550. width: 100%;
  551. position: relative;
  552. // height: 100%;
  553. }
  554. }
  555. /deep/ .p-modal-main .p-modal-content-full {
  556. height: calc(100vh - 56px) !important;
  557. }
  558. /deep/ .p-modal-main .p-modal-content-full .p-modal-content-main {
  559. height: 100% !important;
  560. }
  561. .right {
  562. width: 420px;
  563. height: 100%;
  564. overflow-y: scroll;
  565. border-left: 1px solid #eff0f1;
  566. .top {
  567. height: 58px;
  568. border-bottom: 1px solid #eff0f1;
  569. display: flex;
  570. align-items: center;
  571. justify-content: space-between;
  572. box-sizing: border-box;
  573. padding: 0 12px 0 12px;
  574. .top-l {
  575. display: flex;
  576. .equip-title {
  577. font-size: 14px;
  578. color: #8d9399;
  579. }
  580. .equip-num {
  581. font-size: 14px;
  582. margin-left: 12px;
  583. color: #1f2429;
  584. background: #eff0f1;
  585. padding: 0 10px 0 10px;
  586. }
  587. }
  588. .top-r {
  589. color: #0091ff;
  590. cursor: pointer;
  591. }
  592. }
  593. .choiceList {
  594. .choiceList-item {
  595. .treeList {
  596. width: 100%;
  597. .title {
  598. width: 100%;
  599. height: 40px;
  600. box-sizing: border-box;
  601. padding: 0 16px 0 16px;
  602. display: flex;
  603. align-items: center;
  604. line-height: 40px;
  605. .equip-title {
  606. font-size: 14px;
  607. color: #8d9399;
  608. line-height: 14px;
  609. cursor: pointer;
  610. }
  611. .equip-num {
  612. font-size: 14px;
  613. margin-left: 12px;
  614. color: #1f2429;
  615. background: #eff0f1;
  616. padding: 0 10px 0 10px;
  617. line-height: 24px;
  618. }
  619. .caret-icon {
  620. animation: nowhirling 0.2s linear forwards;
  621. }
  622. .caret-icon-active {
  623. animation: whirling 0.2s linear forwards;
  624. }
  625. }
  626. .treeList-bodys {
  627. .treeList-item {
  628. width: 100%;
  629. height: 40px;
  630. display: flex;
  631. align-items: center;
  632. justify-content: space-between;
  633. box-sizing: border-box;
  634. padding: 0 16px 0 50px;
  635. cursor: pointer;
  636. &:hover {
  637. background: #f5f6f7;
  638. }
  639. }
  640. }
  641. }
  642. }
  643. }
  644. }
  645. .left {
  646. flex: 1;
  647. position: relative;
  648. .top {
  649. width: 100%;
  650. height: 58px;
  651. border-bottom: 1px solid #eff0f1;
  652. display: flex;
  653. align-items: center;
  654. justify-content: flex-start;
  655. &:first-child {
  656. margin-right: 24px;
  657. }
  658. &:last-child {
  659. margin-left: 24px;
  660. }
  661. }
  662. .page-box {
  663. position: absolute;
  664. right: 24px;
  665. bottom: 24px;
  666. }
  667. }
  668. .btn-list {
  669. width: 100%;
  670. display: flex;
  671. justify-content: flex-end;
  672. margin-top: 24px;
  673. padding-right: 32px;
  674. box-sizing: border-box;
  675. }
  676. }
  677. @keyframes whirling {
  678. 0% {
  679. transform: rotate(-90deg);
  680. -ms-transform: rotate(-90deg); /* Internet Explorer */
  681. -moz-transform: rotate(-90deg); /* Firefox */
  682. -webkit-transform: rotate(-90deg); /* Safari 和 Chrome */
  683. -o-transform: rotate(-90deg); /* Opera */
  684. }
  685. 100% {
  686. transform: rotate(0deg);
  687. -ms-transform: rotate(0deg); /* Internet Explorer */
  688. -moz-transform: rotate(0deg); /* Firefox */
  689. -webkit-transform: rotate(0deg); /* Safari 和 Chrome */
  690. -o-transform: rotate(0deg); /* Opera */
  691. }
  692. }
  693. @keyframes nowhirling {
  694. 0% {
  695. transform: rotate(0deg);
  696. -ms-transform: rotate(0deg); /* Internet Explorer */
  697. -moz-transform: rotate(0deg); /* Firefox */
  698. -webkit-transform: rotate(0deg); /* Safari 和 Chrome */
  699. -o-transform: rotate(0deg); /* Opera */
  700. }
  701. 100% {
  702. transform: rotate(-90deg);
  703. -ms-transform: rotate(-90deg); /* Internet Explorer */
  704. -moz-transform: rotate(-90deg); /* Firefox */
  705. -webkit-transform: rotate(-90deg); /* Safari 和 Chrome */
  706. -o-transform: rotate(-90deg); /* Opera */
  707. }
  708. }
  709. </style>