|
|
|
@ -45,6 +45,7 @@ import { getNumNew } from "@/api/taicangpop/data";
|
|
|
|
|
import { getBuilding } from "@/api/taicangpop/building";
|
|
|
|
|
import colorCell from "./ColorCell/index.vue";
|
|
|
|
|
import { v4 as uuidv4 } from "uuid";
|
|
|
|
|
import { pxToVw } from "@/utils/myFuntion.js";
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
@ -191,8 +192,11 @@ export default {
|
|
|
|
|
const list = document.getElementsByClassName("foldPane-bottom")[0];
|
|
|
|
|
const build = document.getElementsByClassName("building-container")[0];
|
|
|
|
|
if (this.queryParamsXiaoqu.buildingId) {
|
|
|
|
|
list.style.left = `390px`;
|
|
|
|
|
list.style.width = `calc(100% - (390px + ${build.offsetWidth}px) )`;
|
|
|
|
|
list.style.left = pxToVw(390);
|
|
|
|
|
list.style.width = `calc(100% - (${pxToVw(390)} + ${
|
|
|
|
|
build.offsetWidth
|
|
|
|
|
}px) )`;
|
|
|
|
|
|
|
|
|
|
list.style.transform = `translateX(0)`;
|
|
|
|
|
}
|
|
|
|
|
if (this.clickResult.id) this.clickHouse(this.clickResult);
|
|
|
|
@ -239,7 +243,7 @@ export default {
|
|
|
|
|
#95123a,
|
|
|
|
|
rgba(149, 18, 58, 0.1)
|
|
|
|
|
);
|
|
|
|
|
padding-top: 85px;
|
|
|
|
|
|
|
|
|
|
.floor-number {
|
|
|
|
|
height: 23px;
|
|
|
|
|
width: 50px;
|
|
|
|
|