out.vue 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <view>
  3. <car-common ref="common" ></car-common>
  4. <u-navbar title="余额提现" :is-back="true" >
  5. <view class="slot-wrap"></view>
  6. </u-navbar>
  7. <view class="von-card-row von-tx">
  8. <!-- <view class="flex-spal">
  9. 余额变动记录
  10. <text class="icon iconfont icon-ico_listarrow"></text>
  11. </view> -->
  12. <view class="von-sp-list">
  13. <h5 class="flex-sp"><label>提现至</label>{{myAccount.account.bankName}}({{show(myAccount.account.bankNumber)}})</h5>
  14. <view class="von-sp-text">
  15. <view class="">申请提现金额(元)</view>
  16. <view class="von-tx-input flex-spal">
  17. <label>¥</label>
  18. <u-input placeholder="请输入提现金额" type="number" :max="myAccount.withdrawalAmount" v-model="txAmount"></u-input>
  19. </view>
  20. </view>
  21. <h5 class="flex-sp">可提现余额¥{{myAccount.withdrawalAmount}}<navigator class="blue" @click="txAmount=myAccount.withdrawalAmount">全部提现</navigator></h5>
  22. </view>
  23. <u-button type="primary" style="background-color: #9DC6FF;" @click="myerror" v-if="!txbool">次日到账,确认提现</u-button>
  24. <u-button type="primary" style="background-color: #9DC6FF;" @click="myerror2" v-if="txbool&&!txAmount">次日到账,确认提现</u-button>
  25. <u-button type="primary" @click="getWithdrawalSubmit" v-if="txbool&&txAmount" >次日到账,确认提现</u-button>
  26. <view class="von-tx-text">
  27. <p>提现说明:</p>
  28. <p >1.每周{{showday(myAccount.date)}}可申请将账户内资金提现至银行卡;</p>
  29. <p>2.由于银行清算,提现申请将于次日内到账。如遇高峰期,可能延时到账,请耐心等待。</p>
  30. </view>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. import api from './out.js'
  36. export default api;
  37. </script>
  38. <style>
  39. page{
  40. background-color:#eee;
  41. }
  42. </style>