equipmentList.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  1. <!-- 设备列表 -->
  2. <template>
  3. <div class="equip-list">
  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="porfess" v-for="(items, index) in equipmentList" :key="index">
  52. <div @click="collapse(items)" class="porfess-title">
  53. <span>{{ items.porfess }}</span>
  54. <i
  55. v-bind:class="[
  56. items.isShow ? 'caret-icon-active' : 'caret-icon',
  57. 'el-icon-arrow-down',
  58. ]"
  59. ></i>
  60. </div>
  61. <el-collapse-transition>
  62. <div v-show="items.isShow">
  63. <div class="equipType" v-for="(item, i) in items.children" :key="i">
  64. <div class="equipType-title" @click="collapse(item)">
  65. <i
  66. v-bind:class="[
  67. item.isShow ? 'caret-icon-active' : 'caret-icon',
  68. 'el-icon-caret-bottom',
  69. ]"
  70. ></i>
  71. <span>{{ item.equipType }}</span>
  72. </div>
  73. <el-collapse-transition>
  74. <ul @mouseout="deletehover" v-show="item.isShow">
  75. <li
  76. @click="getEquipItem('lengganji.svg')"
  77. v-for="(a, b) in item.children"
  78. :key="b"
  79. @mouseover="sethover(b)"
  80. >
  81. <div class="left">
  82. <div class="showEyes">
  83. <Icon v-show="hoverIndex == b" name="preview" />
  84. </div>
  85. <div class="icon"></div>
  86. </div>
  87. <div class="right">
  88. <div class="t">{{ a.name }}</div>
  89. <div class="b">W3456112345093</div>
  90. </div>
  91. <div class="icons">
  92. <Icon v-show="hoverIndex == b" name="more" />
  93. </div>
  94. </li>
  95. </ul>
  96. </el-collapse-transition>
  97. </div>
  98. </div>
  99. </el-collapse-transition>
  100. </div>
  101. <!-- 添加设备 -->
  102. <div class="addbtn" @click="openAddEqupModle">
  103. <i class="el-icon-plus"></i>
  104. 添加设备示例
  105. </div>
  106. </div>
  107. </template>
  108. <script>
  109. import { mapMutations, mapState } from "vuex";
  110. import { equipmentList } from "./equipData";
  111. export default {
  112. data() {
  113. return {
  114. cascaderData6: [
  115. {
  116. title: "United Kingdom",
  117. id: "id1",
  118. children: [
  119. { id: "id2", title: "London" },
  120. { id: "id3", title: "Edinburgh" },
  121. { id: "id4", title: "Cardiff" },
  122. { id: "id5", title: "Birmingham" },
  123. { id: "id6", title: "Liverpool" },
  124. { id: "id7", title: "Oxford" },
  125. { id: "id8", title: "Plymouth" },
  126. ],
  127. },
  128. {
  129. title: "AMERICAN",
  130. id: "id9",
  131. children: [
  132. { id: "id10", title: "Chicago" },
  133. { id: "id11", title: "Philadelphia" },
  134. { id: "id12", title: "Boston" },
  135. { id: "id13", title: "Houston" },
  136. { id: "id14", title: "Atlanta" },
  137. { id: "id15", title: "San Francisco" },
  138. ],
  139. },
  140. {
  141. title: "CHINA",
  142. id: "id16",
  143. children: [
  144. { id: "id17", title: "BeiJing" },
  145. { id: "id18", title: "ShangHAI" },
  146. {
  147. title: "GuiYang",
  148. id: "id19",
  149. children: [
  150. { id: "id20", title: "Qingyan" },
  151. { id: "id21", title: "Guian" },
  152. ],
  153. },
  154. { id: "id22", title: "ZunYi" },
  155. ],
  156. },
  157. {
  158. title: "韩国",
  159. id: "id23",
  160. children: [
  161. { id: "id24", title: "首尔" },
  162. { id: "id25", title: "仁川" },
  163. { id: "id26", title: "釜山" },
  164. {
  165. id: "id27",
  166. title: "蔚山",
  167. children: [
  168. { id: "id10", title: "Chicago" },
  169. { id: "id11", title: "Philadelphia" },
  170. { id: "id12", title: "Boston" },
  171. { id: "id13", title: "Houston" },
  172. { id: "id14", title: "Atlanta" },
  173. { id: "id15", title: "San Francisco" },
  174. ],
  175. },
  176. ],
  177. },
  178. ],
  179. equipmentList: [],
  180. hoverIndex: -1,
  181. baseItemVal: "",
  182. };
  183. },
  184. methods: {
  185. ...mapMutations(["SETCHOICELEHEND", "SETLEGENDOBJ"]),
  186. // 打开添加弹窗
  187. openAddEqupModle() {
  188. this.$emit("openAddEqupModle");
  189. },
  190. // 设置hover显示
  191. sethover(b) {
  192. this.hoverIndex = b;
  193. },
  194. deletehover() {
  195. this.hoverIndex = -1;
  196. },
  197. // 获取设备图例
  198. getEquipItem(id) {
  199. const obj = {
  200. url: id,
  201. };
  202. this.SETLEGENDOBJ(obj);
  203. const cmd = "EditEuqipment";
  204. this.SETCHOICELEHEND(cmd);
  205. },
  206. // 筛选
  207. screen() {},
  208. // 判断是否再数组中
  209. isinlist(item, idName, name, list) {
  210. let index = -1;
  211. list.forEach((item, i) => {
  212. if (item[idName] == item[idName]) {
  213. index = i;
  214. }
  215. });
  216. if (index < 0) {
  217. list.push({
  218. [idName]: item[idName],
  219. [name]: item[name],
  220. isShow: true,
  221. children: [],
  222. });
  223. }
  224. return index;
  225. },
  226. // 折叠
  227. collapse(item) {
  228. item.isShow = !item.isShow;
  229. },
  230. //
  231. changeItem() {},
  232. pressEnter(){}
  233. },
  234. computed: {
  235. ...mapState(["editCmd"]),
  236. // equipmentList
  237. },
  238. mounted() {
  239. let list = [];
  240. // 获取树专业
  241. equipmentList.forEach((items) => {
  242. const porfessId = items.porfessId;
  243. const equipTypeId = items.equipTypeId;
  244. const listIndex = this.isinlist(items, "porfessId", "porfess", list);
  245. // 第二次;
  246. list.forEach((listItem) => {
  247. this.isinlist(items, "equipTypeId", "equipType", listItem.children);
  248. // 第三层
  249. if (porfessId == listItem.porfessId) {
  250. listItem.children.forEach((item) => {
  251. if (equipTypeId == item.equipTypeId) {
  252. item.children.push({
  253. name: items.name,
  254. id: items.id,
  255. url: items.url,
  256. });
  257. }
  258. });
  259. }
  260. });
  261. });
  262. this.equipmentList = list;
  263. },
  264. };
  265. </script>
  266. <style lang="less" scoped>
  267. div {
  268. -moz-user-select: none; /*火狐*/
  269. -webkit-user-select: none; /*webkit浏览器*/
  270. -ms-user-select: none; /*IE10*/
  271. -khtml-user-select: none; /*早期浏览器*/
  272. user-select: none;
  273. }
  274. ul,
  275. li {
  276. margin: 0;
  277. padding: 0;
  278. list-style-type: none;
  279. }
  280. .equip-list {
  281. width: 100%;
  282. height: 100%;
  283. position: relative;
  284. .clp {
  285. display: flex;
  286. align-items: center;
  287. justify-content: space-around;
  288. margin-top: 12px;
  289. .shaixuan {
  290. cursor: pointer;
  291. }
  292. }
  293. .porfess {
  294. .porfess-title {
  295. width: 100%;
  296. padding: 16px 16px 0 16px;
  297. display: flex;
  298. justify-content: space-between;
  299. cursor: pointer;
  300. }
  301. .equipType {
  302. .equipType-title {
  303. margin: 20px 0 20px 18px;
  304. cursor: pointer;
  305. }
  306. ul {
  307. li {
  308. width: 100%;
  309. height: 48px;
  310. display: flex;
  311. cursor: pointer;
  312. &:hover {
  313. background: #f5f6f7;
  314. }
  315. .left {
  316. width: 60px;
  317. display: flex;
  318. height: 100%;
  319. align-items: center;
  320. .showEyes {
  321. width: 28px;
  322. height: 28px;
  323. }
  324. .icon {
  325. width: 28px;
  326. height: 28px;
  327. border-radius: 50% 50%;
  328. background: red;
  329. }
  330. }
  331. .right {
  332. padding: 4px;
  333. box-sizing: border-box;
  334. .t {
  335. font-size: 14px;
  336. color: #1f2429;
  337. }
  338. .b {
  339. font-size: 10px;
  340. color: #8d9399;
  341. }
  342. }
  343. }
  344. }
  345. }
  346. }
  347. .addbtn {
  348. width: 100%;
  349. height: 46px;
  350. position: absolute;
  351. bottom: 0;
  352. left: 0;
  353. display: flex;
  354. align-items: center;
  355. justify-content: center;
  356. box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.11);
  357. cursor: pointer;
  358. &:hover {
  359. color: #0091ff;
  360. }
  361. }
  362. .caret-icon {
  363. animation: nowhirling 0.2s linear forwards;
  364. }
  365. .caret-icon-active {
  366. animation: whirling 0.2s linear forwards;
  367. }
  368. }
  369. .reset {
  370. position: absolute;
  371. bottom: 16px;
  372. left: 24px;
  373. }
  374. @keyframes whirling {
  375. 0% {
  376. transform: rotate(-90deg);
  377. -ms-transform: rotate(-90deg); /* Internet Explorer */
  378. -moz-transform: rotate(-90deg); /* Firefox */
  379. -webkit-transform: rotate(-90deg); /* Safari 和 Chrome */
  380. -o-transform: rotate(-90deg); /* Opera */
  381. }
  382. 100% {
  383. transform: rotate(0deg);
  384. -ms-transform: rotate(0deg); /* Internet Explorer */
  385. -moz-transform: rotate(0deg); /* Firefox */
  386. -webkit-transform: rotate(0deg); /* Safari 和 Chrome */
  387. -o-transform: rotate(0deg); /* Opera */
  388. }
  389. }
  390. @keyframes nowhirling {
  391. 0% {
  392. transform: rotate(0deg);
  393. -ms-transform: rotate(0deg); /* Internet Explorer */
  394. -moz-transform: rotate(0deg); /* Firefox */
  395. -webkit-transform: rotate(0deg); /* Safari 和 Chrome */
  396. -o-transform: rotate(0deg); /* Opera */
  397. }
  398. 100% {
  399. transform: rotate(-90deg);
  400. -ms-transform: rotate(-90deg); /* Internet Explorer */
  401. -moz-transform: rotate(-90deg); /* Firefox */
  402. -webkit-transform: rotate(-90deg); /* Safari 和 Chrome */
  403. -o-transform: rotate(-90deg); /* Opera */
  404. }
  405. }
  406. </style>