You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.4 KiB
43 lines
1.4 KiB
<!--pages/order/payment.wxml-->
|
|
<view class="container">
|
|
<view class="codeView">
|
|
<text class="name">订单编号:</text>
|
|
<text class="order">{{orderId}}</text>
|
|
<view class="copyBtn" bindtap="copyAct">| 复制</view>
|
|
</view>
|
|
<view class="header">
|
|
<image src="/images/order_success.png"></image>
|
|
<text>订单提交成功\n请转账至以下银行账户</text>
|
|
<view class="accountCopy" bindtap="copyAccount">复制账户信息</view>
|
|
</view>
|
|
<!-- 支付信息 -->
|
|
<view class="info">
|
|
<text>支付金额</text>
|
|
<view class="price">¥{{price}}</view>
|
|
</view>
|
|
<!-- 账户信息 -->
|
|
<view class="account">
|
|
<view class="titleView">
|
|
<view class="name">收款方</view>
|
|
<view class="detail">{{company}}</view>
|
|
</view>
|
|
<view class="titleView">
|
|
<view class="name">收款账号</view>
|
|
<view class="detail">{{account}}</view>
|
|
</view>
|
|
<view class="titleView">
|
|
<view class="name">开户银行</view>
|
|
<view class="detail">{{bank}}</view>
|
|
</view>
|
|
</view>
|
|
<!-- 二维码 -->
|
|
<view class="qrcode">
|
|
<view class="title">如有其他问题,请联系客服</view>
|
|
<image src="/images/QR_code.png" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="serviceView">
|
|
|
|
<view class="serviceBtn">联系客服</view>
|
|
<button class="service" open-type="contact" session-from="wxapp" ></button>
|
|
</view>
|
|
</view>
|