feat(detail): 退款明细空态展示问题修复

This commit is contained in:
woody 2025-07-08 10:35:55 +08:00
parent b4166f9d49
commit 06c5ab4400
2 changed files with 7 additions and 9 deletions

View File

@ -30,7 +30,7 @@
<u-collapse-item <u-collapse-item
name="1" name="1"
v-if=" v-if="
!isRecharge && !isShare & (userInfo.memberCode != 'BF66886688') !isRecharge && !isShare && userInfo.memberCode != 'BF66886688'
" "
> >
<view slot="title" class="pf"> <view slot="title" class="pf">

View File

@ -25,7 +25,12 @@
<u-icon name="search" color="#ffffff" size="20" /> <u-icon name="search" color="#ffffff" size="20" />
</button> </button>
</view> --> </view> -->
<!-- 空状态 -->
<u-empty
mode="data"
v-if="refundList.length === 0 && !loading"
text="暂无退款记录"
></u-empty>
<!-- 退款列表 --> <!-- 退款列表 -->
<view class="refund-list"> <view class="refund-list">
<u-list @scrolltolower="loadMore" :show-scrollbar="false"> <u-list @scrolltolower="loadMore" :show-scrollbar="false">
@ -65,13 +70,6 @@
<!-- 加载更多 --> <!-- 加载更多 -->
<u-loadmore :status="loadStatus" /> <u-loadmore :status="loadStatus" />
<!-- 空状态 -->
<u-empty
mode="data"
v-if="refundList.length === 0 && !loading"
text="暂无退款记录"
></u-empty>
</view> </view>
<u-datetime-picker <u-datetime-picker