addEquipmentDialog.vue 18 KB

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