index.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <template>
  2. <view class="cash-out-box">
  3. <view style="color:#666;font-size: 32rpx;">
  4. 提现申请需要审核,请耐心等待,注意查收微信红包。
  5. </view>
  6. <view class="cash-input-box">
  7. <text>¥</text>
  8. <input type="number">
  9. </view>
  10. <view class="all-cash-out-box">
  11. <text>当前积分为23982,可抵现金239.82,</text>
  12. <text style="color: #1a9ed3;">全部提现</text>
  13. </view>
  14. <button type="primary">提现</button>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. };
  22. },
  23. onLoad() {
  24. },
  25. methods: {
  26. }
  27. };
  28. </script>
  29. <style>
  30. .cash-out-box {
  31. width: 85%;
  32. height: 600rpx;
  33. background: #fff;
  34. border-radius: 15rpx;
  35. display: flex;
  36. flex-direction: column;
  37. align-items: center;
  38. margin: 5% auto;
  39. padding: 15px;
  40. }
  41. .cash-input-box {
  42. width: 100%;
  43. margin-top: 5%;
  44. border-bottom: 1px solid #dbdbdb;
  45. display: flex;
  46. align-items: center;
  47. height: 80rpx;
  48. }
  49. .cash-input-box text {
  50. margin-right: 2%;
  51. }
  52. .all-cash-out-box {
  53. margin-top: 3%;
  54. font-size: 28rpx;
  55. width: 99%;
  56. color: #999;
  57. }
  58. .cash-out-box button {
  59. background: #1a9ed3;
  60. color: #fff;
  61. width: 99%;
  62. margin-top: 5%;
  63. }
  64. </style>