This commit is contained in:
kron
2025-07-11 00:56:39 +08:00
parent 566f07080a
commit ea408ea382
2 changed files with 23 additions and 0 deletions

View File

@@ -274,6 +274,9 @@ const toRankListPage = () => {
</view>
<text>{{ item.totalScore }}<text>分</text></text>
</view>
<view v-if="!currentList.length" class="no-data">
<text>筹备中...</text>
</view>
<view class="see-more" @click="toRankListPage">点击查看更多</view>
</view>
</view>
@@ -468,4 +471,12 @@ const toRankListPage = () => {
margin-top: 5px;
margin-bottom: 10px;
}
.no-data {
width: 100%;
height: 200px;
display: flex;
justify-content: center;
align-items: center;
color: #fff9;
}
</style>