addEquipmentDialog.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538
  1. /**
  2. * 添加显示实例(设备)
  3. */
  4. <template>
  5. <el-dialog
  6. custom-class="equipment-detail-dialog"
  7. @click.native="showPopover && (showPopover = false)"
  8. append-to-body
  9. title="添加显示实例"
  10. :visible="dialogTableVisible"
  11. @close="close"
  12. :close-on-press-escape="false"
  13. >
  14. <div class="header">
  15. <span class="text1">
  16. <el-popover v-model="showPopover" width="240" placement="bottom-start" trigger="manual" popper-class="init-popover">
  17. <p>请先选择需展示的设备实例范围</p>
  18. <el-button size="mini" class="m-btn" @click="showPopover = false">我知道了</el-button>
  19. <span slot="reference">选择设备:</span>
  20. </el-popover>
  21. </span>
  22. <!-- 设备实例范围 树 -->
  23. <TreeSelect
  24. title="已选项"
  25. unit="个"
  26. placeholder="请选择"
  27. :width="240"
  28. :height="300"
  29. :caption="'设备实例范围'"
  30. :notNull="true"
  31. :returnParentNode="false"
  32. :isShowAllChoice="true"
  33. :selectedIds="selectedIds1"
  34. :choseArea="true"
  35. :data="dataTree1"
  36. @change="treeChange1"
  37. @focusChange="focusChange1"
  38. />
  39. <span class="text2">选择空间:</span>
  40. <!-- 空间分区类型 树 -->
  41. <!-- <TreeSelect
  42. title="已选项"
  43. unit="个"
  44. placeholder="请选择"
  45. :width="240"
  46. :height="300"
  47. :caption="'分区类型:'"
  48. :notNull="true"
  49. :returnParentNode="false"
  50. :isShowAllChoice="true"
  51. :selectedIds="selectedIds2"
  52. :choseArea="true"
  53. :data="dataTree2"
  54. @change="treeChange2"
  55. @focusChange="focusChange2"
  56. /> -->
  57. <Select
  58. width="220"
  59. tipPlace="top"
  60. multiple
  61. caption="分区类型:"
  62. @confirm="spacePartitionTypeConfirm"
  63. v-model="spacePartitionType"
  64. :selectdata="spacePartitionTypeData"
  65. :placeholder="'请选择'"
  66. />
  67. <!-- 空间 分区下实例 菜单 -->
  68. <Select
  69. width="220"
  70. tipPlace="top"
  71. multiple
  72. caption="分区下实例:"
  73. @confirm="selectConfirm"
  74. :disabled="!spacePartitionType.length"
  75. v-model="spacePartitionInstance"
  76. :selectdata="selectData"
  77. :placeholder="'请选择'"
  78. />
  79. <!-- 空间功能类型 树 -->
  80. <TreeSelect
  81. title="已选项"
  82. unit="个"
  83. placeholder="请选择"
  84. :width="240"
  85. :height="300"
  86. :caption="'空间功能类型:'"
  87. :notNull="true"
  88. :returnParentNode="false"
  89. :isShowAllChoice="true"
  90. :selectedIds="selectedIds3"
  91. :choseArea="true"
  92. :disabled="!spacePartitionType.length"
  93. :data="dataTree3"
  94. @change="treeChange3"
  95. @focusChange="focusChange3"
  96. />
  97. </div>
  98. <!-- 表格 -->
  99. <el-table
  100. v-show="tableData.length"
  101. :data="tableData"
  102. max-height="420"
  103. :span-method="objectSpanMethod"
  104. style="width: 100%; margin-top: 10px"
  105. :row-class-name="tableRowClassName"
  106. >
  107. <el-table-column prop="codeName" label="设备类" style="width: 30%"> </el-table-column>
  108. <el-table-column prop="total" label="设备实例数量" tyle="width: 30%"> </el-table-column>
  109. <el-table-column prop="classCode" label="操作">
  110. <template slot-scope="scope">
  111. <el-link type="primary" @click="editInfo(scope.row)" :underline="false">编辑信息点</el-link>
  112. </template>
  113. </el-table-column>
  114. </el-table>
  115. <!-- 无数据 -->
  116. <div class="no-data-body" v-show="!tableData.length">
  117. <img src="@/assets/images/no-data.png" style="width: 116px; height: 116px" />
  118. <p style="font-size: 16px; margin-top: 15px">暂无数据</p>
  119. </div>
  120. <!-- 确定,取消按钮 -->
  121. <div slot="footer" class="dialog-footer">
  122. <el-button @click="close">取 消</el-button>
  123. <el-button :disabled="!tableData.length" :type="tableData.length ? 'primary' : 'info'" @click="confirm">确 定</el-button>
  124. </div>
  125. <!-- TODO: -->
  126. <!-- <edit-info-point type="equipment" @closeModal="showEditInfoPoint = false" :showDialog="showEditInfoPoint" /> -->
  127. </el-dialog>
  128. </template>
  129. <script>
  130. /**
  131. * 添加显示实例
  132. */
  133. import editInfoPoint from "./editInfoPoint";
  134. import { Select, TreeSelect } from "meri-design";
  135. import { cloneDeep } from "lodash";
  136. import { dictCategoryQuery, dictQuery, PartiInstancQuery } from "@/api/datacenter";
  137. import { categoryQuery, typeQuery, equipQuery } from "@/api/equipcomponent";
  138. import { array2Tree } from "@/utils/utils";
  139. const dataTree = [
  140. {
  141. id: "0",
  142. name: "顶级顶级",
  143. open: true,
  144. children: [
  145. {
  146. id: "1",
  147. name: "一级1",
  148. // open: false,
  149. //
  150. children: [
  151. { id: "121", name: "测试文字溢出测试文字溢出测试文字溢出测试文字溢出测试文字溢出测" },
  152. { id: "122", name: "二级3111", checked: "uncheck" },
  153. { id: "123", name: "二级4", checked: "uncheck" },
  154. { id: "124", name: "二级1" },
  155. ],
  156. },
  157. {
  158. id: "2",
  159. name: "一级2",
  160. children: [
  161. { id: "221", name: "测试222", checked: "uncheck" },
  162. { id: "222", name: "二级21", checked: "uncheck" },
  163. { id: "223", name: "二级22", checked: "uncheck" },
  164. ],
  165. },
  166. {
  167. id: "3",
  168. name: "一级3",
  169. children: [
  170. { id: "321", name: "测试222" },
  171. { id: "322", name: "二级32" },
  172. ],
  173. },
  174. ],
  175. },
  176. ];
  177. export default {
  178. name: "addEquipmentDialog",
  179. props: {
  180. showDialog: {
  181. type: Boolean,
  182. required: true,
  183. },
  184. },
  185. components: { Select, TreeSelect, editInfoPoint },
  186. data() {
  187. return {
  188. timer: null,
  189. showPopover: false, //选择设备 popover是否显示
  190. dataTree1: [],
  191. dataTree2: cloneDeep(dataTree),
  192. dataTree3: cloneDeep(dataTree),
  193. selectedIds1: [],
  194. selectedIds2: [],
  195. selectedIds3: [],
  196. curentSelectTree1: [], //选中的设备 实例范围
  197. curentSelectTree2: [], //选中的空间 分区类型
  198. spacePartitionType: [],
  199. spacePartitionTypeData: [],
  200. curentSelectTree3: [], //选中的空间 功能类型
  201. dialogTableVisible: false,
  202. spacePartitionInstance: [], //选中的空间分区下实例
  203. selectData: [
  204. // { id: "test1", name: "选择项" },
  205. ],
  206. tableData: [
  207. // {
  208. // date: "实例总数量 111111",
  209. // },
  210. // {
  211. // date: "监控器",
  212. // name: "111",
  213. // address: "dfadfasdfa",
  214. // },
  215. ],
  216. _tableData: [],
  217. showEditInfoPoint: false, //显示编辑信息点弹窗
  218. };
  219. },
  220. watch: {
  221. // 是否打开弹窗
  222. showDialog(val) {
  223. this.dialogTableVisible = val;
  224. if (val) {
  225. this.initModal();
  226. }
  227. },
  228. },
  229. created() {},
  230. mounted() {
  231. // window.vm = this;
  232. setTimeout(() => {
  233. this.showPopover = true;
  234. }, 2000);
  235. },
  236. methods: {
  237. /**
  238. * 设备实例范围树更改
  239. */
  240. treeChange1(data, dataObj) {
  241. if (!dataObj) {
  242. this.curentSelectTree1 = [];
  243. } else {
  244. // 筛选树的最后一级,按照组件返回数组的name中/的个数
  245. this.curentSelectTree1 = dataObj.filter((v) => v.name.split("/").length === 3).map((v) => v.id);
  246. }
  247. // 查询设备列表
  248. this.curentSelectTree1.length && this.getTableData();
  249. },
  250. focusChange1(status) {
  251. // console.log("focusChange", status);
  252. },
  253. /**
  254. * 空间 分区类型树
  255. */
  256. /* treeChange2(data, dataObj) {
  257. // 清空选中的分区下的实例
  258. this.spacePartitionInstance = [];
  259. if (!dataObj) {
  260. this.curentSelectTree2 = [];
  261. } else {
  262. // 筛选树的最后一级,按照组件返回数组的name中/的个数
  263. this.curentSelectTree2 = dataObj.filter((v) => v.name.split("/").length === 2).map((v) => v.id);
  264. }
  265. }, */
  266. spacePartitionTypeConfirm(data) {
  267. // 查询分区下实例列表
  268. if (this.spacePartitionType.length) {
  269. this.getPartiInstance();
  270. }
  271. },
  272. /**
  273. * 空间 分区下实例
  274. */
  275. selectConfirm(data) {
  276. console.log("selectConfirm");
  277. console.log(data);
  278. console.log(this.spacePartitionInstance);
  279. },
  280. focusChange2(status) {
  281. // console.log("focusChange", status);
  282. },
  283. /**
  284. * 空间功能类型
  285. */
  286. treeChange3(data, dataObj) {
  287. if (!dataObj) {
  288. this.curentSelectTree3 = [];
  289. } else {
  290. // 筛选树的最后一级,按照组件返回数组的name中/的个数
  291. this.curentSelectTree3 = dataObj.filter((v) => v.name.split("/").length === 3).map((v) => v.id);
  292. }
  293. },
  294. focusChange3(status) {
  295. // console.log("focusChange", status);
  296. },
  297. /**
  298. * 显示弹窗时的处理
  299. */
  300. initModal() {
  301. // 查询设备实例树
  302. this.getCategory();
  303. // 分区类型 列表
  304. this.getType();
  305. this.getDict();
  306. },
  307. /**
  308. * 查询设备实例树
  309. */
  310. async getCategory() {
  311. let res = await dictCategoryQuery({ type: "majorSystemEquip" });
  312. console.log(res);
  313. let tree = res?.content || [];
  314. // tree.map((v) => (v.id = v.code));
  315. tree.forEach((item) => {
  316. item._id = item.id;
  317. item.id = item.code;
  318. item?.children?.forEach((detail) => {
  319. detail._id = detail.id;
  320. detail.id = detail.code;
  321. detail?.children.forEach((v) => (v.id = v.code));
  322. });
  323. });
  324. this.dataTree1 = tree;
  325. },
  326. /**
  327. * 空间分区类型 列表
  328. */
  329. async getType() {
  330. let res = await dictCategoryQuery({ type: "space" });
  331. let data = res?.content || [];
  332. data.map((v) => (v.id = v.code));
  333. // name,code--> { id: "test1", name: "选择项" },
  334. this.spacePartitionTypeData = data;
  335. },
  336. /**
  337. * 空间分区实例
  338. */
  339. async getPartiInstance() {
  340. let postParams = {
  341. pageNumber: 1,
  342. pageSize: 1000,
  343. floorId: "Fl11010500296bc7ca3a0d5d41419cf95c5b45116400",
  344. buildingId: "Bd1101050029cb77fbd1846611eaac87cd1cd6a961c6",
  345. // floorId: "",
  346. // buildingId: "",
  347. zoneTypeList: this.spacePartitionType,
  348. };
  349. let res = await PartiInstancQuery(postParams);
  350. console.log("==================");
  351. console.log(res);
  352. console.log(res.content);
  353. let data = res.content.map((v) => {
  354. return { id: v.id, name: v.localName };
  355. });
  356. this.selectData = data;
  357. this.spacePartitionInstance = [];
  358. // v-model="spacePartitionInstance"
  359. // :selectdata="selectData"
  360. },
  361. // 空间功能类型
  362. async getDict() {
  363. let res = await dictQuery({
  364. filters: "code='roomFuncType'",
  365. type: "GeneralZone",
  366. });
  367. let data = res?.content[0]?.dataSource || [];
  368. data.map((v) => (v.id = v.code));
  369. // 构造树
  370. this.dataTree3 = array2Tree(data, "parentCode");
  371. },
  372. async getTableData() {
  373. // 东坝地上二层
  374. let postParams = {
  375. equipTypes: this.curentSelectTree1, //设备类型 //["FFFSSN"],
  376. zoneTypes: [], //空间类型
  377. spaceIds: [], //空间实例id
  378. funcTypes: [], //空间功能区类型
  379. floorId: "Fl11010500296bc7ca3a0d5d41419cf95c5b45116400",
  380. buildingId: "Bd1101050029cb77fbd1846611eaac87cd1cd6a961c6",
  381. };
  382. let res = await equipQuery(postParams);
  383. let data = res.content || [];
  384. this._tableData = data;
  385. let map = {};
  386. data.map((item) => {
  387. if (!map[item.classCode]) {
  388. map[item.classCode] = {
  389. classCode: item.classCode,
  390. codeName: item.codeName,
  391. total: 1,
  392. };
  393. } else {
  394. map[item.classCode].total++;
  395. }
  396. });
  397. let tableData = Object.values(map);
  398. tableData.unshift({ codeName: "实例总数量: " + data.length });
  399. this.tableData = tableData;
  400. },
  401. /**
  402. * 合并第一行
  403. */
  404. objectSpanMethod({ row, column, rowIndex, columnIndex }) {
  405. if (rowIndex === 0) {
  406. if (columnIndex === 0) {
  407. return {
  408. rowspan: 1,
  409. colspan: 3,
  410. };
  411. } else {
  412. return {
  413. rowspan: 1,
  414. colspan: 0,
  415. };
  416. }
  417. }
  418. },
  419. /**
  420. * 行样式
  421. */
  422. tableRowClassName({ row, rowIndex }) {
  423. if (rowIndex === 0) {
  424. return "";
  425. }
  426. return "m-row";
  427. },
  428. /**
  429. * 编辑信息点
  430. */
  431. editInfo(data) {
  432. console.log(data);
  433. this.showEditInfoPoint = true;
  434. },
  435. /**
  436. * 关闭弹窗
  437. */
  438. close() {
  439. console.log("close");
  440. // dialogTableVisible
  441. this.dialogTableVisible = false;
  442. this.showPopover = false;
  443. clearTimeout(this.timer);
  444. this.$emit("closeModal");
  445. },
  446. /**
  447. * 点击弹窗确定,提交接口
  448. */
  449. confirm() {
  450. /**
  451. * 设备实例范围:
  452. * []
  453. * 空间
  454. * 分区类型
  455. * []
  456. * 分区下实例
  457. * id
  458. * 空间功能类型
  459. * []
  460. *
  461. */
  462. this.dialogTableVisible = false;
  463. this.showPopover = false;
  464. clearTimeout(this.timer);
  465. },
  466. },
  467. };
  468. </script>
  469. <style lang="less">
  470. .init-popover {
  471. width: 240px;
  472. height: 115px;
  473. background: #0091ff;
  474. box-shadow: 0px 2px 10px 0px rgba(31, 36, 41, 0.1);
  475. .popper__arrow::after {
  476. border-bottom-color: #0091ff !important;
  477. }
  478. p {
  479. text-align: center;
  480. font-size: 14px;
  481. font-family: PingFangSC-Regular, PingFang SC;
  482. font-weight: 400;
  483. color: #ffffff;
  484. line-height: 22px;
  485. }
  486. .m-btn {
  487. display: flex;
  488. align-items: center;
  489. font-size: 14px;
  490. font-family: PingFangSC-Regular, PingFang SC;
  491. font-weight: 400;
  492. color: #0091ff;
  493. height: 28px !important;
  494. position: absolute;
  495. bottom: 15px;
  496. right: 20px;
  497. }
  498. }
  499. </style>
  500. <style lang='less' scoped>
  501. /deep/ .equipment-detail-dialog {
  502. width: 1200px;
  503. height: 648px;
  504. // background-color: blueviolet;
  505. .header {
  506. display: flex;
  507. align-items: center;
  508. .text1,
  509. .text2 {
  510. margin-right: 10px;
  511. }
  512. .text2 {
  513. margin-left: 15px;
  514. }
  515. & > div {
  516. margin-right: 10px;
  517. }
  518. }
  519. .m-row {
  520. color: #1f2429;
  521. font-weight: 600;
  522. }
  523. .no-data-body {
  524. width: 100%;
  525. height: 420px;
  526. display: flex;
  527. flex-direction: column;
  528. justify-content: center;
  529. align-items: center;
  530. }
  531. /deep/ .el-dialog__footer {
  532. position: absolute;
  533. right: 0;
  534. bottom: 0;
  535. }
  536. }
  537. </style>