12345678910111213141516171819202122232425262728293031 |
- <template>
- <view>
- <car-common ref="common" ></car-common>
- <u-navbar title="提现结果" :is-back="false" >
- <view class="slot-wrap"></view>
- </u-navbar>
- <view class=" von-success">
- <view class="text-center">
- <text class="icon iconfont icon-tubiaoCopy3 green"></text>
- <h2>提现申请成功,等待银行处理</h2>
- <p>预计次日到账</p>
- </view>
-
- <view class="von-form-text">
- <p class="flex-sp"><text>提现金额</text>¥{{txAmount}}元</p>
- <p class="flex-sp"><text>提现方式</text>{{myAccount.account.bankName}}({{show(myAccount.account.bankNumber)}})</p>
- </view>
-
- <u-button type="primary" @click="gotoUrl">完成</u-button>
- </view>
- </view>
- </template>
- <script>
- import api from './success.js'
- export default api;
- </script>
- <style>
- </style>
|