ensureRecharge.vue 2.1 KB

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