withdrawal.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <template>
  2. <view class="withdrawal">
  3. <!-- 提现头部 -->
  4. <view class="withdrawal-top">
  5. <view class="title">
  6. 到账方式
  7. </view>
  8. <view class="wx">
  9. <image src="../../static/mine/323.png" class="wx-logo" mode=""></image>
  10. <text>微信余额</text>
  11. </view>
  12. </view>
  13. <!-- 提现头部 -->
  14. <view class="content">
  15. <view class="money">
  16. 提现金额
  17. </view>
  18. <view class="inp">
  19. <text>¥</text>
  20. <input type="text" />
  21. <text style="color: #f83224;">全部提现</text>
  22. </view>
  23. <text class="all-money">可提现金额¥345.00</text>
  24. <button class="immediately">立即提现</button>
  25. <view class="detail" @click="toWithdrawalDetail">
  26. 提现明细
  27. </view>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. export default {
  33. data() {
  34. return {
  35. }
  36. },
  37. methods: {
  38. toWithdrawalDetail(){
  39. uni.navigateTo({
  40. url:"/pageC/withdrawalDetail/withdrawalDetail"
  41. })
  42. }
  43. }
  44. }
  45. </script>
  46. <style scoped lang="scss">
  47. .withdrawal {
  48. padding: 20rpx 24rpx 0;
  49. .withdrawal-top {
  50. display: flex;
  51. justify-content: space-between;
  52. align-items: center;
  53. height: 104rpx;
  54. background-color: #fff;
  55. border-radius: 16rpx;
  56. padding: 0 24rpx;
  57. .title {
  58. font-size: 30rpx;
  59. }
  60. .wx {
  61. display: flex;
  62. align-items: center;
  63. height: 50rpx;
  64. .wx-logo {
  65. width: 40rpx;
  66. height: 40rpx;
  67. margin-right: 10rpx;
  68. }
  69. }
  70. }
  71. .content{
  72. background-color: #fff;
  73. border-radius: 16rpx;
  74. margin-top: 16rpx;
  75. padding: 32rpx 24rpx 46rpx;
  76. .money{
  77. font-size: 30rpx;
  78. }
  79. .inp{
  80. display: flex;
  81. height: 110rpx;
  82. align-items: center;
  83. justify-content: space-between;
  84. border-bottom: 2rpx solid rgba(151, 151, 151, 0.3);
  85. margin-bottom: 18rpx;
  86. }
  87. .all-money{
  88. font-size: 24rpx;
  89. color: #555;
  90. }
  91. .immediately{
  92. box-shadow: 0rpx 12rpx 28rpx -12rpx #F83224;
  93. border-radius: 44rpx;
  94. background-color: #F83224;
  95. color: #fff;
  96. margin-top: 60rpx;
  97. margin-bottom: 60rpx;
  98. }
  99. .detail{
  100. text-align: center;
  101. font-size: 26rpx;
  102. opacity: 0.6;
  103. color: #131415;
  104. }
  105. }
  106. }
  107. </style>