|
@@ -38,7 +38,7 @@
|
|
|
/>
|
|
|
<span class="text2">选择空间:</span>
|
|
|
<!-- 空间分区类型 树 -->
|
|
|
- <TreeSelect
|
|
|
+ <!-- <TreeSelect
|
|
|
title="已选项"
|
|
|
unit="个"
|
|
|
placeholder="请选择"
|
|
@@ -53,6 +53,16 @@
|
|
|
:data="dataTree2"
|
|
|
@change="treeChange2"
|
|
|
@focusChange="focusChange2"
|
|
|
+ /> -->
|
|
|
+ <Select
|
|
|
+ width="220"
|
|
|
+ tipPlace="top"
|
|
|
+ multiple
|
|
|
+ caption="分区类型:"
|
|
|
+ @confirm="spacePartitionTypeConfirm"
|
|
|
+ v-model="spacePartitionType"
|
|
|
+ :selectdata="spacePartitionTypeData"
|
|
|
+ :placeholder="'请选择'"
|
|
|
/>
|
|
|
<!-- 空间 分区下实例 菜单 -->
|
|
|
<Select
|
|
@@ -61,7 +71,7 @@
|
|
|
multiple
|
|
|
caption="分区下实例:"
|
|
|
@confirm="selectConfirm"
|
|
|
- :disabled="!curentSelectTree2.length"
|
|
|
+ :disabled="!spacePartitionType.length"
|
|
|
v-model="spacePartitionInstance"
|
|
|
:selectdata="selectData"
|
|
|
:placeholder="'请选择'"
|
|
@@ -79,6 +89,7 @@
|
|
|
:isShowAllChoice="true"
|
|
|
:selectedIds="selectedIds3"
|
|
|
:choseArea="true"
|
|
|
+ :disabled="!spacePartitionType.length"
|
|
|
:data="dataTree3"
|
|
|
@change="treeChange3"
|
|
|
@focusChange="focusChange3"
|
|
@@ -111,7 +122,7 @@
|
|
|
<el-button @click="close">取 消</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" />
|
|
|
+ <edit-info-point type="equipment" @closeModal="showEditInfoPoint = false" :showDialog="showEditInfoPoint" />
|
|
|
</el-dialog>
|
|
|
</template>
|
|
|
<script>
|
|
@@ -121,8 +132,9 @@
|
|
|
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";
|
|
|
+import { dictQuery } from "@/api/datacenter";
|
|
|
+import { categoryQuery, typeQuery } from "@/api/equipcomponent";
|
|
|
+import { array2Tree } from "@/utils/utils";
|
|
|
const dataTree = [
|
|
|
{
|
|
|
id: "0",
|
|
@@ -175,7 +187,7 @@ export default {
|
|
|
return {
|
|
|
timer: null,
|
|
|
showPopover: false, //选择设备 popover是否显示
|
|
|
- dataTree1: cloneDeep(dataTree),
|
|
|
+ dataTree1: [],
|
|
|
dataTree2: cloneDeep(dataTree),
|
|
|
dataTree3: cloneDeep(dataTree),
|
|
|
selectedIds1: [],
|
|
@@ -183,6 +195,8 @@ export default {
|
|
|
selectedIds3: [],
|
|
|
curentSelectTree1: [], //选中的设备 实例范围
|
|
|
curentSelectTree2: [], //选中的空间 分区类型
|
|
|
+ spacePartitionType: [],
|
|
|
+ spacePartitionTypeData: [],
|
|
|
curentSelectTree3: [], //选中的空间 功能类型
|
|
|
dialogTableVisible: false,
|
|
|
spacePartitionInstance: "", //选中的空间分区下实例
|
|
@@ -191,10 +205,6 @@ export default {
|
|
|
{ id: "test2", name: "单平米" },
|
|
|
{ id: "test3", name: "下级分项" },
|
|
|
{ id: "test4", name: "4444444" },
|
|
|
- { id: "test5", name: "555555555" },
|
|
|
- { id: "test6", name: "66666666666" },
|
|
|
- { id: "test7", name: "6666" },
|
|
|
- { id: "test8", name: "6" },
|
|
|
],
|
|
|
tableData: [
|
|
|
{
|
|
@@ -243,7 +253,9 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
created() {},
|
|
|
- async mounted() {},
|
|
|
+ async mounted() {
|
|
|
+ // window.vm = this;
|
|
|
+ },
|
|
|
methods: {
|
|
|
/**
|
|
|
* 设备实例范围树更改
|
|
@@ -272,6 +284,10 @@ export default {
|
|
|
this.curentSelectTree2 = dataObj.filter((v) => v.name.split("/").length === 2).map((v) => v.id);
|
|
|
}
|
|
|
},
|
|
|
+ spacePartitionTypeConfirm(data) {
|
|
|
+ console.log(data);
|
|
|
+ console.log(this.spacePartitionType);
|
|
|
+ },
|
|
|
/**
|
|
|
* 空间 分区下实例
|
|
|
*/
|
|
@@ -303,18 +319,47 @@ export default {
|
|
|
this.showPopover = false;
|
|
|
// this.tableData = []; //TODO:
|
|
|
// 没有tableData,显示popover
|
|
|
- !this.tableData.length &&
|
|
|
- (this.timer = setTimeout(() => {
|
|
|
+ if (!this.tableData.length) {
|
|
|
+ this.timer = setTimeout(() => {
|
|
|
this.showPopover = true;
|
|
|
- }, 1000));
|
|
|
- let res1 = await categoryQuery({});
|
|
|
- let res2 = await typeQuery({});
|
|
|
-
|
|
|
- let res3 = await dictQuery({
|
|
|
+ }, 1000);
|
|
|
+ }
|
|
|
+ // 查询设备实例树
|
|
|
+ this.getCategory();
|
|
|
+ // 分区类型 列表
|
|
|
+ this.getType();
|
|
|
+ this.getDict();
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 查询设备实例树
|
|
|
+ */
|
|
|
+ async getCategory() {
|
|
|
+ let res = await categoryQuery({});
|
|
|
+ console.log(res);
|
|
|
+ let tree = res?.content || [];
|
|
|
+ tree.map((v) => (v.id = v.code));
|
|
|
+ this.dataTree1 = tree;
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 空间分区类型 列表
|
|
|
+ */
|
|
|
+ async getType() {
|
|
|
+ let res = await typeQuery({});
|
|
|
+ let data = res?.content || [];
|
|
|
+ data.map((v) => (v.id = v.code));
|
|
|
+ // name,code--> { id: "test1", name: "选择项" },
|
|
|
+ this.spacePartitionTypeData = data;
|
|
|
+ },
|
|
|
+ // 空间功能类型
|
|
|
+ async getDict() {
|
|
|
+ let res = await dictQuery({
|
|
|
filters: "code='roomFuncType'",
|
|
|
type: "GeneralZone",
|
|
|
});
|
|
|
- console.log(JSON.stringify(res3,null,2))
|
|
|
+ let data = res?.content[0]?.dataSource || [];
|
|
|
+ data.map((v) => (v.id = v.code));
|
|
|
+ // 构造树
|
|
|
+ this.dataTree3 = array2Tree(data, "parentCode");
|
|
|
},
|
|
|
/**
|
|
|
* 合并第一行
|