|
@@ -2,18 +2,92 @@
|
|
|
* 添加显示实例(设备)
|
|
|
*/
|
|
|
<template>
|
|
|
- <el-dialog custom-class="equipment-detail-dialog" append-to-body title="添加显示实例" :visible.sync="dialogTableVisible" @close="close">
|
|
|
+ <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">选择设备:</span>
|
|
|
- <Cascader caption="设备实例范围:" multiple excludeTop :data="cascaderData" @confirm="equipmentConfirm" showPanel width="240"></Cascader>
|
|
|
+ <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>
|
|
|
- <Cascader caption="分区类型:" multiple excludeTop :data="cascaderData" showPanel width="240"></Cascader>
|
|
|
- <Select width="220" tipPlace="top" caption="分区下实例:" @change="" v-model="sl" :selectdata="selectData" :placeholder="'请选择'" />
|
|
|
- <Cascader caption="空间功能类型" multiple excludeTop :data="cascaderData" showPanel width="240"></Cascader>
|
|
|
+ <!-- 空间分区类型 树 -->
|
|
|
+ <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="selectConfirm"
|
|
|
+ :disabled="!curentSelectTree2.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"
|
|
|
+ :data="dataTree3"
|
|
|
+ @change="treeChange3"
|
|
|
+ @focusChange="focusChange3"
|
|
|
+ />
|
|
|
</div>
|
|
|
+ <!-- 表格 -->
|
|
|
<el-table
|
|
|
- v-if="false"
|
|
|
- :data="tableData.concat(tableData).concat(tableData)"
|
|
|
+ v-show="tableData.length"
|
|
|
+ :data="tableData"
|
|
|
max-height="420"
|
|
|
:span-method="objectSpanMethod"
|
|
|
style="width: 100%; margin-top: 10px"
|
|
@@ -28,21 +102,66 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
<!-- 无数据 -->
|
|
|
- <div class="no-data-body" v-show="true || !tableData.length">
|
|
|
+ <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 type="primary" @click="confirm">确 定</el-button>
|
|
|
+ <el-button :disabled="!tableData.length" :type="tableData.length ? 'primary' : 'info'" @click="confirm">确 定</el-button>
|
|
|
</div>
|
|
|
+ <edit-info-point @closeModal="showEditInfoPoint = false" :showDialog="showEditInfoPoint" />
|
|
|
</el-dialog>
|
|
|
</template>
|
|
|
<script>
|
|
|
/**
|
|
|
* 添加显示实例
|
|
|
*/
|
|
|
-import { Select } from "meri-design";
|
|
|
+import editInfoPoint from "./editInfoPoint";
|
|
|
+import { Select, TreeSelect } from "meri-design";
|
|
|
+import { cloneDeep } from "lodash";
|
|
|
+import { dictQuery } from "@/api/datacenter4";
|
|
|
+import { categoryQuery, typeQuery } from "@/api/equipcomponent4";
|
|
|
+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: {
|
|
@@ -51,43 +170,22 @@ export default {
|
|
|
required: true,
|
|
|
},
|
|
|
},
|
|
|
- components: { Select },
|
|
|
+ components: { Select, TreeSelect, editInfoPoint },
|
|
|
data() {
|
|
|
return {
|
|
|
+ timer: null,
|
|
|
+ showPopover: false, //选择设备 popover是否显示
|
|
|
+ dataTree1: cloneDeep(dataTree),
|
|
|
+ dataTree2: cloneDeep(dataTree),
|
|
|
+ dataTree3: cloneDeep(dataTree),
|
|
|
+ selectedIds1: [],
|
|
|
+ selectedIds2: [],
|
|
|
+ selectedIds3: [],
|
|
|
+ curentSelectTree1: [], //选中的设备 实例范围
|
|
|
+ curentSelectTree2: [], //选中的空间 分区类型
|
|
|
+ curentSelectTree3: [], //选中的空间 功能类型
|
|
|
dialogTableVisible: false,
|
|
|
- cascaderData: [
|
|
|
- {
|
|
|
- title: "给排水系统",
|
|
|
- id: "1",
|
|
|
- children: [
|
|
|
- {
|
|
|
- title: "水景系统",
|
|
|
- id: "1_1",
|
|
|
- children: [
|
|
|
- { title: "水景水泵", id: "1_1_1" },
|
|
|
- { title: "水景灯具", id: "1_1_2" },
|
|
|
- { title: "水景控制箱", id: "1_1_3" },
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- title: "污水",
|
|
|
- id: "1_2code",
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- title: "弱电系统",
|
|
|
- id: "2",
|
|
|
- children: [
|
|
|
- {
|
|
|
- title: "照明系统",
|
|
|
- id: "2_1",
|
|
|
- children: [{ title: "弱", id: "2_1_1" }],
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- ],
|
|
|
- sl: "",
|
|
|
+ spacePartitionInstance: "", //选中的空间分区下实例
|
|
|
selectData: [
|
|
|
{ id: "test1", name: "选择项" },
|
|
|
{ id: "test2", name: "单平米" },
|
|
@@ -132,6 +230,7 @@ export default {
|
|
|
name: "22",
|
|
|
},
|
|
|
],
|
|
|
+ showEditInfoPoint: false, //显示编辑信息点弹窗
|
|
|
};
|
|
|
},
|
|
|
watch: {
|
|
@@ -144,20 +243,79 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
created() {},
|
|
|
+ async mounted() {},
|
|
|
methods: {
|
|
|
- initModal() {},
|
|
|
-
|
|
|
/**
|
|
|
- * 关闭弹窗
|
|
|
+ * 设备实例范围树更改
|
|
|
*/
|
|
|
- close() {
|
|
|
- // dialogTableVisible
|
|
|
- this.dialogTableVisible = false;
|
|
|
- this.$emit("closeModal");
|
|
|
+ treeChange1(data, dataObj) {
|
|
|
+ if (!dataObj) {
|
|
|
+ this.curentSelectTree1 = [];
|
|
|
+ } else {
|
|
|
+ // 筛选树的最后一级,按照组件返回数组的name中/的个数
|
|
|
+ this.curentSelectTree1 = dataObj.filter((v) => v.name.split("/").length === 3).map((v) => v.id);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ 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);
|
|
|
+ }
|
|
|
},
|
|
|
- equipmentConfirm(data) {
|
|
|
+ /**
|
|
|
+ * 空间 分区下实例
|
|
|
+ */
|
|
|
+ selectConfirm(data) {
|
|
|
+ console.log("selectConfirm");
|
|
|
console.log(data);
|
|
|
},
|
|
|
+ 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);
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 显示弹窗时的处理
|
|
|
+ */
|
|
|
+ async initModal() {
|
|
|
+ this.showPopover = false;
|
|
|
+ // this.tableData = []; //TODO:
|
|
|
+ // 没有tableData,显示popover
|
|
|
+ !this.tableData.length &&
|
|
|
+ (this.timer = setTimeout(() => {
|
|
|
+ this.showPopover = true;
|
|
|
+ }, 1000));
|
|
|
+ let res1 = await categoryQuery({});
|
|
|
+ let res2 = await typeQuery({});
|
|
|
+
|
|
|
+ let res3 = await dictQuery({
|
|
|
+ filters: "code='roomFuncType'",
|
|
|
+ type: "GeneralZone",
|
|
|
+ });
|
|
|
+ console.log(JSON.stringify(res3,null,2))
|
|
|
+ },
|
|
|
/**
|
|
|
* 合并第一行
|
|
|
*/
|
|
@@ -185,15 +343,28 @@ export default {
|
|
|
}
|
|
|
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() {
|
|
|
- this.dialogTableVisible = false;
|
|
|
/**
|
|
|
* 设备实例范围:
|
|
|
* []
|
|
@@ -206,10 +377,44 @@ export default {
|
|
|
* []
|
|
|
*
|
|
|
*/
|
|
|
+ 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;
|