| 12345678910111213141516171819202122232425262728293031323334353637 |
- <!--index.wxml-->
- <com-header page-title="{{ pageTitle }}" show-back="{{ showBack }}" show-header="{{ showHeader }}"></com-header>
- <view class="wrap">
- <view class="wrap_t">
- <image class="banner" src="/statics/img/success_bg.png"></image>
- </view>
- <view class="order_wrap">
- <view class="order_t">
- <image class="icon_success" src="/statics/img/icon_success.png"></image>
- <view class="tips">支付成功</view>
- <view class="desc">您的订单会快速进行处理</view>
- <view class="price"><text class="unit">¥</text>{{ orderInfo.pay_price }}</view>
- </view>
- <image class="order_nr_t" src="/statics/img/line_tu.png"></image>
- <view class="order_nr">
- <view class="order_item">
- <text class="item_l">订单编号:</text>
- <text class="item_r">{{ orderInfo.order_num }}</text>
- </view>
- <view class="order_item">
- <text class="item_l">下单时间:</text>
- <text class="item_r">{{ orderInfo.created_at }}</text>
- </view>
- <view class="order_item">
- <text class="item_l">支付方式:</text>
- <text class="item_r">{{ orderInfo.pay_name }}</text>
- </view>
- <view class="order_item">
- <text class="item_l">交易时间:</text>
- <text class="item_r">{{ orderInfo.pay_at }}</text>
- </view>
- </view>
- </view>
- <view class="btn_wrap" bind:tap="toOrderDetail">
- <view class="btn">订单详情</view>
- </view>
- </view>
|