left_toolbar.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651
  1. <template>
  2. <div id="left_toolbar">
  3. <ul class="list-1">
  4. <li
  5. v-on:mouseout="mouseoutActive(item)"
  6. v-on:mouseover="mouseoverActive(item)"
  7. v-for="(item,i) in baseChoice"
  8. :key="i"
  9. @click="toolActionClick(item)"
  10. :class="{ actives:item.isChoice}"
  11. >
  12. <div class="item">
  13. <img v-show="!item.isHover && !item.isChoice" :src="require(`./../../assets/images/${item.img}`)" alt />
  14. <img v-show="item.isHover || item.isChoice " :src="require(`./../../assets/images/${item.hoverImg}`)" alt />
  15. </div>
  16. </li>
  17. </ul>
  18. <ul class="list-2">
  19. <li
  20. v-on:mouseout="mouseoutActive(item)"
  21. v-on:mouseover="mouseoverActive(item)"
  22. v-for="(item,i) in systemChoice"
  23. @click="showDrawer(item)"
  24. :key="i"
  25. v-bind:class="{ actives:item.isChoice}"
  26. >
  27. <div class="item">
  28. <img v-show="!item.isHover" :src="require(`./../../assets/images/${item.img}`)" alt />
  29. <img v-show="item.isHover" :src="require(`./../../assets/images/${item.hoverImg}`)" alt />
  30. <div>{{item.name}}</div>
  31. </div>
  32. </li>
  33. </ul>
  34. <!-- <ul class="list1">
  35. <Button type="default" @click="addEquip(1)">添加设备</Button>
  36. <hr />
  37. <Button type="default" @click="addEquip(2)">加载设备</Button>
  38. </ul> -->
  39. <!-- 提取-->
  40. <ul class="list-2 border-top">
  41. <li
  42. v-on:mouseout="mouseoutActive(item)"
  43. v-on:mouseover="mouseoverActive(item)"
  44. v-for="(item,i) in extractChoice"
  45. :key="i"
  46. @click="extractItem"
  47. >
  48. <div class="item">
  49. <img v-show="!item.isHover" :src="require(`./../../assets/images/${item.img}`)" alt />
  50. <img v-show="item.isHover" :src="require(`./../../assets/images/${item.hoverImg}`)" alt />
  51. <div>{{item.name}}</div>
  52. </div>
  53. </li>
  54. </ul>
  55. <a-popover trigger="click" placement="rightBottom" v-model="drawerVisible">
  56. <template slot="content">
  57. <itemTree @getSelectId="getSelectId" :drawerVisible="drawerVisible" :categoryIdS="categoryIdS"></itemTree>
  58. </template>
  59. <div class="bottom-item">
  60. <a-icon type="ellipsis" />
  61. <span>选择原件</span>
  62. </div>
  63. </a-popover>
  64. <!-- 打开弹窗 -->
  65. <transition name="fade">
  66. <div class="drawer-model" id="drawer-model" v-show="visible">
  67. <a-drawer
  68. placement="left"
  69. :closable="false"
  70. :visible="visible"
  71. :wrap-style="{ position: 'absolute',}"
  72. @close="onClose"
  73. :getContainer="false"
  74. :mask="false"
  75. >
  76. <a-spin :spinning="spinning">
  77. <div class="drawer-model-body" v-if="!isExtract">
  78. <div class="btn-list">
  79. <a-radio-group
  80. v-show="showDrawerItem.type == 'Zone'"
  81. default-value="draw"
  82. button-style="solid"
  83. @change="changeDrawType"
  84. >
  85. <a-radio-button value="draw">绘制</a-radio-button>
  86. <a-radio-button value="select">点选</a-radio-button>
  87. </a-radio-group>
  88. </div>
  89. <div class="list" v-for="(item,index) in itemList" :key="index">
  90. <div class="title">{{item.Name}}</div>
  91. <ul class="example">
  92. <li @click="getexampleItem(items)" v-for="(items,indexs) in item.GraphElements" :key="indexs">
  93. <img v-if='items.Type !== "equipment"' :class="['item',`item-${items.Type}`]" :src="'/serve/topology-wanda/Picture/query/'+ items.Url" alt />
  94. <img v-else class="item item-equipment" :src='`http://60.205.177.43/topolImages/${items.Url}`' alt="">
  95. <div class="text">{{items.Name}}</div>
  96. </li>
  97. </ul>
  98. </div>
  99. </div>
  100. <div v-else class="drawer-model-body drawer-model-body-extract">
  101. <a-table :columns="columns" :data-source="data" size="small" :pagination="false">
  102. <a-tag
  103. slot="address"
  104. slot-scope="text, record, index"
  105. :color="'geekblue'"
  106. @click="pickUp(text, record, index)"
  107. >{{ text }}</a-tag>
  108. </a-table>
  109. </div>
  110. </a-spin>
  111. </a-drawer>
  112. </div>
  113. </transition>
  114. </div>
  115. </template>
  116. <script>
  117. import itemTree from "./leftbar_components/itemTree";
  118. import { graphElementGroup } from "@/api/editer.js";
  119. import bus from "@/bus";
  120. import { queryGroup } from "@/api/editer.js";
  121. import { mapState, mapActions } from "vuex";
  122. const columns = [
  123. {
  124. title: "名称",
  125. dataIndex: "name"
  126. },
  127. {
  128. title: "图例",
  129. dataIndex: "age"
  130. },
  131. {
  132. title: "数量",
  133. dataIndex: "number"
  134. },
  135. {
  136. title: "操作",
  137. dataIndex: "address",
  138. scopedSlots: { customRender: "address" }
  139. }
  140. ];
  141. const data = [
  142. {
  143. key: "1",
  144. name: "电梯",
  145. age: 32,
  146. number: 123,
  147. address: "提取"
  148. },
  149. {
  150. key: "2",
  151. name: "防火风区",
  152. age: 42,
  153. number: 123,
  154. address: "提取"
  155. }
  156. ];
  157. export default {
  158. components: { itemTree },
  159. props: {
  160. cmdType: {
  161. type: String,
  162. default: "",
  163. required: false
  164. },
  165. },
  166. data() {
  167. return {
  168. // 基础选择
  169. baseChoice: [
  170. {
  171. img: "t-select.png", //logo
  172. hoverImg: "t-select-hover.png", //hoverlogo
  173. isHover: true, //是否hover
  174. isChoice: true,
  175. name: "选择", //类型
  176. type: "choice"
  177. },
  178. {
  179. img: "t-line.png", //logo
  180. hoverImg: "t-line-hover.png", //hoverlogo
  181. isHover: false, //是否hover
  182. isChoice: false,
  183. name: "画线", //类型
  184. type: "baseLine"
  185. },
  186. {
  187. img: "t-text.png", //logo
  188. hoverImg: "t-text-hover.png", //hoverlogo
  189. isHover: false, //是否hover
  190. isChoice: false,
  191. name: "画文字", //类型
  192. type: "baseText"
  193. },
  194. {
  195. img: "t-img.png", //logo
  196. hoverImg: "t-img-hover.png", //hoverlogo
  197. isHover: false, //是否hover
  198. isChoice: false,
  199. name: "画图片", //类型
  200. type: "baseImage"
  201. }
  202. ],
  203. // 系统选择
  204. systemChoice: [
  205. {
  206. img: "t-position.png", //logo
  207. hoverImg: "t-position-hover.png", //hoverlogo
  208. isHover: false, //是否hover
  209. isChoice: false,
  210. name: "位置区域", //类型
  211. type: "Zone"
  212. },
  213. {
  214. img: "t-equipment.png", //logo
  215. hoverImg: "t-equipment-hover.png", //hoverlogo
  216. isHover: false, //是否hover
  217. isChoice: false,
  218. name: "设备设施", //类型
  219. type: "Image"
  220. },
  221. {
  222. img: "t-papeline.png", //logo
  223. hoverImg: "t-papeline-hover.png", //hoverlogo
  224. isHover: false, //是否hover
  225. isChoice: false,
  226. name: "管线桥架", //类型
  227. type: "Line"
  228. },
  229. {
  230. img: "t-papeline.png", //logo
  231. hoverImg: "t-papeline-hover.png", //hoverlogo
  232. isHover: false, //是否hover
  233. isChoice: false,
  234. name: "添加设备", //类型
  235. type: "Equipment"
  236. },
  237. ],
  238. visible: false,
  239. //提取
  240. extractChoice: [
  241. {
  242. img: "t-slices.png", //logo
  243. hoverImg: "t-slices-hover.png", //hoverlogo
  244. isHover: false, //是否hover
  245. name: "提取" //类型
  246. }
  247. ],
  248. isExtract: false, //是否为提取框
  249. data,
  250. columns,
  251. itemList: [], //图例数组
  252. categoryIdS: [],
  253. categoryId: "",
  254. activeIndex: -1,
  255. drawerVisible: false,
  256. spinning: false,
  257. showDrawerItem: {}
  258. };
  259. },
  260. computed: {
  261. ...mapState({
  262. GraphCategoryIds: "GraphCategoryIds",
  263. TypeIdToGraphElement: "TypeIdToGraphElement"
  264. })
  265. },
  266. methods: {
  267. // 添加设备
  268. /**
  269. * @param type 1添加设备 ,2:加载设备
  270. */
  271. addEquip(type) {
  272. // TODO: 画设备图例
  273. // 画设备图例
  274. type === 1 && this.$emit("setCmdType", "equipment");
  275. type === 2 && bus.$emit("addEquip", event);
  276. },
  277. // 触入
  278. mouseoverActive(item) {
  279. item.isHover = true;
  280. },
  281. mouseoutActive(item) {
  282. item.isHover = false;
  283. },
  284. toolActionClick(item) {
  285. this.visible = false;
  286. this.baseChoice.forEach(item => {
  287. item.isChoice = false;
  288. });
  289. this.systemChoice.forEach(a => {
  290. a.isChoice = false;
  291. });
  292. item.isChoice = true;
  293. this.$emit("setCmdType", item.type);
  294. },
  295. showDrawer(item) {
  296. this.showDrawerItem = item;
  297. console.log("showDrawerItem", this.showDrawerItem);
  298. this.isExtract = false;
  299. if (item.isChoice) {
  300. this.systemChoice.forEach(a => {
  301. a.isChoice = false;
  302. });
  303. this.visible = false;
  304. } else {
  305. this.systemChoice.forEach(a => {
  306. a.isChoice = false;
  307. });
  308. item.isChoice = true;
  309. if (this.visible) {
  310. this.visible = false;
  311. setTimeout(() => {
  312. this.visible = true;
  313. }, 300);
  314. } else {
  315. this.visible = true;
  316. }
  317. // 打开侧边框
  318. // 接口请求
  319. this.itemList = [];
  320. this.spinning = true;
  321. const data = {
  322. GraphCategoryIds: this.categoryId,
  323. Type: item.type
  324. };
  325. //TODO: 添加设备,不进行调用接口,使用mock数据
  326. if(item.type === 'Equipment'){
  327. this.spinning = false;
  328. this.itemList = require('../equipmentMockData.js').eqipList
  329. return true
  330. }
  331. queryGroup(data).then(res => {
  332. this.itemList = res.Data;
  333. });
  334. const arr = {
  335. InfoSystems: this.categoryIdS,
  336. Type: item.type
  337. };
  338. graphElementGroup(arr).then(res => {
  339. this.spinning = false;
  340. res.Data.map(item => {
  341. this.itemList.push(item);
  342. });
  343. });
  344. }
  345. console.log(this.itemList);
  346. },
  347. getSelectId(data) {
  348. this.categoryIdS = data;
  349. this.drawerVisible = false;
  350. },
  351. onClose() {
  352. this.visible = false;
  353. this.systemChoice.forEach(a => {
  354. a.isChoice = false;
  355. });
  356. },
  357. // TODO: 添加设备时,单独处理
  358. getexampleItem(item) {
  359. console.log(item)
  360. if(item.GraphElementType === 'Equipmnet'){
  361. // this.$emit("setCmdType", "equipment");
  362. // return true
  363. }
  364. this.$emit("toolActionClick", item);
  365. },
  366. // 提取元素
  367. extractItem() {
  368. // 打开提取元素列表
  369. this.isExtract = true;
  370. this.visible = !this.visible;
  371. bus.$emit("extractItem");
  372. },
  373. getBus() {
  374. bus.$on("exportItem", data => {
  375. this.data = data.map(t => {
  376. (t.name = this.TypeIdToGraphElement[t.key].Name), (t.properties = this.TypeIdToGraphElement[t.key]);
  377. return t;
  378. });
  379. });
  380. },
  381. pickUp(text, record, index) {
  382. console.log("exportByKey");
  383. bus.$emit("exportByKey", record);
  384. },
  385. changeDrawType(v) {
  386. bus.$emit("changeDrawType", v.target.value);
  387. }
  388. },
  389. watch: {
  390. cmdType(cmd) {
  391. this.baseChoice.forEach(item => {
  392. item.isChoice = false;
  393. if (item.cmd == cmd) {
  394. item.isChoice = true;
  395. }
  396. });
  397. },
  398. drawerVisible(val) {
  399. if (this.visible) {
  400. this.showDrawer(this.showDrawerItem);
  401. }
  402. }
  403. },
  404. mounted() {
  405. const ele = document.getElementById("drawer-model");
  406. ele.style.width = "256px";
  407. this.getBus();
  408. },
  409. created() {
  410. const href = window.location.href;
  411. // 路由
  412. // const route = href.split("?")[0];
  413. // 参数处理
  414. let params = href.split("?")[1];
  415. if (!params) {
  416. // 参数有问题
  417. return false;
  418. }
  419. params = decodeURIComponent(params);
  420. // params = "categoryId=NTXT&ProjectID=5&BuildingID=1&FloorID=1"; // mock 参数
  421. const paramsArr = params.split("&");
  422. const obj = {};
  423. paramsArr.map(item => {
  424. const arr = item.split("=");
  425. obj[arr[0]] = arr[1];
  426. });
  427. this.categoryId = obj.categoryId;
  428. this.categoryIdS.push(obj.categoryId);
  429. }
  430. };
  431. </script>
  432. <style lang="less" scoped>
  433. /deep/ .ant-spin-nested-loading {
  434. height: 100% !important;
  435. .ant-spin-container {
  436. height: 100% !important;
  437. }
  438. }
  439. /deep/ .ant-drawer-body {
  440. height: 100% !important;
  441. }
  442. #left_toolbar {
  443. min-width: 68px;
  444. height: 100%;
  445. background: rgba(255, 255, 255, 1);
  446. box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.11);
  447. padding: 0 0 12px 0;
  448. box-sizing: border-box;
  449. position: relative;
  450. ul,
  451. li {
  452. padding: 0;
  453. margin: 0;
  454. list-style: none;
  455. }
  456. .list-1 {
  457. padding-top: 1px;
  458. box-sizing: border-box;
  459. border-bottom: 1px solid #c3c7cb;
  460. li {
  461. width: 64px;
  462. min-height: 42px;
  463. margin: 6px auto;
  464. display: flex;
  465. align-items: center;
  466. justify-content: center;
  467. position: relative;
  468. cursor: pointer;
  469. .item {
  470. margin: 0 auto;
  471. display: flex;
  472. flex-direction: column;
  473. position: relative;
  474. cursor: pointer;
  475. font-size: 12px;
  476. img {
  477. width: 25px;
  478. height: 25px;
  479. }
  480. }
  481. &:hover {
  482. background: #e1f2ff;
  483. border-radius: 8px;
  484. opacity: 0.89;
  485. color: #fff;
  486. }
  487. .tooltip {
  488. position: absolute;
  489. left: 90px;
  490. top: 0;
  491. }
  492. }
  493. }
  494. .list-2 {
  495. padding-top: 1px;
  496. box-sizing: border-box;
  497. li {
  498. width: 64px;
  499. min-height: 42px;
  500. margin: 6px auto;
  501. display: flex;
  502. align-items: center;
  503. justify-content: center;
  504. position: relative;
  505. .item {
  506. margin: 0 auto;
  507. height: 54px;
  508. display: flex;
  509. flex-direction: column;
  510. position: relative;
  511. cursor: pointer;
  512. align-items: center;
  513. font-size: 12px;
  514. img {
  515. width: 25px;
  516. height: 25px;
  517. margin-top: 6px;
  518. }
  519. }
  520. &:hover {
  521. background: #e1f2ff;
  522. border-radius: 8px;
  523. opacity: 0.89;
  524. color: #0091ff;
  525. }
  526. .tooltip {
  527. position: absolute;
  528. left: 90px;
  529. top: 0;
  530. }
  531. }
  532. }
  533. .bottom-item {
  534. position: absolute;
  535. font-size: 18px;
  536. width: 100%;
  537. bottom: 12px;
  538. height: 54px;
  539. left: 0;
  540. display: flex;
  541. align-items: center;
  542. justify-content: center;
  543. flex-direction: column;
  544. cursor: pointer;
  545. span {
  546. font-size: 12px;
  547. }
  548. &:hover {
  549. background: #e1f2ff;
  550. border-radius: 8px;
  551. opacity: 0.89;
  552. color: #0091ff;
  553. height: 54px;
  554. }
  555. }
  556. .actives {
  557. background: #e1f2ff;
  558. border-radius: 8px;
  559. opacity: 0.89;
  560. color: #0091ff;
  561. }
  562. .fade-enter,
  563. .fade-leave-to {
  564. transition: all 0.3s ease;
  565. }
  566. .drawer-model {
  567. position: absolute;
  568. left: 70px;
  569. top: 0;
  570. overflow: hidden;
  571. width: 100%;
  572. height: 100%;
  573. .drawer-model-body {
  574. width: 100%;
  575. .btn-list {
  576. margin: 0 auto;
  577. }
  578. .list {
  579. .title {
  580. font-size: 18px;
  581. border-left: 4px solid #0091ff;
  582. margin-top: 20px;
  583. }
  584. .example {
  585. width: 100%;
  586. display: flex;
  587. flex-wrap: wrap;
  588. li {
  589. width: 68px;
  590. height: 70px;
  591. display: flex;
  592. justify-content: center;
  593. flex-direction: column;
  594. cursor: pointer;
  595. &:hover {
  596. background: #e1f2ff;
  597. }
  598. .item {
  599. width: 54px;
  600. height: 32px;
  601. margin: 0 auto;
  602. }
  603. .item-Image, .item-equipment {
  604. width: 28px;
  605. height: 28px;
  606. margin: 0 auto;
  607. }
  608. .item-Line {
  609. width: 40px;
  610. height: 30px;
  611. margin: 0 auto;
  612. }
  613. .item-pip {
  614. width: 28px;
  615. height: 16px;
  616. border: #0091ff solid 1px;
  617. margin: 0 auto;
  618. background: #fff;
  619. }
  620. .text {
  621. font-size: 12px;
  622. margin: 0 auto;
  623. }
  624. }
  625. .active-li {
  626. background: #e1f2ff;
  627. }
  628. }
  629. }
  630. }
  631. .drawer-model-body-extract {
  632. padding: 0;
  633. position: absolute;
  634. left: 0;
  635. right: 0;
  636. .ant-table-small {
  637. border: none !important;
  638. }
  639. }
  640. }
  641. .border-top {
  642. border-top: 1px solid #c3c7cb;
  643. }
  644. }
  645. </style>