left_toolbar.vue 14 KB

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