1
This commit is contained in:
parent
11148a7f3b
commit
13e376da89
@ -31,8 +31,12 @@
|
||||
</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>积分的提现订单,请及时处理
|
||||
<uni-icons type="right" size="18" style="padding-left: 10rpx;"></uni-icons>
|
||||
</view>
|
||||
</view>
|
||||
<view class="data-list-box">
|
||||
<view class="content-box">
|
||||
@ -99,7 +103,7 @@
|
||||
//是否是会员
|
||||
ifMember: true,
|
||||
//是否有待处理订单
|
||||
ifHasWaiting: false,
|
||||
ifHasWaiting: true,
|
||||
menus: ['积分收支明细'],
|
||||
menuIndex: 0,
|
||||
wayOrder: {},
|
||||
@ -150,9 +154,13 @@
|
||||
console.log(res, 'res')
|
||||
if (res.data) {
|
||||
this.wayOrder = res.data
|
||||
this.ifHasWaiting = true
|
||||
} else {
|
||||
this.wayOrder = null
|
||||
// this.ifHasWaiting = false
|
||||
}
|
||||
} else {
|
||||
this.ifHasWaiting = false
|
||||
}
|
||||
})
|
||||
},
|
||||
@ -351,8 +359,16 @@
|
||||
|
||||
.daiban-box {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding-top: 10rpx;
|
||||
font-size: 28rpx;
|
||||
|
||||
.daiban-dom {
|
||||
background-color: white;
|
||||
padding: 10rpx 20rpx;
|
||||
border-radius: 15rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
@ -362,6 +378,8 @@
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.huiyuan-box {
|
||||
width: 100%;
|
||||
padding: 0 30rpx;
|
||||
@ -480,11 +498,11 @@
|
||||
}
|
||||
|
||||
.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 {
|
||||
height: calc(100vh - var(--status-bar-height) - var(--window-bottom) - 400rpx);
|
||||
height: calc(100vh - var(--status-bar-height) - var(--window-bottom) - 415rpx);
|
||||
}
|
||||
|
||||
.data-list {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user