|
@@ -418,37 +418,42 @@ export default {
|
|
|
size: "min",
|
|
|
});
|
|
|
},
|
|
|
+ // 打开窗口初始化弹窗
|
|
|
+ initAddModel() {
|
|
|
+ const data = {
|
|
|
+ projectId: this.projectId,
|
|
|
+ };
|
|
|
+ // 建筑查询条件
|
|
|
+ buildiFloor(data).then((res) => {
|
|
|
+ this.buildFloorList = this.mapList(res.content);
|
|
|
+ });
|
|
|
+ // 设备类型查询条件
|
|
|
+ readCategory(data).then((res) => {
|
|
|
+ this.categoryList = this.mapList(
|
|
|
+ res.content,
|
|
|
+ [],
|
|
|
+ ["code", "name", "children"]
|
|
|
+ );
|
|
|
+ });
|
|
|
+ setTimeout(() => {
|
|
|
+ const domLeft = document.getElementById("left");
|
|
|
+ if (domLeft) {
|
|
|
+ this.tableHeight = domLeft.offsetHeight - 140;
|
|
|
+ // 调取设备接口
|
|
|
+ this.queryEquip();
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
},
|
|
|
watch: {
|
|
|
// 是否打开弹窗
|
|
|
showAddItemModel(val) {
|
|
|
this.isShowModel = val;
|
|
|
+ if (val) {
|
|
|
+ this.initAddModel();
|
|
|
+ }
|
|
|
},
|
|
|
},
|
|
|
- mounted() {
|
|
|
- const data = {
|
|
|
- projectId: this.projectId,
|
|
|
- };
|
|
|
- // 建筑查询条件
|
|
|
- buildiFloor(data).then((res) => {
|
|
|
- this.buildFloorList = this.mapList(res.content);
|
|
|
- });
|
|
|
- // 设备类型查询条件
|
|
|
- readCategory(data).then((res) => {
|
|
|
- this.categoryList = this.mapList(
|
|
|
- res.content,
|
|
|
- [],
|
|
|
- ["code", "name", "children"]
|
|
|
- );
|
|
|
- });
|
|
|
- const domLeft = document.getElementById("left");
|
|
|
- if (domLeft) {
|
|
|
- this.tableHeight = domLeft.offsetHeight - 140;
|
|
|
- }
|
|
|
-
|
|
|
- // 调取设备接口
|
|
|
- // this.queryEquip()
|
|
|
- },
|
|
|
};
|
|
|
</script>
|
|
|
<style lang="less" scoped>
|