accountBalance.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <template>
  2. <view class="balance">
  3. <view class="shadow">
  4. </view>
  5. <view class="mine-balance">
  6. <view class="title">
  7. 我的余额(元)
  8. </view>
  9. <view class="money"> 500.00 </view>
  10. <view class="btn-list">
  11. <button class="withdrawal">提现</button>
  12. <button class="recharge">充值</button>
  13. </view>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. };
  22. },
  23. created() {
  24. uni.setNavigationBarColor({
  25. frontColor: '#ffffff',
  26. backgroundColor: '#f74639'
  27. })
  28. }
  29. }
  30. </script>
  31. <style lang="scss">
  32. .balance {
  33. position: relative;
  34. padding-top: 10px;
  35. .shadow {
  36. position: absolute;
  37. top: 0;
  38. height: 300px;
  39. width: 100%;
  40. background: linear-gradient(#f74639, #f4f4f4);
  41. z-index: -1;
  42. }
  43. .mine-balance{
  44. width: 96%;
  45. margin: 0 auto;
  46. background-color: #fff;
  47. border-radius: 10px;
  48. padding-top: 82rpx;
  49. padding-bottom: 62rpx;
  50. .title{
  51. text-align: center;
  52. font-size: 28rpx;
  53. color: #222;
  54. }
  55. .money{
  56. font-size: 84rpx;
  57. color: #222;
  58. font-weight: 600;
  59. text-align: center;
  60. margin-top: 36rpx;
  61. }
  62. .btn-list{
  63. display: flex;
  64. justify-content: space-around;
  65. margin-top: 76rpx;
  66. .withdrawal{
  67. width: 298rpx;
  68. height: 88rpx;
  69. background-color: rgba(248, 50, 36, 0.1);
  70. border-radius: 44px;
  71. color: #f83224;
  72. font-size: 32rpx;
  73. }
  74. .recharge{
  75. width: 298rpx;
  76. height: 88rpx;
  77. background-color: #f83224;
  78. border-radius: 44px;
  79. color: #fff;
  80. font-size: 32rpx;
  81. box-shadow: 0rpx 12rpx 28rpx -12rpx #f83224;
  82. }
  83. }
  84. }
  85. }
  86. </style>