console
<view style="height: 140rpx;"></view>
<div style="display: flex;justify-content: center;flex-direction: row;width: 100%;">
<div class="container">
<div class="table" :style="{top: tableTop + 'px'}" @touchstart.stop.prevent="onTouchStart" @touchmove.stop.prevent="onTouchMove">
<div class="table-top">
<div class="rect"></div>
<div class="rect_a"></div>
</div>
<div class="table-bottom">
<div class="leg" style="height: 40px; "></div>
<div class="leg" style="height: 50px; width: 30px;"></div>
<div class="leg" style="height: 50px; width: 40px;"></div>
</div>
</div>
</div>
</div>
.container {
width: 100%;
height: 400px;
max-height: 400px;
min-height: 50px;
display: flex;
justify-content: center;
align-items: end;
margin-bottom: 40rpx;
background: lightGrey;
}
.table {
position: absolute;
width: 200px;
}
.table-top {
height: 50px;
display: flex;
flex-direction: column;
align-items: center;
}
.rect {
width: 250px;
height: 15px;
border: 1px solid black;
}
.rect_a {
flex: 1;
width: 150px;
border: 1px solid black;
}
.table-bottom {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
}
.leg {
width: 20px;
border: 1px solid black;
}