This commit is contained in:
kron
2025-08-06 18:36:30 +08:00
parent 66dea2b199
commit e12252beed
6 changed files with 76 additions and 11 deletions

View File

@@ -89,6 +89,7 @@ const toDetailPage = (id) => {
>
<PointRecord :data="item" />
</view>
<view class="no-data" v-if="list.length === 0">暂无数据</view>
</ScrollList>
</view>
<SModal
@@ -183,4 +184,13 @@ const toDetailPage = (id) => {
margin-bottom: 0;
height: calc(100% - 70px);
}
.no-data {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
color: #999999;
font-size: 14px;
}
</style>