53 lines
2.7 KiB
Plaintext
53 lines
2.7 KiB
Plaintext
<view class="container m-b5">
|
|
<view class="goods-detail-box">
|
|
<scroll-view scrollY="{{true}}">
|
|
<view class="wrapper">
|
|
<view wx:if="{{data.length}}">
|
|
<view class="m-top20 " wx:for="{{data}}" wx:key="this">
|
|
<view class="order-box b-f">
|
|
<view class="order-header dis-flex">
|
|
<view class="flex-box t-l">
|
|
<text class="title">{{item.nickName}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="order-box b-f">
|
|
<view class="order-cont dis-flex">
|
|
<view class="order-box">
|
|
<view class="order-num">
|
|
<text>提现金额:{{item.qian}} 元</text>
|
|
</view>
|
|
<view class="order-num">
|
|
<text>支福包:{{item.zfb}}</text>
|
|
</view>
|
|
<view class="order-num">
|
|
<text>手机号:{{item.phone}}</text>
|
|
</view>
|
|
<view class="order-time">
|
|
<text>申请时间:{{item.create_time}}</text>
|
|
</view>
|
|
<view class="order-time">
|
|
<view>状态: <text style="color: red;" wx:if="{{item.type==3}}">拒绝</text>
|
|
<text style="color: green;" wx:if="{{item.type==2}}">已打款</text>
|
|
<text style="color: grey;" wx:if="{{item.type==1}}">等待审核中</text>
|
|
</view>
|
|
</view>
|
|
<view class="order-time" wx:if="{{item.type==3}}">
|
|
<text>拒绝原因:{{item.msg}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view wx:else>
|
|
<view class="yoshop-notcont">
|
|
<text class="iconfont icon-ziyuan"></text>
|
|
<text class="cont">亲,您还没有记录哦!</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
</view>
|