123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538 |
- /**
- * 添加显示实例(设备)
- */
- <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"
- @focusChange="focusChange1"
- />
- <span class="text2">选择空间:</span>
- <!-- 空间分区类型 树 -->
- <!-- <TreeSelect
- title="已选项"
- unit="个"
- placeholder="请选择"
- :width="240"
- :height="300"
- :caption="'分区类型:'"
- :notNull="true"
- :returnParentNode="false"
- :isShowAllChoice="true"
- :selectedIds="selectedIds2"
- :choseArea="true"
- :data="dataTree2"
- @change="treeChange2"
- @focusChange="focusChange2"
- /> -->
- <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"
- @focusChange="focusChange3"
- />
- </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>
- <!-- TODO: -->
- <!-- <edit-info-point type="equipment" @closeModal="showEditInfoPoint = false" :showDialog="showEditInfoPoint" /> -->
- </el-dialog>
- </template>
- <script>
- /**
- * 添加显示实例
- */
- import editInfoPoint from "./editInfoPoint";
- import { Select, TreeSelect } from "meri-design";
- import { cloneDeep } from "lodash";
- import { dictCategoryQuery, dictQuery, PartiInstancQuery } from "@/api/datacenter";
- import { categoryQuery, typeQuery, equipQuery } from "@/api/equipcomponent";
- import { array2Tree } from "@/utils/utils";
- const dataTree = [
- {
- id: "0",
- name: "顶级顶级",
- open: true,
- children: [
- {
- id: "1",
- name: "一级1",
- // open: false,
- //
- children: [
- { id: "121", name: "测试文字溢出测试文字溢出测试文字溢出测试文字溢出测试文字溢出测" },
- { id: "122", name: "二级3111", checked: "uncheck" },
- { id: "123", name: "二级4", checked: "uncheck" },
- { id: "124", name: "二级1" },
- ],
- },
- {
- id: "2",
- name: "一级2",
- children: [
- { id: "221", name: "测试222", checked: "uncheck" },
- { id: "222", name: "二级21", checked: "uncheck" },
- { id: "223", name: "二级22", checked: "uncheck" },
- ],
- },
- {
- id: "3",
- name: "一级3",
- children: [
- { id: "321", name: "测试222" },
- { id: "322", name: "二级32" },
- ],
- },
- ],
- },
- ];
- export default {
- name: "addEquipmentDialog",
- props: {
- showDialog: {
- type: Boolean,
- required: true,
- },
- },
- components: { Select, TreeSelect, editInfoPoint },
- data() {
- return {
- timer: null,
- showPopover: false, //选择设备 popover是否显示
- dataTree1: [],
- dataTree2: cloneDeep(dataTree),
- dataTree3: cloneDeep(dataTree),
- selectedIds1: [],
- selectedIds2: [],
- selectedIds3: [],
- curentSelectTree1: [], //选中的设备 实例范围
- curentSelectTree2: [], //选中的空间 分区类型
- spacePartitionType: [],
- spacePartitionTypeData: [],
- curentSelectTree3: [], //选中的空间 功能类型
- dialogTableVisible: false,
- spacePartitionInstance: [], //选中的空间分区下实例
- selectData: [
- // { id: "test1", name: "选择项" },
- ],
- tableData: [
- // {
- // date: "实例总数量 111111",
- // },
- // {
- // date: "监控器",
- // name: "111",
- // address: "dfadfasdfa",
- // },
- ],
- _tableData: [],
- showEditInfoPoint: false, //显示编辑信息点弹窗
- };
- },
- watch: {
- // 是否打开弹窗
- showDialog(val) {
- this.dialogTableVisible = val;
- if (val) {
- this.initModal();
- }
- },
- },
- created() {},
- mounted() {
- // window.vm = this;
- setTimeout(() => {
- this.showPopover = true;
- }, 2000);
- },
- methods: {
- /**
- * 设备实例范围树更改
- */
- 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();
- },
- focusChange1(status) {
- // console.log("focusChange", status);
- },
- /**
- * 空间 分区类型树
- */
- /* treeChange2(data, dataObj) {
- // 清空选中的分区下的实例
- this.spacePartitionInstance = [];
- if (!dataObj) {
- this.curentSelectTree2 = [];
- } else {
- // 筛选树的最后一级,按照组件返回数组的name中/的个数
- this.curentSelectTree2 = dataObj.filter((v) => v.name.split("/").length === 2).map((v) => v.id);
- }
- }, */
- spacePartitionTypeConfirm(data) {
- // 查询分区下实例列表
- if (this.spacePartitionType.length) {
- this.getPartiInstance();
- }
- },
- /**
- * 空间 分区下实例
- */
- selectConfirm(data) {
- console.log("selectConfirm");
- console.log(data);
- console.log(this.spacePartitionInstance);
- },
- focusChange2(status) {
- // console.log("focusChange", status);
- },
- /**
- * 空间功能类型
- */
- treeChange3(data, dataObj) {
- if (!dataObj) {
- this.curentSelectTree3 = [];
- } else {
- // 筛选树的最后一级,按照组件返回数组的name中/的个数
- this.curentSelectTree3 = dataObj.filter((v) => v.name.split("/").length === 3).map((v) => v.id);
- }
- },
- focusChange3(status) {
- // console.log("focusChange", status);
- },
- /**
- * 显示弹窗时的处理
- */
- initModal() {
- // 查询设备实例树
- this.getCategory();
- // 分区类型 列表
- this.getType();
- this.getDict();
- },
- /**
- * 查询设备实例树
- */
- async getCategory() {
- let res = await dictCategoryQuery({ type: "majorSystemEquip" });
- console.log(res);
- let tree = res?.content || [];
- // tree.map((v) => (v.id = v.code));
- tree.forEach((item) => {
- item._id = item.id;
- item.id = item.code;
- item?.children?.forEach((detail) => {
- detail._id = detail.id;
- detail.id = detail.code;
- detail?.children.forEach((v) => (v.id = v.code));
- });
- });
- this.dataTree1 = tree;
- },
- /**
- * 空间分区类型 列表
- */
- async getType() {
- let res = await dictCategoryQuery({ type: "space" });
- let data = res?.content || [];
- data.map((v) => (v.id = v.code));
- // name,code--> { id: "test1", name: "选择项" },
- this.spacePartitionTypeData = data;
- },
- /**
- * 空间分区实例
- */
- async getPartiInstance() {
- let postParams = {
- pageNumber: 1,
- pageSize: 1000,
- floorId: "Fl11010500296bc7ca3a0d5d41419cf95c5b45116400",
- buildingId: "Bd1101050029cb77fbd1846611eaac87cd1cd6a961c6",
- // floorId: "",
- // buildingId: "",
- zoneTypeList: this.spacePartitionType,
- };
- let res = await PartiInstancQuery(postParams);
- console.log("==================");
- console.log(res);
- console.log(res.content);
- let data = res.content.map((v) => {
- return { id: v.id, name: v.localName };
- });
- this.selectData = data;
- this.spacePartitionInstance = [];
- // v-model="spacePartitionInstance"
- // :selectdata="selectData"
- },
- // 空间功能类型
- async getDict() {
- let res = await dictQuery({
- filters: "code='roomFuncType'",
- type: "GeneralZone",
- });
- let data = res?.content[0]?.dataSource || [];
- data.map((v) => (v.id = v.code));
- // 构造树
- this.dataTree3 = array2Tree(data, "parentCode");
- },
- async getTableData() {
- // 东坝地上二层
- let postParams = {
- equipTypes: this.curentSelectTree1, //设备类型 //["FFFSSN"],
- zoneTypes: [], //空间类型
- spaceIds: [], //空间实例id
- funcTypes: [], //空间功能区类型
- floorId: "Fl11010500296bc7ca3a0d5d41419cf95c5b45116400",
- buildingId: "Bd1101050029cb77fbd1846611eaac87cd1cd6a961c6",
- };
- let res = await equipQuery(postParams);
- let data = res.content || [];
- this._tableData = data;
- let map = {};
- data.map((item) => {
- if (!map[item.classCode]) {
- map[item.classCode] = {
- classCode: item.classCode,
- codeName: item.codeName,
- total: 1,
- };
- } else {
- map[item.classCode].total++;
- }
- });
- let tableData = Object.values(map);
- 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.showEditInfoPoint = true;
- },
- /**
- * 关闭弹窗
- */
- close() {
- console.log("close");
- // dialogTableVisible
- this.dialogTableVisible = false;
- this.showPopover = false;
- clearTimeout(this.timer);
- this.$emit("closeModal");
- },
- /**
- * 点击弹窗确定,提交接口
- */
- confirm() {
- /**
- * 设备实例范围:
- * []
- * 空间
- * 分区类型
- * []
- * 分区下实例
- * id
- * 空间功能类型
- * []
- *
- */
- this.dialogTableVisible = false;
- this.showPopover = false;
- 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 {
- 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>
|