123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <mobile-main frameStyle="{{frameStyle}}" bind:back="back">
- <view slot="info" class="container main">
- <view class="zero one">
- <input type="text" value="{{searchInfo.name}}" bindconfirm="search" placeholder="请输入关键词" />
- </view>
- <view class="zero 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="name">{{item.user_name}}--[{{item.order_no}}]</view>
- <view class="other">
- <view class="other_1">
- <text>支付金额:</text>
- <text>{{item.money}}</text>
- </view>
- <view class="other_1">
- <text>支付类型:</text>
- <text>{{item.type}}</text>
- </view>
- </view>
- <view class="btn">
- <button type="primary" size="mini" bindtap="toView" data-item="{{item}}">详细信息</button>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- </mobile-main>
- <e-dialog dialog="{{dialog}}" bind:toClose="toClose">
- <view slot="info">
- <view class="dialog_one" wx:if="{{dialog.type=='1'}}">
- <view class="one_1">
- <text>支付订单号:</text>
- <text>{{info.order_no||'暂无'}}</text>
- </view>
- <view class="one_1">
- <text>支付用户:</text>
- <text>{{info.user_name||'暂无'}}</text>
- </view>
- <view class="one_1">
- <text>支付金额:</text>
- <text>{{info.money||'暂无'}}</text>
- </view>
- <view class="one_1">
- <text>支付类型:</text>
- <text>{{info.type||'暂无'}}</text>
- </view>
- <view class="one_1">
- <text>支付状态:</text>
- <text>{{info.status=='0'?'待支付':info.status=='1'?'已支付':'支付失败'}}</text>
- </view>
- <view class="one_1">
- <text>支付时间:</text>
- <text>{{info.time||'暂无'}}</text>
- </view>
- <view class="one_1">
- <text>支付说明:</text>
- <text>{{info.desc||'暂无'}}</text>
- </view>
- </view>
- </view>
- </e-dialog>
|