|
|
@ -93,6 +93,7 @@
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.threeLabelContent {
|
|
|
|
.threeLabelContent {
|
|
|
|
|
|
|
|
|
|
|
|
display: none;
|
|
|
|
display: none;
|
|
|
|
/*width: 200px;*/
|
|
|
|
/*width: 200px;*/
|
|
|
|
height: auto;
|
|
|
|
height: auto;
|
|
|
@ -104,6 +105,8 @@
|
|
|
|
right: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 50%;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
|
|
|
overflow: auto;
|
|
|
|
|
|
|
|
max-height: 90vh;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -152,6 +155,16 @@
|
|
|
|
font-size: 2vw;
|
|
|
|
font-size: 2vw;
|
|
|
|
color: #fff;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.rightTH{
|
|
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
width: 33%;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.rightTable{
|
|
|
|
|
|
|
|
width: 20vw;
|
|
|
|
|
|
|
|
position: sticky;
|
|
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
|
|
background-color: rgba(23, 48, 97);
|
|
|
|
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</style>
|
|
|
|
<body class="gray-bg">
|
|
|
|
<body class="gray-bg">
|
|
|
|
<!-- 29.4 39.8 50.1 59.6 68.8 -->
|
|
|
|
<!-- 29.4 39.8 50.1 59.6 68.8 -->
|
|
|
@ -362,7 +375,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
$.post(ctx + 'api/getCountNumberById', {id: id.toString()}, (e) => {
|
|
|
|
$.post(ctx + 'api/getCountNumberById', {id: id.toString()}, (e) => {
|
|
|
|
$("#threeLabelContent").css('display', 'block')
|
|
|
|
$("#threeLabelContent").css('display', 'block')
|
|
|
|
$("#threeLabelContent").html(e.data.map(v => `<p>名称:${v.areaName} 编号:${v.locationCode} 数量: ${v.countNumber}</p>`).join('<br>'))
|
|
|
|
$("#threeLabelContent").html(`<div class="rightTable"><div class="rightTH">机坪名称</div><div class="rightTH">机位编码</div><div class="rightTH">轮挡数量</div></div>${e.data.map(v => `<div class="rightTH">${v.areaName}</div><div class="rightTH">${v.locationCode}</div><div class="rightTH">${v.countNumber}</div> `).join('<br>')}`)
|
|
|
|
|
|
|
|
|
|
|
|
// new tween.Tween(camera.position).to(new THREE.Vector3(383, 439, 3553), 500).start()
|
|
|
|
// new tween.Tween(camera.position).to(new THREE.Vector3(383, 439, 3553), 500).start()
|
|
|
|
// camera.position.set(383, 439, 3553)
|
|
|
|
// camera.position.set(383, 439, 3553)
|
|
|
|