accountBalance.vue 3.8 KB

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