fix(refund/detail): 退款列表样式问题修复
This commit is contained in:
parent
744cacfd7c
commit
017a4af8f6
|
@ -25,7 +25,11 @@
|
||||||
<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">
|
||||||
|
@ -67,11 +71,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
|
||||||
|
@ -159,7 +158,6 @@ export default {
|
||||||
} else {
|
} else {
|
||||||
this.refundList = newList
|
this.refundList = newList
|
||||||
}
|
}
|
||||||
|
|
||||||
// 判断是否还有更多数据
|
// 判断是否还有更多数据
|
||||||
this.hasMore = newList.length === this.pageSize
|
this.hasMore = newList.length === this.pageSize
|
||||||
this.loadStatus = this.hasMore ? 'loadmore' : 'nomore'
|
this.loadStatus = this.hasMore ? 'loadmore' : 'nomore'
|
||||||
|
|
Loading…
Reference in New Issue