equipmentList.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405
  1. <!-- 设备列表 -->
  2. <template>
  3. <div class="equip-list" id="equiplist">
  4. <!-- 筛选 -->
  5. <div class="clp">
  6. <Input
  7. class="baseItemInput"
  8. :width="188"
  9. iconType="search"
  10. placeholder="搜索元素名称"
  11. v-model="baseItemVal"
  12. @pressEnter="pressEnter"
  13. />
  14. <Popover type="confirm" placement="bottom-center">
  15. <template slot="content">
  16. <div class="">
  17. <div>
  18. <span>分区类型</span>
  19. <Cascader
  20. multiple
  21. allText="全部"
  22. :data="cascaderData6"
  23. showPanel
  24. width="300"
  25. @change="changeItem"
  26. @confirm="changeItem"
  27. ></Cascader>
  28. </div>
  29. <div>
  30. <span>建筑类型</span>
  31. <Cascader
  32. multiple
  33. allText="全部"
  34. :data="cascaderData6"
  35. showPanel
  36. width="300"
  37. @change="changeItem"
  38. @confirm="changeItem"
  39. ></Cascader>
  40. </div>
  41. <el-button class="reset" type="text">重置</el-button>
  42. </div>
  43. </template>
  44. <span
  45. @click="screen"
  46. class="icon iconfont icon-shaixuan shaixuan"
  47. ></span>
  48. </Popover>
  49. </div>
  50. <!-- 设备 list -->
  51. <div class="box-porfess" id="boxPorfess">
  52. <div class="porfess" v-for="(items, index) in equipmentTree" :key="index">
  53. <div @click="collapse(items)" class="porfess-title">
  54. <span>{{ items.aliasName }}</span>
  55. <i
  56. v-bind:class="[
  57. items.isShow ? 'caret-icon-active' : 'caret-icon',
  58. 'el-icon-arrow-down',
  59. ]"
  60. ></i>
  61. </div>
  62. <el-collapse-transition>
  63. <div v-show="items.isShow">
  64. <div class="equipType" v-for="(item, i) in items.children" :key="i">
  65. <div class="equipType-title" @click="collapse(item)">
  66. <i
  67. v-bind:class="[
  68. item.isShow ? 'caret-icon-active' : 'caret-icon',
  69. 'el-icon-caret-bottom',
  70. ]"
  71. ></i>
  72. <span>{{ item.aliasName }}</span>
  73. </div>
  74. <el-collapse-transition>
  75. <ul @mouseout="deletehover" v-show="item.isShow">
  76. <li
  77. @click="getEquipItem('lengganji.svg')"
  78. v-for="(a, b) in item.children"
  79. :key="b"
  80. @mouseover="sethover(index, i, b)"
  81. >
  82. <div class="left">
  83. <div class="showEyes">
  84. <Icon
  85. v-show="hoverIndex == '' + index + i + b"
  86. name="preview"
  87. />
  88. </div>
  89. <div class="icon">
  90. <img
  91. width="28"
  92. height="28"
  93. src="./../../../assets/images/equip/lengganji.svg"
  94. alt=""
  95. />
  96. </div>
  97. </div>
  98. <div class="right">
  99. <div class="t" :title="a.localName">
  100. {{ a.localName ? a.localName : "--" }}
  101. </div>
  102. <div class="b" :title="a.localId">
  103. {{ a.localId ? a.localId : "--" }}
  104. </div>
  105. </div>
  106. <div class="icons">
  107. <Icon
  108. v-show="hoverIndex == '' + index + i + b"
  109. name="more"
  110. />
  111. </div>
  112. </li>
  113. </ul>
  114. </el-collapse-transition>
  115. </div>
  116. </div>
  117. </el-collapse-transition>
  118. </div>
  119. </div>
  120. <!-- 添加设备 -->
  121. <div class="addbtn" @click="openAddEqupModle">
  122. <i class="el-icon-plus"></i>
  123. 添加设备示例
  124. </div>
  125. </div>
  126. </template>
  127. <script>
  128. import { mapMutations, mapState } from "vuex";
  129. import { queryCategory } from "@/api/editer";
  130. export default {
  131. data() {
  132. return {
  133. cascaderData6: [],
  134. hoverIndex: -1,
  135. baseItemVal: "",
  136. equipmentTree: [],
  137. };
  138. },
  139. methods: {
  140. ...mapMutations(["SETCHOICELEHEND", "SETLEGENDOBJ"]),
  141. // 打开添加弹窗
  142. openAddEqupModle() {
  143. this.$emit("openAddEqupModle");
  144. },
  145. // 设置hover显示
  146. sethover(a, b, c) {
  147. this.hoverIndex = "" + a + b + c;
  148. },
  149. deletehover() {
  150. this.hoverIndex = -1;
  151. },
  152. // 获取设备图例
  153. getEquipItem(id) {
  154. const obj = {
  155. url: id,
  156. };
  157. this.SETLEGENDOBJ(obj);
  158. const cmd = "EditEuqipment";
  159. this.SETCHOICELEHEND(cmd);
  160. },
  161. // 筛选
  162. screen() {},
  163. // 判断是否再数组中
  164. isinlist(item, idName, name, list) {
  165. let index = -1;
  166. list.forEach((item, i) => {
  167. if (item[idName] == item[idName]) {
  168. index = i;
  169. }
  170. });
  171. if (index < 0) {
  172. list.push({
  173. [idName]: item[idName],
  174. [name]: item[name],
  175. isShow: true,
  176. children: [],
  177. });
  178. }
  179. return index;
  180. },
  181. // 折叠
  182. collapse(item) {
  183. item.isShow = !item.isShow;
  184. },
  185. //
  186. changeItem() {},
  187. pressEnter() {},
  188. // 获取设备相关的专业以及设备类型
  189. getCategory(idList) {
  190. queryCategory(idList).then((res) => {
  191. // 返回专业及其类型,根据类型 添加设备
  192. let category = res.content;
  193. category.forEach((item) => {
  194. item.isShow = true;
  195. if (item.children && item.children.length) {
  196. item.children.map((child) => {
  197. let obj = [];
  198. child.isShow = true;
  199. this.equipmentList.forEach((choiceItem) => {
  200. choiceItem.isShow = true;
  201. if (choiceItem.classCode == child.aliasCode) {
  202. obj.push(choiceItem);
  203. }
  204. });
  205. if (obj.length) {
  206. child.children = obj;
  207. }
  208. return child;
  209. });
  210. }
  211. });
  212. this.equipmentTree = category;
  213. });
  214. },
  215. },
  216. computed: {
  217. ...mapState(["editCmd", "equipmentList"]),
  218. },
  219. watch: {
  220. equipmentList: {
  221. handler: function (val) {
  222. if (!val.length) return;
  223. const idList = [];
  224. val.forEach((item) => {
  225. idList.push(item.id);
  226. });
  227. this.getCategory(idList);
  228. },
  229. deep: true,
  230. immediate: true,
  231. },
  232. },
  233. mounted() {
  234. const dombox = document.getElementById("equiplist");
  235. const boxPorfess = document.getElementById("boxPorfess");
  236. if (dombox) {
  237. boxPorfess.style.height = dombox.offsetHeight - 90 + "px";
  238. console.log("boxPorfess", boxPorfess.style);
  239. }
  240. },
  241. };
  242. </script>
  243. <style lang="less" scoped>
  244. div {
  245. -moz-user-select: none; /*火狐*/
  246. -webkit-user-select: none; /*webkit浏览器*/
  247. -ms-user-select: none; /*IE10*/
  248. -khtml-user-select: none; /*早期浏览器*/
  249. user-select: none;
  250. }
  251. ul,
  252. li {
  253. margin: 0;
  254. padding: 0;
  255. list-style-type: none;
  256. }
  257. .equip-list {
  258. width: 100%;
  259. height: 100%;
  260. position: relative;
  261. .clp {
  262. display: flex;
  263. align-items: center;
  264. justify-content: space-around;
  265. margin-top: 12px;
  266. .shaixuan {
  267. cursor: pointer;
  268. }
  269. }
  270. .box-porfess {
  271. min-height: 500px;
  272. overflow-y: scroll;
  273. }
  274. .porfess {
  275. .porfess-title {
  276. width: 100%;
  277. padding: 16px 16px 0 16px;
  278. display: flex;
  279. justify-content: space-between;
  280. cursor: pointer;
  281. }
  282. .equipType {
  283. .equipType-title {
  284. margin: 20px 0 20px 18px;
  285. cursor: pointer;
  286. }
  287. ul {
  288. li {
  289. width: 100%;
  290. height: 48px;
  291. display: flex;
  292. cursor: pointer;
  293. justify-content: space-around;
  294. align-items: center;
  295. &:hover {
  296. background: #f5f6f7;
  297. }
  298. .left {
  299. width: 60px;
  300. display: flex;
  301. height: 100%;
  302. align-items: center;
  303. .showEyes {
  304. width: 28px;
  305. height: 28px;
  306. }
  307. .icon {
  308. width: 28px;
  309. height: 28px;
  310. border-radius: 50% 50%;
  311. display: flex;
  312. align-items: center;
  313. justify-content: center;
  314. }
  315. }
  316. .right {
  317. padding: 4px;
  318. box-sizing: border-box;
  319. flex: 1;
  320. .t {
  321. font-size: 14px;
  322. color: #1f2429;
  323. overflow: hidden;
  324. text-overflow: ellipsis;
  325. white-space: nowrap;
  326. }
  327. .b {
  328. font-size: 10px;
  329. color: #8d9399;
  330. overflow: hidden;
  331. text-overflow: ellipsis;
  332. white-space: nowrap;
  333. }
  334. }
  335. .icons {
  336. width: 28px;
  337. height: 28px;
  338. }
  339. }
  340. }
  341. }
  342. }
  343. .addbtn {
  344. width: 100%;
  345. height: 40px;
  346. position: absolute;
  347. bottom: 0;
  348. left: 0;
  349. transform: translateY(-40%);
  350. display: flex;
  351. align-items: center;
  352. justify-content: center;
  353. box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.11);
  354. cursor: pointer;
  355. &:hover {
  356. color: #0091ff;
  357. }
  358. }
  359. .caret-icon {
  360. animation: nowhirling 0.2s linear forwards;
  361. }
  362. .caret-icon-active {
  363. animation: whirling 0.2s linear forwards;
  364. }
  365. }
  366. .reset {
  367. position: absolute;
  368. bottom: 16px;
  369. left: 24px;
  370. }
  371. @keyframes whirling {
  372. 0% {
  373. transform: rotate(-90deg);
  374. -ms-transform: rotate(-90deg); /* Internet Explorer */
  375. -moz-transform: rotate(-90deg); /* Firefox */
  376. -webkit-transform: rotate(-90deg); /* Safari 和 Chrome */
  377. -o-transform: rotate(-90deg); /* Opera */
  378. }
  379. 100% {
  380. transform: rotate(0deg);
  381. -ms-transform: rotate(0deg); /* Internet Explorer */
  382. -moz-transform: rotate(0deg); /* Firefox */
  383. -webkit-transform: rotate(0deg); /* Safari 和 Chrome */
  384. -o-transform: rotate(0deg); /* Opera */
  385. }
  386. }
  387. @keyframes nowhirling {
  388. 0% {
  389. transform: rotate(0deg);
  390. -ms-transform: rotate(0deg); /* Internet Explorer */
  391. -moz-transform: rotate(0deg); /* Firefox */
  392. -webkit-transform: rotate(0deg); /* Safari 和 Chrome */
  393. -o-transform: rotate(0deg); /* Opera */
  394. }
  395. 100% {
  396. transform: rotate(-90deg);
  397. -ms-transform: rotate(-90deg); /* Internet Explorer */
  398. -moz-transform: rotate(-90deg); /* Firefox */
  399. -webkit-transform: rotate(-90deg); /* Safari 和 Chrome */
  400. -o-transform: rotate(-90deg); /* Opera */
  401. }
  402. }
  403. </style>