withdraw.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <template>
  2. <view>
  3. <u-navbar title="提现"></u-navbar>
  4. <view class="withdraw">
  5. <view class="withdraw-head">
  6. <p>提现至</p><span>微信商家账户</span>
  7. </view>
  8. <view class="withdraw-main">
  9. <p>申请提现金额(元)</p>
  10. <view class="withdraw-input">
  11. <span>¥</span>
  12. <u-input v-model="value" :type="type" placeholder-style="font-size:28px;height:40px;line-height:40px;color:#ccc;" />
  13. </view>
  14. </view>
  15. <view class="withdraw-foot">
  16. <p>可提现余额 ¥1000</p>
  17. <span>全部提现</span>
  18. </view>
  19. </view>
  20. <view class="applyBtn">
  21. <u-button class="applyBtn-btn" type="primary">申请提现,7日内到账</u-button>
  22. </view>
  23. <view class="withdraw-tips">
  24. <h4>提现说明:</h4>
  25. <p>由于银行清算,提现申请将于次日内到账。如遇高峰期,可能延时到账,请耐心等待。</p>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. import * as API from '@/apis/finance.js'
  31. export default {
  32. data() {
  33. return {
  34. value: '',
  35. type: 'text',
  36. }
  37. },
  38. methods: {
  39. }
  40. }
  41. </script>
  42. <style>
  43. page{
  44. background-color: #F7F7F7;
  45. }
  46. </style>
  47. <style lang="scss" scoped>
  48. .withdraw-tips{
  49. margin:24px 16px;
  50. p{
  51. color:#999;
  52. margin-top: 4px;
  53. }
  54. }
  55. .withdraw{
  56. margin: 16px;
  57. background-color: #fff;
  58. padding: 16px;
  59. .withdraw-head{
  60. display: flex;
  61. align-items: center;
  62. p{
  63. color:#999;
  64. }
  65. span{
  66. margin-left: 12px;
  67. }
  68. }
  69. .withdraw-main{
  70. border-top: 1px solid #f7f7f7;
  71. border-bottom: 1px solid #f7f7f7;
  72. margin: 16px 0;
  73. padding: 16px 0;
  74. .withdraw-input{
  75. margin-top: 32px;
  76. display: flex;
  77. align-items: center;
  78. font-size: 28px;
  79. /deep/.uni-input-input{
  80. font-size: 28px;
  81. }
  82. }
  83. }
  84. .withdraw-foot{
  85. display: flex;
  86. align-items: center;
  87. p{
  88. color:#999
  89. }
  90. span{
  91. color:#2979FF;
  92. margin-left: 16px;
  93. }
  94. }
  95. }
  96. .applyBtn{
  97. margin: 16px;
  98. }
  99. .applyBtn-btn{
  100. background-color: #185AC6;
  101. opacity: 0.5;
  102. border-color:#185AC6 ;
  103. border-radius: 8px;
  104. }
  105. </style>