楼顶出来后依然可以筛选人员列表

master
许宏杰 6 months ago
parent 1e95c45ad6
commit c7c0516f64

@ -26,23 +26,21 @@ const xiaoqu = {
for (let key in query) {
state.queryParmas[key] = query[key];
}
if (query.buildingId) {
if (state.queryParmas.buildingId) {
state.panel.rightPanel = true;
state.panel.bottomPanel = true;
return;
}
{
} else {
state.panel.rightPanel = false;
}
if (
query.color ||
query.type ||
query.isd ||
query.isk ||
query.isx ||
query.isj ||
query.parentid
state.queryParmas.color ||
state.queryParmas.type ||
state.queryParmas.isd ||
state.queryParmas.isk ||
state.queryParmas.isx ||
state.queryParmas.isj ||
state.queryParmas.parentid
) {
state.panel.bottomPanel = false;
}

@ -123,14 +123,14 @@ export default {
? this.houseItem.buildingWidth
: window.innerWidth - this.$refs.houseItem.offsetWidth,
name: item.name,
color: item.color,
isD: item.is_d,
isJ: item.is_j,
isK: item.is_k,
isx: item.is_x,
typename: item.typename,
leftColor: item.leftColor,
rightTopColor: item.rightTopColor,
// color: item.color,
// isD: item.is_d,
// isJ: item.is_j,
// isK: item.is_k,
// isx: item.is_x,
// typename: item.typename,
// leftColor: item.leftColor,
// rightTopColor: item.rightTopColor,
});
this.currentIndex = keyId;
},

@ -112,7 +112,7 @@ export default {
isk: undefined,
isx: undefined,
isj: undefined,
buildingId: undefined,
// buildingId: undefined,
});
this.$store.commit("CHANGE_QUERY_MAP", { networkName: networkName });
},

Loading…
Cancel
Save