123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531 |
- <!-- 添加显示实例(设备) -->
- <template>
- <el-dialog
- custom-class="equipment-detail-dialog"
- @click.native="showPopover && (showPopover = false)"
- append-to-body
- title="添加显示实例"
- :visible="dialogTableVisible"
- @close="close"
- :close-on-press-escape="false"
- >
- <div class="header">
- <span class="text1">
- <el-popover v-model="showPopover" width="240" placement="bottom-start" trigger="manual" popper-class="init-popover">
- <p>请先选择需展示的设备实例范围</p>
- <el-button size="mini" class="m-btn" @click="showPopover = false">我知道了</el-button>
- <span slot="reference">选择设备:</span>
- </el-popover>
- </span>
- <!-- 设备实例范围 树 -->
- <TreeSelect
- title="已选项"
- unit="个"
- placeholder="请选择"
- :width="240"
- :height="300"
- :caption="'设备实例范围'"
- :notNull="true"
- :returnParentNode="false"
- :isShowAllChoice="true"
- :selectedIds="selectedIds1"
- :choseArea="true"
- :data="dataTree1"
- @change="treeChange1"
- />
- <span class="text2">选择空间:</span>
- <!-- 空间分区类型 菜单 -->
- <Select
- width="220"
- tipPlace="top"
- multiple
- caption="分区类型:"
- @confirm="spacePartitionTypeConfirm"
- v-model="spacePartitionType"
- :selectdata="spacePartitionTypeData"
- :placeholder="'请选择'"
- />
- <!-- 空间 分区下实例 菜单 -->
- <Select
- width="220"
- tipPlace="top"
- multiple
- caption="分区下实例:"
- @confirm="selectConfirm"
- :disabled="!spacePartitionType.length"
- v-model="spacePartitionInstance"
- :selectdata="selectData"
- :placeholder="'请选择'"
- />
- <!-- 空间功能类型 树 -->
- <TreeSelect
- title="已选项"
- unit="个"
- placeholder="请选择"
- :width="240"
- :height="300"
- :caption="'空间功能类型:'"
- :notNull="true"
- :returnParentNode="false"
- :isShowAllChoice="true"
- :selectedIds="selectedIds3"
- :choseArea="true"
- :disabled="!spacePartitionType.length"
- :data="dataTree3"
- @change="treeChange3"
- />
- </div>
- <!-- 表格 -->
- <el-table
- v-show="tableData.length"
- :data="tableData"
- max-height="420"
- :span-method="objectSpanMethod"
- style="width: 100%; margin-top: 10px"
- :row-class-name="tableRowClassName"
- >
- <el-table-column prop="codeName" label="设备类" style="width: 30%"> </el-table-column>
- <el-table-column prop="total" label="设备实例数量" tyle="width: 30%"> </el-table-column>
- <el-table-column prop="classCode" label="操作">
- <template slot-scope="scope">
- <el-link type="primary" @click="editInfo(scope.row)" :underline="false">编辑信息点</el-link>
- </template>
- </el-table-column>
- </el-table>
- <!-- 无数据 -->
- <div class="no-data-body" v-show="!tableData.length">
- <img src="@/assets/images/no-data.png" style="width: 116px; height: 116px" />
- <p style="font-size: 16px; margin-top: 15px">暂无数据</p>
- </div>
- <!-- 确定,取消按钮 -->
- <div slot="footer" class="dialog-footer">
- <el-button @click="close">取 消</el-button>
- <el-button :disabled="!tableData.length" :type="tableData.length ? 'primary' : 'info'" @click="confirm">确 定</el-button>
- </div>
- <edit-info-point
- type="equipment"
- @closeModal="showEditInfoPoint = false"
- :code="currentInfo.classCode || ''"
- :showDialog="showEditInfoPoint"
- />
- </el-dialog>
- </template>
- <script>
- /**
- * 添加显示实例
- */
- import { mapState, mapMutations } from "vuex";
- import editInfoPoint from "./editInfoPoint";
- import { Select, TreeSelect } from "meri-design";
- import { cloneDeep } from "lodash";
- import { ruleCreate } from "@/api/labsl";
- import { dictCategoryQuery, dictQuery, PartiInstancQuery } from "@/api/datacenter";
- import { equipQuery } from "@/api/equipcomponent";
- import { array2Tree, mapTree } from "@/utils/utils";
- import bus from "@/bus/bus";
- export default {
- name: "addEquipmentDialog",
- props: {
- showDialog: {
- type: Boolean,
- required: true,
- },
- },
- components: { Select, TreeSelect, editInfoPoint },
- data() {
- return {
- timer: null,
- showPopover: false, //选择设备 popover是否显示
- dataTree1: [],
- dataTree3: [],
- selectedIds1: [],
- selectedIds3: [],
- curentSelectTree1: [], //选中的设备 实例范围
- curentSelectTree2: [], //选中的空间 分区类型
- spacePartitionType: [],
- spacePartitionTypeData: [],
- curentSelectTree3: [], //选中的空间 功能类型
- dialogTableVisible: false,
- spacePartitionInstance: [], //选中的空间分区下实例
- selectData: [
- // { id: "test1", name: "选择项" },
- ],
- tableData: [
- // {
- // date: "实例总数量 111111",
- // },
- // {
- // date: "监控器",
- // name: "111",
- // address: "dfadfasdfa",
- // },
- ],
- tableDataBak: [],
- currentInfo: {}, //点击的设备类数据
- showEditInfoPoint: false, //显示编辑信息点弹窗
- };
- },
- computed: {
- ...mapState(["buildingId", "floorId", "id", "graphId"]),
- },
- watch: {
- // 是否打开弹窗
- showDialog(val) {
- this.dialogTableVisible = val;
- if (val) {
- this.initModal();
- }
- },
- /**
- * 点击x号,清空列表
- */
- curentSelectTree1: {
- handler(newV, oldV) {
- if (!newV.length && oldV.length) {
- this.tableData = [];
- }
- },
- deep: true,
- },
- /**
- * 监听分区类型变化(点击下拉框删除按钮,触发表格数据查询)
- */
- spacePartitionType: {
- handler(newV, oldV) {
- if (!newV.length && oldV.length) {
- this.spacePartitionInstance = [];
- this.curentSelectTree3 = [];
- // this.getTableData();
- }
- },
- deep: true,
- },
- /**
- * 监听分区下实例变化(点击下拉框删除按钮,触发表格数据查询)
- */
- spacePartitionInstance: {
- handler(newV, oldV) {
- if (!newV.length && oldV.length) {
- this.getTableData();
- }
- },
- deep: true,
- },
- },
- // eslint-disable-next-line @typescript-eslint/no-empty-function
- created() {},
- mounted() {
- /* setTimeout(() => {
- this.showPopover = true;
- }, 2000); */
- },
- methods: {
- ...mapMutations(["ADDRULE"]),
- /**
- * 设备实例范围树更改
- */
- treeChange1(data, dataObj) {
- if (!dataObj) {
- this.curentSelectTree1 = [];
- } else {
- // 筛选树的最后一级,按照组件返回数组的name中/的个数
- this.curentSelectTree1 = dataObj.filter((v) => v.name.split("/").length === 3).map((v) => v.id);
- }
- // 查询设备列表
- this.curentSelectTree1.length && this.getTableData();
- },
- /**
- * 空间 分区类型
- */
- spacePartitionTypeConfirm(data) {
- // 查询分区下实例列表
- if (this.spacePartitionType.length) {
- this.getPartiInstance();
- }
- // 查询表格
- this.getTableData();
- },
- /**
- * 空间 分区下实例
- */
- selectConfirm(data) {
- // 查询表格
- this.getTableData();
- },
- /**
- * 空间功能类型
- */
- treeChange3(data, dataObj) {
- if (!dataObj) {
- this.curentSelectTree3 = [];
- } else {
- // 筛选树的最后一级,按照组件返回数组的name中/的个数
- this.curentSelectTree3 = dataObj.filter((v) => v.name.split("/").length === 3).map((v) => v.id);
- }
- // 查询表格
- this.getTableData();
- },
- /**
- * 显示弹窗时的处理
- */
- initModal() {
- this.tableDataBak = [];
- this.tableData = [];
- // 查询设备实例树
- this.getCategory();
- // 分区类型 列表
- this.getType();
- this.getDict();
- },
- /**
- * 查询设备实例树
- */
- async getCategory() {
- const res = await dictCategoryQuery({ type: "majorSystemEquip" });
- console.log(res);
- const tree = res?.content || [];
- // 遍历tree,使其id属性变为为_id属性, code属性变成id属性
- console.time(1);
- this.dataTree1 = mapTree(tree, "id->_id", "code->id");
- console.timeEnd(1);
- },
- /**
- * 空间分区类型 列表
- */
- async getType() {
- const res = await dictCategoryQuery({ type: "space" });
- const data = res?.content || [];
- data.map((v) => (v.id = v.code));
- // name,code--> { id: "test1", name: "选择项" },
- this.spacePartitionTypeData = data;
- },
- /**
- * 空间分区实例
- */
- async getPartiInstance() {
- const postParams = {
- pageNumber: 1,
- pageSize: 1000,
- floorId: this.floorId, // "Fl1101050029ecc5d3aec0644d7f88647618f7bdd023",
- buildingId: this.buildingId, // "Bd1101050029cb77fbd1846611eaac87cd1cd6a961c6",
- zoneTypeList: this.spacePartitionType,
- };
- const res = await PartiInstancQuery(postParams);
- console.log("==================");
- console.log(res);
- console.log(res.content);
- const data = res.content.map((v) => {
- return { id: v.id, name: v.localName };
- });
- this.spacePartitionInstance = [];
- if (data.length) {
- this.selectData = data;
- } else {
- this.selectData = [];
- // TODO: 111
- // this.selectData = [{ disabled: true, name: "暂无数据", id: "" }];
- }
- // v-model="spacePartitionInstance"
- // :selectdata="selectData"
- },
- // 空间功能类型
- async getDict() {
- const res = await dictQuery({
- filters: "code='roomFuncType'",
- type: "GeneralZone",
- });
- const data = res?.content[0]?.dataSource || [];
- data.map((v) => (v.id = v.code));
- // 构造树
- this.dataTree3 = array2Tree(data, "parentCode");
- },
- async getTableData() {
- // console.trace("getTableData");
- // 东坝地上二层
- const postParams = {
- equipTypes: this.curentSelectTree1, //设备类型 //["FFFSSN"],
- zoneTypes: this.spacePartitionType, //空间类型
- spaceIds: this.spacePartitionInstance, //空间实例id
- funcTypes: this.curentSelectTree3, //空间功能区类型
- floorId: this.floorId, // "Fl1101050029ecc5d3aec0644d7f88647618f7bdd023",
- buildingId: this.buildingId, // "Bd1101050029cb77fbd1846611eaac87cd1cd6a961c6",
- };
- const res = await equipQuery(postParams);
- const data = res.content || [];
- this.tableDataBak = data;
- const map = {};
- data.map((item) => {
- if (!map[item.classCode]) {
- map[item.classCode] = {
- classCode: item.classCode,
- codeName: item.codeName,
- total: 1,
- };
- } else {
- map[item.classCode].total++;
- }
- });
- const tableData = Object.values(map);
- tableData.length && tableData.unshift({ codeName: "实例总数量: " + data.length });
- this.tableData = tableData;
- },
- /**
- * 合并第一行
- */
- objectSpanMethod({ row, column, rowIndex, columnIndex }) {
- if (rowIndex === 0) {
- if (columnIndex === 0) {
- return {
- rowspan: 1,
- colspan: 3,
- };
- } else {
- return {
- rowspan: 1,
- colspan: 0,
- };
- }
- }
- },
- /**
- * 行样式
- */
- tableRowClassName({ row, rowIndex }) {
- if (rowIndex === 0) {
- return "";
- }
- return "m-row";
- },
- /**
- * 编辑信息点
- */
- editInfo(data) {
- console.log(data);
- this.currentInfo = data;
- this.showEditInfoPoint = true;
- },
- /**
- * 关闭弹窗
- */
- close() {
- this.dialogTableVisible = false;
- this.showPopover = false;
- this.$emit("closeModal");
- },
- /**
- * 点击弹窗确定,提交接口
- */
- async confirm() {
- const postParams = {
- content: [
- {
- graphCoding: this.id,
- graphId: this.graphId,
- returnType: "equip", // 返回类型(equip: 设备, equipGroup: 设备组, zone: 空间)
- commond: "query", // 命令类型(query: 查询, delete: 删除)
- params: {
- equipTypes: this.curentSelectTree1, //设备类型 //["FFFSSN"],
- zoneTypes: this.spacePartitionType, //空间类型
- spaceIds: this.spacePartitionInstance, //空间实例id
- funcTypes: this.curentSelectTree3, //空间功能区类型
- },
- },
- ],
- };
- console.log(postParams);
- const res = await ruleCreate(postParams);
- console.log("===============");
- console.log(res);
- if (res.result === "success") {
- this.$message.success("添加成功");
- // 在vuex中添加规则
- if (res.entityList && res.entityList[0]) {
- this.ADDRULE(res.entityList[0]);
- // 接口成功之后,发出添加设备指令
- bus.$emit("addEquipment", this.tableDataBak);
- }
- // let timer = setTimeout(() => {
- this.dialogTableVisible = false;
- this.showPopover = false;
- // }, 1000);
- // timer = null;
- } else {
- this.$message.error(res.message || "添加失败");
- }
- // clearTimeout(this.timer);
- },
- },
- };
- </script>
- <style lang="less">
- .init-popover {
- width: 240px;
- height: 115px;
- background: #0091ff;
- box-shadow: 0px 2px 10px 0px rgba(31, 36, 41, 0.1);
- .popper__arrow::after {
- border-bottom-color: #0091ff !important;
- }
- p {
- text-align: center;
- font-size: 14px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #ffffff;
- line-height: 22px;
- }
- .m-btn {
- display: flex;
- align-items: center;
- font-size: 14px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #0091ff;
- height: 28px !important;
- position: absolute;
- bottom: 15px;
- right: 20px;
- }
- }
- </style>
- <style lang='less' scoped>
- /deep/ .equipment-detail-dialog {
- margin-top: 8vh !important;
- width: 1200px;
- height: 648px;
- // background-color: blueviolet;
- .header {
- display: flex;
- align-items: center;
- .text1,
- .text2 {
- margin-right: 10px;
- }
- .text2 {
- margin-left: 15px;
- }
- & > div {
- margin-right: 10px;
- }
- }
- .m-row {
- color: #1f2429;
- font-weight: 600;
- }
- .no-data-body {
- width: 100%;
- height: 420px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- /deep/ .el-dialog__footer {
- position: absolute;
- right: 0;
- bottom: 0;
- }
- }
- </style>
|