This commit is contained in:
2026-04-30 16:06:57 +08:00
parent a4afe70d46
commit 94bcbc8d8f
10 changed files with 249 additions and 443 deletions

View File

@@ -138,11 +138,9 @@ onReachBottom(() => {
<view v-if="loading" class="py-4 text-center text-sm text-gray-400">
加载中...
</view>
<view v-else-if="!data.list.length" class="py-4 text-center text-sm text-gray-400">
暂无记录
</view>
<EmptyState v-else-if="!data.list.length" text="暂无奖励明细" />
</view>
<wd-loadmore :state="loadMoreState" @reload="getData" />
<wd-loadmore v-if="data.list.length > 0" :state="loadMoreState" @reload="getData" />
</view>
</template>