This commit is contained in:
Vinjor 2025-04-29 15:29:06 +08:00
parent 11148a7f3b
commit 13e376da89

View File

@ -31,8 +31,12 @@
</view> </view>
</view> </view>
</view> </view>
<view v-if="wayOrder!=null" class="daiban-box"> <view v-if="ifHasWaiting" class="daiban-box">
<view class="daiban-dom">
<uni-icons type="chat-filled" size="18" style="padding-right: 10rpx;"></uni-icons>
您有一笔<text>{{ wayOrder.points }}</text>积分的提现订单请及时处理 您有一笔<text>{{ wayOrder.points }}</text>积分的提现订单请及时处理
<uni-icons type="right" size="18" style="padding-left: 10rpx;"></uni-icons>
</view>
</view> </view>
<view class="data-list-box"> <view class="data-list-box">
<view class="content-box"> <view class="content-box">
@ -99,7 +103,7 @@
// //
ifMember: true, ifMember: true,
// //
ifHasWaiting: false, ifHasWaiting: true,
menus: ['积分收支明细'], menus: ['积分收支明细'],
menuIndex: 0, menuIndex: 0,
wayOrder: {}, wayOrder: {},
@ -150,9 +154,13 @@
console.log(res, 'res') console.log(res, 'res')
if (res.data) { if (res.data) {
this.wayOrder = res.data this.wayOrder = res.data
this.ifHasWaiting = true
} else { } else {
this.wayOrder = null this.wayOrder = null
// this.ifHasWaiting = false
} }
} else {
this.ifHasWaiting = false
} }
}) })
}, },
@ -351,8 +359,16 @@
.daiban-box { .daiban-box {
width: 100%; width: 100%;
display: flex;
align-items: center;
justify-content: center;
padding-top: 10rpx; padding-top: 10rpx;
font-size: 28rpx; font-size: 28rpx;
.daiban-dom {
background-color: white;
padding: 10rpx 20rpx;
border-radius: 15rpx;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
@ -362,6 +378,8 @@
} }
} }
}
.huiyuan-box { .huiyuan-box {
width: 100%; width: 100%;
padding: 0 30rpx; padding: 0 30rpx;
@ -480,11 +498,11 @@
} }
.no-member-and-wating { .no-member-and-wating {
height: calc(100vh - var(--status-bar-height) - var(--window-bottom) - 520rpx); height: calc(100vh - var(--status-bar-height) - var(--window-bottom) - 535rpx);
} }
.member-and-wating { .member-and-wating {
height: calc(100vh - var(--status-bar-height) - var(--window-bottom) - 400rpx); height: calc(100vh - var(--status-bar-height) - var(--window-bottom) - 415rpx);
} }
.data-list { .data-list {