1234567891011121314151617181920212223242526272829 |
- <mobile-main frameStyle="{{frameStyle}}" bind:back="back">
- <view slot="info" class="container main">
- <view class="one">
- <van-search value="{{ searchName }}" bind:search="onSearch" placeholder="请输入用户姓名" />
- </view>
- <view class="two">
- <scroll-view scroll-y="true" class="scroll-view">
- <view class="list-scroll-view">
- <view class="list" wx:for="{{list}}" wx:key="item">
- <view class="other">
- <view class="other_1 textOver"><text>订单号:</text><text>{{item.order_no}}</text></view>
- <view class="other_1"><text>支付理由:</text><text>{{item.type}}</text></view>
- <view class="other_1"><text>支付金额:</text><text>{{item.money}}</text></view>
- <view class="other_1"><text>支付状态:</text><text>{{item.statusZh}}</text></view>
- </view>
- <view class="btn">
- <view wx:if="{{item.status==='0'}}">
- <button size="mini" type="primary" bindtap="toPay" data-id="{{item._id}}">支付</button>
- </view>
- <view wx:if="{{item.status==='1'}}">
- <button size="mini" type="primary" bindtap="toRefund" data-id="{{item._id}}">退款</button>
- </view>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- </mobile-main>
|