|
@@ -117,47 +117,9 @@ import { Select, TreeSelect } from "meri-design";
|
|
|
import { cloneDeep } from "lodash";
|
|
|
import { ruleCreate } from "@/api/labsl";
|
|
|
import { dictCategoryQuery, dictQuery, PartiInstancQuery } from "@/api/datacenter";
|
|
|
-import { categoryQuery, typeQuery, equipQuery } from "@/api/equipcomponent";
|
|
|
+import { equipQuery } from "@/api/equipcomponent";
|
|
|
import { array2Tree, mapTree } 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: {
|
|
@@ -197,12 +159,12 @@ export default {
|
|
|
// address: "dfadfasdfa",
|
|
|
// },
|
|
|
],
|
|
|
- _tableData: [],
|
|
|
+ tableDataBak: [],
|
|
|
showEditInfoPoint: false, //显示编辑信息点弹窗
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
|
- ...mapState(["name", "folderId", "folderName", "buildingId", "floorId", "floorMap", "floorLocalName", "id", "graphId", "state"]),
|
|
|
+ ...mapState(["buildingId", "floorId", "id", "graphId"]),
|
|
|
},
|
|
|
watch: {
|
|
|
// 是否打开弹窗
|
|
@@ -237,6 +199,7 @@ export default {
|
|
|
deep: true,
|
|
|
},
|
|
|
},
|
|
|
+ // eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
|
created() {},
|
|
|
mounted() {
|
|
|
window.vm = this;
|
|
@@ -259,7 +222,7 @@ export default {
|
|
|
this.curentSelectTree1.length && this.getTableData();
|
|
|
},
|
|
|
/**
|
|
|
- * 空间 分区类型树
|
|
|
+ * 空间 分区类型
|
|
|
*/
|
|
|
spacePartitionTypeConfirm(data) {
|
|
|
// 查询分区下实例列表
|
|
@@ -304,9 +267,9 @@ export default {
|
|
|
* 查询设备实例树
|
|
|
*/
|
|
|
async getCategory() {
|
|
|
- let res = await dictCategoryQuery({ type: "majorSystemEquip" });
|
|
|
+ const res = await dictCategoryQuery({ type: "majorSystemEquip" });
|
|
|
console.log(res);
|
|
|
- let tree = res?.content || [];
|
|
|
+ const tree = res?.content || [];
|
|
|
// 遍历tree,使其id属性变为为_id属性, code属性变成id属性
|
|
|
console.time(1);
|
|
|
this.dataTree1 = mapTree(tree, "id->_id", "code->id");
|
|
@@ -316,8 +279,8 @@ export default {
|
|
|
* 空间分区类型 列表
|
|
|
*/
|
|
|
async getType() {
|
|
|
- let res = await dictCategoryQuery({ type: "space" });
|
|
|
- let data = res?.content || [];
|
|
|
+ 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;
|
|
@@ -326,18 +289,18 @@ export default {
|
|
|
* 空间分区实例
|
|
|
*/
|
|
|
async getPartiInstance() {
|
|
|
- let postParams = {
|
|
|
+ const postParams = {
|
|
|
pageNumber: 1,
|
|
|
pageSize: 1000,
|
|
|
- floorId: this.floorId, // "Fl11010500296bc7ca3a0d5d41419cf95c5b45116400",
|
|
|
+ floorId: this.floorId, // "Fl1101050029ecc5d3aec0644d7f88647618f7bdd023",
|
|
|
buildingId: this.buildingId, // "Bd1101050029cb77fbd1846611eaac87cd1cd6a961c6",
|
|
|
zoneTypeList: this.spacePartitionType,
|
|
|
};
|
|
|
- let res = await PartiInstancQuery(postParams);
|
|
|
+ const res = await PartiInstancQuery(postParams);
|
|
|
console.log("==================");
|
|
|
console.log(res);
|
|
|
console.log(res.content);
|
|
|
- let data = res.content.map((v) => {
|
|
|
+ const data = res.content.map((v) => {
|
|
|
return { id: v.id, name: v.localName };
|
|
|
});
|
|
|
this.selectData = data;
|
|
@@ -347,11 +310,11 @@ export default {
|
|
|
},
|
|
|
// 空间功能类型
|
|
|
async getDict() {
|
|
|
- let res = await dictQuery({
|
|
|
+ const res = await dictQuery({
|
|
|
filters: "code='roomFuncType'",
|
|
|
type: "GeneralZone",
|
|
|
});
|
|
|
- let data = res?.content[0]?.dataSource || [];
|
|
|
+ const data = res?.content[0]?.dataSource || [];
|
|
|
data.map((v) => (v.id = v.code));
|
|
|
// 构造树
|
|
|
this.dataTree3 = array2Tree(data, "parentCode");
|
|
@@ -359,18 +322,18 @@ export default {
|
|
|
async getTableData() {
|
|
|
// console.trace("getTableData");
|
|
|
// 东坝地上二层
|
|
|
- let postParams = {
|
|
|
+ const postParams = {
|
|
|
equipTypes: this.curentSelectTree1, //设备类型 //["FFFSSN"],
|
|
|
zoneTypes: this.spacePartitionType, //空间类型
|
|
|
spaceIds: this.spacePartitionInstance, //空间实例id
|
|
|
funcTypes: this.curentSelectTree3, //空间功能区类型
|
|
|
- floorId: this.floorId, // "Fl11010500296bc7ca3a0d5d41419cf95c5b45116400",
|
|
|
+ floorId: this.floorId, // "Fl1101050029ecc5d3aec0644d7f88647618f7bdd023",
|
|
|
buildingId: this.buildingId, // "Bd1101050029cb77fbd1846611eaac87cd1cd6a961c6",
|
|
|
};
|
|
|
- let res = await equipQuery(postParams);
|
|
|
- let data = res.content || [];
|
|
|
- this._tableData = data;
|
|
|
- let map = {};
|
|
|
+ const res = await equipQuery(postParams);
|
|
|
+ const data = res.content || [];
|
|
|
+ this.tableDataBak = data;
|
|
|
+ const map = {};
|
|
|
data.map((item) => {
|
|
|
if (!map[item.classCode]) {
|
|
|
map[item.classCode] = {
|
|
@@ -382,7 +345,7 @@ export default {
|
|
|
map[item.classCode].total++;
|
|
|
}
|
|
|
});
|
|
|
- let tableData = Object.values(map);
|
|
|
+ const tableData = Object.values(map);
|
|
|
tableData.length && tableData.unshift({ codeName: "实例总数量: " + data.length });
|
|
|
this.tableData = tableData;
|
|
|
},
|
|
@@ -435,21 +398,24 @@ export default {
|
|
|
* 点击弹窗确定,提交接口
|
|
|
*/
|
|
|
async confirm() {
|
|
|
- let postParams = {
|
|
|
- id: "48598fc65edd4f2f8402202f0b793972",
|
|
|
- graphId: "806a12663cb147cebefb393d49fc0357",
|
|
|
- returnType: "equip", // 返回类型(equip: 设备, equipGroup: 设备组, zone: 空间)
|
|
|
- commond: "query", // 命令类型(query: 查询, delete: 删除)
|
|
|
- params: {
|
|
|
- equipTypes: this.curentSelectTree1, //设备类型 //["FFFSSN"],
|
|
|
- zoneTypes: this.spacePartitionType, //空间类型
|
|
|
- spaceIds: this.spacePartitionInstance, //空间实例id
|
|
|
- funcTypes: this.curentSelectTree3, //空间功能区类型
|
|
|
- },
|
|
|
- note: "",
|
|
|
+ const postParams = {
|
|
|
+ content: [
|
|
|
+ {
|
|
|
+ id: 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);
|
|
|
- let res = await ruleCreate(postParams);
|
|
|
+ const res = await ruleCreate(postParams);
|
|
|
console.log("===============");
|
|
|
console.log(res);
|
|
|
if (res.result === "success") {
|