BaseEquipment.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616
  1. <template>
  2. <div id="equip_pro">
  3. <div class="title">{{ localName ? localName : "--" }}</div>
  4. <el-tabs v-model="activeName" @tab-click="handleClick">
  5. <el-tab-pane label="属性" name="first">
  6. <div class="property">
  7. <div class="base-property">
  8. <div>
  9. <span>W</span>
  10. <el-input
  11. style="width: 74px; margin-left: 6px"
  12. size="mini"
  13. v-model="width"
  14. @input="changeWidth"
  15. placeholder="请输入内容"
  16. ></el-input>
  17. </div>
  18. <div>
  19. <span>H</span>
  20. <el-input
  21. style="width: 74px; margin-left: 6px"
  22. size="mini"
  23. v-model="height"
  24. @input="changeHeight"
  25. placeholder="请输入内容"
  26. ></el-input>
  27. </div>
  28. </div>
  29. <div class="base-property base-property-left">
  30. <div>
  31. <span>R</span>
  32. <el-input
  33. style="width: 74px; margin-left: 6px"
  34. size="mini"
  35. disabled
  36. @input="changeWidth"
  37. placeholder="请输入内容"
  38. ></el-input>
  39. </div>
  40. </div>
  41. <div class="imgUpdate">
  42. <div class="img-tit">设计图</div>
  43. <div class="btn-list">
  44. <el-upload
  45. class="avatar-uploader"
  46. action="https://jsonplaceholder.typicode.com/posts/"
  47. :show-file-list="false"
  48. :before-upload="beforeAvatarUpload"
  49. >
  50. <Button type="default">上传文件</Button>
  51. </el-upload>
  52. </div>
  53. </div>
  54. <div class="imgUpdate">
  55. <div class="img-tit">附加数据</div>
  56. <div class="textarea">
  57. <el-input
  58. type="textarea"
  59. @input="changeAnotherMsg"
  60. v-model="anotherMsg"
  61. :rows="2"
  62. placeholder="请输入内容"
  63. >
  64. </el-input>
  65. </div>
  66. </div>
  67. </div>
  68. </el-tab-pane>
  69. <el-tab-pane label="信息点" name="second">
  70. <div class="msgPoint-box">
  71. <Input
  72. class="baseItemInput"
  73. :width="200"
  74. iconType="search"
  75. placeholder="搜索信息点"
  76. v-model="getPressMsg"
  77. @pressEnter="pressEnter"
  78. @clear="pressEnter"
  79. />
  80. <div
  81. class="msgPoint-list"
  82. ref="localDom"
  83. v-show="!pressMsgData.length"
  84. >
  85. <div class="type-list" v-for="(item, key) in msgData" :key="key">
  86. <div class="type-title" @click="clips(item)">
  87. <i
  88. v-bind:class="[
  89. item.showChildren ? 'caret-icon-active' : 'caret-icon',
  90. 'el-icon-caret-bottom',
  91. ]"
  92. ></i>
  93. <span>{{ item.tagName }}</span>
  94. </div>
  95. <el-collapse-transition>
  96. <ul class="list" v-show="item.showChildren">
  97. <li v-for="(a, b) in item.children" :key="'i' + b">
  98. <Checkbox
  99. :checked="a.checked ? 'checked' : 'uncheck'"
  100. @change="changeCheck(a)"
  101. />
  102. <p>{{ a.name }}</p>
  103. </li>
  104. </ul>
  105. </el-collapse-transition>
  106. </div>
  107. </div>
  108. <ul class="msgPoint-list-press" v-show="pressMsgData.length">
  109. <li v-for="(a, b) in pressMsgData" :key="b">
  110. <Checkbox
  111. :checked="a.checked ? 'checked' : 'uncheck'"
  112. @change="changeCheck(a)"
  113. />
  114. <p>{{ a.name }}</p>
  115. </li>
  116. </ul>
  117. </div>
  118. </el-tab-pane>
  119. </el-tabs>
  120. <div
  121. v-show="activeName == 'second' && this.checkedList.length"
  122. class="choiced"
  123. @mouseenter="showTip = true"
  124. @mouseleave="showTip = false"
  125. >
  126. <div v-show="showTip" class="transition-box">
  127. <transition v-show="showTip" name="el-zoom-in-bottom">
  128. <div v-show="showTip" class="transition">
  129. <el-tag
  130. v-for="(tag, index) in this.checkedList"
  131. :key="index"
  132. closable
  133. @close="closeTag(tag)"
  134. type="info"
  135. >
  136. {{ tag.name }}
  137. </el-tag>
  138. </div>
  139. </transition>
  140. </div>
  141. <span> 已选信息点 {{ this.checkedList.length }} </span>
  142. </div>
  143. </div>
  144. </template>
  145. <script>
  146. import { queryEquipMsg, queryDict } from "@/api/editer";
  147. import bus from "@/bus/bus";
  148. const imgBaseUrl = window.__systemConf.imgServeUri;
  149. // 图上传路径
  150. const imgServeUpload = window.__systemConf.imgServeUpload;
  151. export default {
  152. props: [
  153. "InfoPointList",
  154. "EquipData",
  155. "equipHeight",
  156. "Width",
  157. "Height",
  158. "AnotherMsg",
  159. ],
  160. data() {
  161. return {
  162. width: 0,
  163. height: 0,
  164. activeName: "first",
  165. width: "",
  166. height: "",
  167. msgData: [], //存储二级树
  168. pressMsgData: [], // 搜索后得信息点数组
  169. getPressMsg: "", //输入信息
  170. local: "", //局部加载
  171. localName: "", //设备本地名称
  172. anotherMsg: "", // 附加信息
  173. showTip: "", //显示已选信息
  174. checkedList: [], //已经选信息点
  175. };
  176. },
  177. methods: {
  178. // 折叠信息点操作
  179. clips(item) {
  180. item.showChildren = !item.showChildren;
  181. },
  182. // 点击切换
  183. handleClick(tab, event) {
  184. // 设置高度
  185. if (tab.paneName == "second") {
  186. const box = document.getElementsByClassName("msgPoint-list")[0];
  187. const box2 = document.getElementsByClassName("msgPoint-list-press")[0];
  188. box.style.height = this.equipHeight;
  189. box2.style.height = this.equipHeight;
  190. }
  191. },
  192. // 设置宽
  193. changeWidth(val) {
  194. bus.$emit("updateStyle", "sWidth", val);
  195. },
  196. // 设置高
  197. changeHeight(val) {
  198. bus.$emit("updateStyle", "sHeight", val);
  199. },
  200. // 设置附加信息
  201. changeAnotherMsg(val) {
  202. bus.$emit("updateStyle", "anotherMsg", val);
  203. },
  204. beforeAvatarUpload(file) {
  205. let that = this;
  206. const fileReader = new FileReader();
  207. fileReader.readAsDataURL(file); //读取图片
  208. const ftype = file.type;
  209. const fname = file.name;
  210. const uploadKey = file.uid;
  211. const imgType = ftype.split(".")[ftype.length - 1];
  212. fileReader.addEventListener("load", function () {
  213. // 读取完成
  214. let res = fileReader.result;
  215. //将canvas的base64位图片转换成图片png的file
  216. var blob = that.dataURLtoBlob(res, ftype);
  217. //将其转换成file对象
  218. let file = new File([blob], fname, {
  219. type: ftype,
  220. lastModified: Date.now(),
  221. }); //blob转file
  222. // try sending
  223. let reader = new FileReader();
  224. let fileType = file.name.split(".");
  225. let imgType = fileType[fileType.length - 1];
  226. let CreateTime = that.formatDate(new Date(file.lastModified));
  227. reader.onloadend = function () {
  228. // 这个事件在读取结束后,无论成功或者失败都会触发
  229. if (reader.error) {
  230. } else {
  231. // 构造 XMLHttpRequest 对象,发送文件 Binary 数据
  232. var xhr = new XMLHttpRequest();
  233. xhr.open(
  234. /* method */
  235. "POST",
  236. /* target url */
  237. imgServeUpload + uploadKey + "." + imgType
  238. );
  239. xhr.send(reader.result);
  240. xhr.onreadystatechange = function () {
  241. if (xhr.readyState == 4) {
  242. if (xhr.status == 200) {
  243. that.url = imgBaseUrl + uploadKey + "." + imgType;
  244. bus.$emit("updateStyle", "url", uploadKey + "." + imgType);
  245. }
  246. }
  247. };
  248. }
  249. };
  250. reader.readAsArrayBuffer(file);
  251. });
  252. },
  253. dataURLtoBlob(dataURI, type) {
  254. var binary = atob(dataURI.split(",")[1]);
  255. var array = [];
  256. for (var i = 0; i < binary.length; i++) {
  257. array.push(binary.charCodeAt(i));
  258. }
  259. return new Blob([new Uint8Array(array)], { type: type });
  260. },
  261. formatDate(now) {
  262. let year = now.getFullYear();
  263. let month = now.getMonth() + 1;
  264. let date = now.getDate();
  265. let hour = now.getHours();
  266. let minute = now.getMinutes();
  267. let second = now.getSeconds();
  268. return (
  269. year +
  270. "-" +
  271. month +
  272. "-" +
  273. (date > 10 ? date : "0" + date) +
  274. " " +
  275. hour +
  276. ":" +
  277. (minute > 10 ? minute : "0" + minute) +
  278. ":" +
  279. (second > 10 ? second : "0" + second)
  280. );
  281. },
  282. // 切换选中选项
  283. changeCheck(item) {
  284. item.checked = !item.checked;
  285. // 添加设备信息点
  286. Object.assign(item, {
  287. equipId: this.EquipData.attachObjectIds[0],
  288. });
  289. bus.$emit("changeEquipMsgPoint", item);
  290. //同步选中信息点
  291. if (!item.checked) {
  292. let trueList = [];
  293. trueList = this.checkedList.filter((item) => {
  294. return item.checked == true;
  295. });
  296. this.checkedList = trueList;
  297. } else {
  298. this.checkedList.push(item);
  299. }
  300. },
  301. // 删除tag标签
  302. closeTag(tag) {
  303. this.changeCheck(tag);
  304. },
  305. // 搜索回车操作
  306. pressEnter() {
  307. const list = [];
  308. if (!this.getPressMsg) {
  309. this.pressMsgData = [];
  310. return;
  311. }
  312. // 对信息点相同得提取出来
  313. this.msgData.forEach((item) => {
  314. item.children.forEach((a) => {
  315. if (a.name.includes(this.getPressMsg)) {
  316. list.push(a);
  317. }
  318. });
  319. });
  320. this.pressMsgData = list;
  321. },
  322. },
  323. watch: {
  324. EquipData(val) {
  325. this.msgData = []; //存储二级树
  326. this.pressMsgData = []; // 搜索后得信息点数组
  327. this.getPressMsg = ""; //输入信息
  328. this.localName = val.properties.localName;
  329. // 启动局部 loading
  330. this.local = this.$loading({
  331. el: this.$refs.localDom,
  332. type: "local",
  333. size: "min",
  334. });
  335. const data = {
  336. Type: val.properties.classCode,
  337. };
  338. // 获取该设备所有信息点
  339. queryDict(data)
  340. .then((res) => {
  341. let arr = [];
  342. // 勾选设备中选中的对象
  343. const msgData = res.content;
  344. // 设置已经勾选数据
  345. if (this.InfoPointList && this.InfoPointList.length) {
  346. msgData.map((item) => {
  347. item.checked = false;
  348. this.InfoPointList.forEach((a) => {
  349. if (a.code == item.code) {
  350. item.checked = true;
  351. }
  352. });
  353. return item;
  354. });
  355. } else {
  356. msgData.map((item) => {
  357. item.checked = false;
  358. return item;
  359. });
  360. }
  361. // 生成二级树
  362. msgData.forEach((item) => {
  363. const itemTag = item.secondTag
  364. ? item.secondTag
  365. : item.firstTag
  366. ? item.firstTag
  367. : "--";
  368. if (arr.length) {
  369. let index = -1;
  370. arr.forEach((aItem) => {
  371. if (aItem.tag == itemTag) {
  372. index = 1;
  373. aItem.children.push(item);
  374. aItem.number++;
  375. }
  376. });
  377. if (index == -1) {
  378. const tag = item.secondTag
  379. ? item.secondTag
  380. : item.firstTag
  381. ? item.firstTag
  382. : "--";
  383. const tagName = item.secondName
  384. ? item.secondName
  385. : item.firstName
  386. ? item.firstName
  387. : "--";
  388. let obj = {
  389. tagName: tagName,
  390. tag: tag,
  391. children: [item],
  392. number: 1,
  393. showChildren: true,
  394. };
  395. arr.push(obj);
  396. }
  397. } else {
  398. const tag = item.secondTag
  399. ? item.secondTag
  400. : item.firstTag
  401. ? item.firstTag
  402. : "--";
  403. const tagName = item.secondName
  404. ? item.secondName
  405. : item.firstName
  406. ? item.firstName
  407. : "--";
  408. let obj = {
  409. tagName: tagName,
  410. tag: tag,
  411. children: [],
  412. number: 1,
  413. showChildren: true,
  414. };
  415. obj.children.push(item);
  416. arr.push(obj);
  417. }
  418. });
  419. this.msgData = arr;
  420. const checkedList = []
  421. this.InfoPointList.forEach(item=>{
  422. checkedList.push(item)
  423. });
  424. this.checkedList = checkedList;
  425. this.$loading.close(this.local);
  426. })
  427. .catch((err) => {
  428. console.log("接口报错", err);
  429. this.$loading.close(this.local);
  430. });
  431. },
  432. Width(val) {
  433. this.width = val;
  434. },
  435. Height(val) {
  436. this.height = val;
  437. },
  438. AnotherMsg(val) {
  439. this.anotherMsg = val;
  440. },
  441. },
  442. mounted() {},
  443. };
  444. </script>
  445. <style lang="less" scoped>
  446. ul,
  447. li,
  448. p {
  449. margin: 0;
  450. padding: 0;
  451. list-style-type: none;
  452. }
  453. #equip_pro {
  454. position: relative;
  455. .title {
  456. height: 47px;
  457. border-bottom: 1px solid #979797;
  458. color: #646c73;
  459. font-size: 16px;
  460. padding-left: 12px;
  461. box-sizing: border-box;
  462. line-height: 47px;
  463. font-weight: bold;
  464. }
  465. .property {
  466. .base-property {
  467. display: flex;
  468. align-items: center;
  469. justify-content: space-around;
  470. }
  471. .base-property-left {
  472. display: flex;
  473. align-items: center;
  474. justify-content: flex-start;
  475. padding-left: 12px;
  476. padding-top: 12px;
  477. box-sizing: border-box;
  478. }
  479. .imgUpdate {
  480. border-top: 1px solid #e4e5e7;
  481. width: 100%;
  482. margin-bottom: 16px;
  483. padding: 0 12px 0 12px;
  484. box-sizing: border-box;
  485. .img-tit {
  486. margin: 12px 0 12px 0;
  487. color: #646a73;
  488. font-size: 12px;
  489. }
  490. }
  491. }
  492. .msgPoint-box {
  493. width: 100%;
  494. height: 100%;
  495. padding: 0 12px 0 12px;
  496. box-sizing: border-box;
  497. .msgPoint-list {
  498. margin-top: 20px;
  499. height: 100%;
  500. overflow-y: scroll;
  501. .type-list {
  502. .type-title {
  503. cursor: pointer;
  504. margin-bottom: 10px;
  505. span {
  506. margin-left: 12px;
  507. }
  508. }
  509. ul {
  510. width: 100%;
  511. padding-left: 28px;
  512. li {
  513. display: flex;
  514. height: 40px;
  515. align-items: center;
  516. justify-content: flex-start;
  517. cursor: pointer;
  518. p {
  519. margin-left: 12px;
  520. }
  521. &:hover {
  522. background: #f5f6f7;
  523. }
  524. }
  525. }
  526. }
  527. }
  528. .msgPoint-list-press {
  529. margin-top: 12px;
  530. overflow-y: scroll;
  531. li {
  532. display: flex;
  533. height: 40px;
  534. align-items: center;
  535. justify-content: flex-start;
  536. cursor: pointer;
  537. p {
  538. margin-left: 12px;
  539. }
  540. &:hover {
  541. background: #f5f6f7;
  542. }
  543. }
  544. }
  545. }
  546. .caret-icon {
  547. animation: nowhirling 0.2s linear forwards;
  548. }
  549. .caret-icon-active {
  550. animation: whirling 0.2s linear forwards;
  551. }
  552. @keyframes whirling {
  553. 0% {
  554. transform: rotate(-90deg);
  555. -ms-transform: rotate(-90deg); /* Internet Explorer */
  556. -moz-transform: rotate(-90deg); /* Firefox */
  557. -webkit-transform: rotate(-90deg); /* Safari 和 Chrome */
  558. -o-transform: rotate(-90deg); /* Opera */
  559. }
  560. 100% {
  561. transform: rotate(0deg);
  562. -ms-transform: rotate(0deg); /* Internet Explorer */
  563. -moz-transform: rotate(0deg); /* Firefox */
  564. -webkit-transform: rotate(0deg); /* Safari 和 Chrome */
  565. -o-transform: rotate(0deg); /* Opera */
  566. }
  567. }
  568. @keyframes nowhirling {
  569. 0% {
  570. transform: rotate(0deg);
  571. -ms-transform: rotate(0deg); /* Internet Explorer */
  572. -moz-transform: rotate(0deg); /* Firefox */
  573. -webkit-transform: rotate(0deg); /* Safari 和 Chrome */
  574. -o-transform: rotate(0deg); /* Opera */
  575. }
  576. 100% {
  577. transform: rotate(-90deg);
  578. -ms-transform: rotate(-90deg); /* Internet Explorer */
  579. -moz-transform: rotate(-90deg); /* Firefox */
  580. -webkit-transform: rotate(-90deg); /* Safari 和 Chrome */
  581. -o-transform: rotate(-90deg); /* Opera */
  582. }
  583. }
  584. .choiced {
  585. width: 240px;
  586. padding: 20px;
  587. height: 50px;
  588. background: #ffffff;
  589. box-shadow: 1px 2px 10px 0px rgba(0, 0, 0, 0.11);
  590. font-size: 14px;
  591. color: #646a73;
  592. line-height: 18px;
  593. position: relative;
  594. bottom: 0;
  595. //更多信息点浮框
  596. .transition-box {
  597. position: absolute;
  598. bottom: 50px;
  599. right: 0px;
  600. width: 480px;
  601. height: 200px;
  602. .transition {
  603. width: 100%;
  604. height: 200px;
  605. overflow-x: hidden;
  606. overflow-y: scroll;
  607. background: #ffffff;
  608. }
  609. }
  610. }
  611. }
  612. </style>