accountBalance.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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"> {{ userInformation.balance }} </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. userInformation: {},
  48. };
  49. },
  50. computed: {
  51. i18n() {
  52. return this.$t("index");
  53. },
  54. },
  55. created() {
  56. uni.setNavigationBarColor({
  57. frontColor: "#ffffff",
  58. backgroundColor: "#f74639",
  59. });
  60. uni.setNavigationBarTitle({
  61. title: this.i18n.accountBalance,
  62. });
  63. },
  64. methods: {
  65. //跳转明细页面
  66. toDetail() {
  67. uni.navigateTo({
  68. url: "/pageC/balanceDetail/balanceDetail?type=balance",
  69. });
  70. },
  71. //跳转充值页面
  72. toRecharge() {
  73. uni.navigateTo({
  74. url: "/pageC/recharge/recharge",
  75. });
  76. },
  77. //跳转提现页面
  78. toWithdrawal() {
  79. uni.navigateTo({
  80. url: "/pageC/withdrawal/withdrawal?type=balance",
  81. });
  82. },
  83. //获取余额明细
  84. getMoneyList() {
  85. uni.$u.http
  86. .get(`/api/finance?is_page=1&page=1&limit=10&account_type=balance`)
  87. .then((res) => {
  88. this.moneyDetail = res.data.slice(0, 3);
  89. });
  90. },
  91. //获取余额
  92. getUserInfo() {
  93. uni.$u.http.get(`/api/member/info`).then((res) => {
  94. this.userInformation = res;
  95. });
  96. },
  97. },
  98. onShow() {
  99. this.getMoneyList();
  100. this.getUserInfo();
  101. },
  102. };
  103. </script>
  104. <style lang="scss">
  105. page {
  106. background-color: "#f4f4f4";
  107. }
  108. .balance {
  109. position: relative;
  110. padding-top: 10px;
  111. .shadow {
  112. position: absolute;
  113. top: 0;
  114. height: 400px;
  115. width: 100%;
  116. background: linear-gradient(#f74639, #f4f4f4);
  117. z-index: -1;
  118. }
  119. .mine-balance {
  120. width: 96%;
  121. margin: 0 auto;
  122. background-color: #fff;
  123. border-radius: 10px;
  124. padding-top: 82rpx;
  125. padding-bottom: 62rpx;
  126. .title {
  127. text-align: center;
  128. font-size: 28rpx;
  129. color: #222;
  130. }
  131. .money {
  132. font-size: 84rpx;
  133. color: #222;
  134. font-weight: 600;
  135. text-align: center;
  136. margin-top: 36rpx;
  137. }
  138. .btn-list {
  139. display: flex;
  140. justify-content: space-around;
  141. margin-top: 76rpx;
  142. .withdrawal {
  143. width: 298rpx;
  144. height: 88rpx;
  145. background-color: rgba(248, 50, 36, 0.1);
  146. border-radius: 44px;
  147. color: #f83224;
  148. font-size: 32rpx;
  149. }
  150. .recharge {
  151. width: 298rpx;
  152. height: 88rpx;
  153. background-color: #f83224;
  154. border-radius: 44px;
  155. color: #fff;
  156. font-size: 32rpx;
  157. box-shadow: 0rpx 12rpx 28rpx -12rpx #f83224;
  158. }
  159. }
  160. }
  161. .money-detail {
  162. background-color: #fff;
  163. border-radius: 10px;
  164. width: 88%;
  165. margin: 10px auto;
  166. padding: 0 28rpx;
  167. .money-title {
  168. display: flex;
  169. justify-content: space-between;
  170. align-items: center;
  171. height: 108rpx;
  172. }
  173. }
  174. .bottom-text {
  175. text-align: center;
  176. font-size: 24rpx;
  177. color: #777;
  178. margin-top: 44rpx;
  179. }
  180. }
  181. </style>