uniapp 购买记录状态
parent
62d0f51a5b
commit
e219ed543c
|
@ -7,7 +7,7 @@
|
|||
<text>{{userInfo.mobile}}</text>
|
||||
<text>会员积分:{{memberDetail.integral}}</text>
|
||||
</view>
|
||||
<text>再升1级即可获得【XX】等6项权益</text>
|
||||
<!-- <text>再升1级即可获得【XX】等6项权益</text> -->
|
||||
<view class="left-button">
|
||||
<view class="left-shopping" @click="handleRouter('购买记录')">
|
||||
<text>购买记录</text>
|
||||
|
@ -31,7 +31,7 @@
|
|||
<image src='../../static/images/memberLogo.png'></image>
|
||||
<text class="equity-member">我的会员权益</text>
|
||||
</view>
|
||||
<text class="equity-look">查看权益></text>
|
||||
<!-- <text class="equity-look">查看权益></text> -->
|
||||
</view>
|
||||
<view class="equity-item" v-for="(item,index) in equityData" :key="index">
|
||||
<view class="equity-grade">
|
||||
|
@ -165,10 +165,9 @@
|
|||
|
||||
<style lang="scss" scoped>
|
||||
.box {
|
||||
margin-bottom: 30%;
|
||||
padding-bottom: 20%;
|
||||
margin-top: 10%;
|
||||
background: #fff;
|
||||
height: 100vh;
|
||||
background: url(../../static/images/memberBg.png);
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<text>充值号码:{{item.userPhone}}</text>
|
||||
</view>
|
||||
<button v-show="item.bool && item.refundStatus == 0" @click.stop="handleService(item)">申请退款</button>
|
||||
<view v-show="item.refundStatus == 1">申请退款中</view>
|
||||
<view v-show="item.refundStatus != 0">{{list[item.refundStatus]}}</view>
|
||||
</view>
|
||||
<view class="item-text">
|
||||
<text>充值档次:{{item.grade}}</text>
|
||||
|
@ -32,7 +32,8 @@
|
|||
data() {
|
||||
return {
|
||||
keyword:'',
|
||||
memberData:[]
|
||||
memberData:[],
|
||||
list:['未退款','退款申请中','已退款','退款中']
|
||||
};
|
||||
},
|
||||
async onLoad() {
|
||||
|
|
Loading…
Reference in New Issue