accountBalance.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. <template>
  2. <view class="balance">
  3. <!-- 页面渐变色背景 -->
  4. <view class="shadow">
  5. </view>
  6. <!-- 页面渐变色背景 -->
  7. <view class="mine-balance">
  8. <view class="title">
  9. {{i18n.myBalance}}(元)
  10. </view>
  11. <view class="money"> 500.00 </view>
  12. <view class="btn-list">
  13. <button class="withdrawal" @click="toWithdrawal">{{i18n.withdrawal}}</button>
  14. <button class="recharge" @click="toRecharge">充值</button>
  15. </view>
  16. </view>
  17. <view class="money-detail">
  18. <view class="money-title">
  19. <text style="font-weight: 600;color: #222;">余额明细</text>
  20. <AllRight name="全部" @toDetail='toDetail' />
  21. </view>
  22. <view class="">
  23. <MoneyDetail v-for="(item,index) in moneyDetail" :itemInfo="item" :key="index" />
  24. </view>
  25. </view>
  26. <view class="bottom-text">
  27. 没有更多数据了
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. import AllRight from '../mineComponent/allRight/allRight.vue';
  33. import MoneyDetail from '../mineComponent/moneyDetail/index.vue'
  34. export default {
  35. components: {
  36. AllRight,
  37. MoneyDetail
  38. },
  39. data() {
  40. return {
  41. moneyDetail: [{
  42. name: '充值',
  43. time: '2024-1-1 09:34:31',
  44. money: '+400'
  45. },
  46. {
  47. name: '提现',
  48. time: '2024-1-1 09:34:31',
  49. money: '-400'
  50. },
  51. {
  52. name: '充值',
  53. time: '2024-1-1 09:34:31',
  54. money: '+400'
  55. },
  56. ]
  57. };
  58. },
  59. computed:{
  60. i18n(){
  61. return this.$t("index")
  62. }
  63. },
  64. created() {
  65. uni.setNavigationBarColor({
  66. frontColor: '#ffffff',
  67. backgroundColor: '#f74639'
  68. })
  69. uni.setNavigationBarTitle({
  70. title:this.i18n.accountBalance
  71. })
  72. },
  73. methods: {
  74. //跳转明细页面
  75. toDetail() {
  76. uni.navigateTo({
  77. url: '/pageC/balanceDetail/balanceDetail'
  78. })
  79. },
  80. //跳转充值页面
  81. toRecharge() {
  82. uni.navigateTo({
  83. url: '/pageC/recharge/recharge'
  84. })
  85. },
  86. //跳转提现页面
  87. toWithdrawal(){
  88. uni.navigateTo({
  89. url:'/pageC/withdrawal/withdrawal'
  90. })
  91. }
  92. },
  93. }
  94. </script>
  95. <style lang="scss">
  96. page {
  97. background-color: "#f4f4f4";
  98. }
  99. .balance {
  100. position: relative;
  101. padding-top: 10px;
  102. .shadow {
  103. position: absolute;
  104. top: 0;
  105. height: 400px;
  106. width: 100%;
  107. background: linear-gradient(#f74639, #f4f4f4);
  108. z-index: -1;
  109. }
  110. .mine-balance {
  111. width: 96%;
  112. margin: 0 auto;
  113. background-color: #fff;
  114. border-radius: 10px;
  115. padding-top: 82rpx;
  116. padding-bottom: 62rpx;
  117. .title {
  118. text-align: center;
  119. font-size: 28rpx;
  120. color: #222;
  121. }
  122. .money {
  123. font-size: 84rpx;
  124. color: #222;
  125. font-weight: 600;
  126. text-align: center;
  127. margin-top: 36rpx;
  128. }
  129. .btn-list {
  130. display: flex;
  131. justify-content: space-around;
  132. margin-top: 76rpx;
  133. .withdrawal {
  134. width: 298rpx;
  135. height: 88rpx;
  136. background-color: rgba(248, 50, 36, 0.1);
  137. border-radius: 44px;
  138. color: #f83224;
  139. font-size: 32rpx;
  140. }
  141. .recharge {
  142. width: 298rpx;
  143. height: 88rpx;
  144. background-color: #f83224;
  145. border-radius: 44px;
  146. color: #fff;
  147. font-size: 32rpx;
  148. box-shadow: 0rpx 12rpx 28rpx -12rpx #f83224;
  149. }
  150. }
  151. }
  152. .money-detail {
  153. background-color: #fff;
  154. border-radius: 10px;
  155. width: 88%;
  156. margin: 10px auto;
  157. padding: 0 28rpx;
  158. .money-title {
  159. display: flex;
  160. justify-content: space-between;
  161. align-items: center;
  162. height: 108rpx;
  163. }
  164. }
  165. .bottom-text {
  166. text-align: center;
  167. font-size: 24rpx;
  168. color: #777;
  169. margin-top: 44rpx;
  170. }
  171. }
  172. </style>