ensureMoney.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. <template>
  2. <view class="balance">
  3. <!-- 页面渐变色背景 -->
  4. <view class="shadow"> </view>
  5. <!-- 页面渐变色背景 -->
  6. <view class="mine-balance">
  7. <view class="title">
  8. <text>{{ i18n.myDeposit }}(元)</text>
  9. <image
  10. src="../../static/mine/324.png"
  11. @click="toExplain"
  12. class="mine-324"
  13. mode=""
  14. ></image>
  15. </view>
  16. <view class="money"> {{ userInformation.deposit }} </view>
  17. <view class="btn-list">
  18. <button class="withdrawal" @click="toWithdrawal">
  19. {{ i18n.withdrawal }}
  20. </button>
  21. <button class="recharge" @click="toRecharge">
  22. {{ i18n.recharge }}
  23. </button>
  24. </view>
  25. </view>
  26. <view class="money-detail">
  27. <view class="money-title">
  28. <text style="font-weight: 600">{{ i18n.depositDetails }}</text>
  29. <AllRight :name="i18n.whole" @toDetail="toDetail" />
  30. </view>
  31. <view class="">
  32. <MoneyDetail
  33. v-for="(item, index) in moneyDetail"
  34. :itemInfo="item"
  35. :key="index"
  36. />
  37. </view>
  38. </view>
  39. <view class="bottom-text"> {{ i18n.noMore }} </view>
  40. </view>
  41. </template>
  42. <script>
  43. import AllRight from "../mineComponent/allRight/allRight.vue";
  44. import MoneyDetail from "../mineComponent/moneyDetail/index.vue";
  45. export default {
  46. components: {
  47. AllRight,
  48. MoneyDetail,
  49. },
  50. data() {
  51. return {
  52. moneyDetail: [],
  53. userInformation: {},
  54. };
  55. },
  56. computed: {
  57. i18n() {
  58. return this.$t("index");
  59. },
  60. },
  61. created() {
  62. uni.setNavigationBarColor({
  63. frontColor: "#ffffff",
  64. backgroundColor: "#f74639",
  65. });
  66. uni.setNavigationBarTitle({
  67. title: this.i18n.saldo,
  68. });
  69. },
  70. methods: {
  71. //跳转明细页面
  72. toDetail() {
  73. uni.navigateTo({
  74. url: "/pageC/balanceDetail/balanceDetail?type=deposit",
  75. });
  76. },
  77. //跳转充值页面
  78. toRecharge() {
  79. uni.navigateTo({
  80. url: "/pageD/ensureRecharge/ensureRecharge",
  81. });
  82. },
  83. //跳转提现页面
  84. toWithdrawal() {
  85. uni.navigateTo({
  86. url: "/pageC/withdrawal/withdrawal?type=deposit",
  87. });
  88. },
  89. //跳转保证金说明
  90. toExplain() {
  91. uni.navigateTo({
  92. url: "/pageC/ensureExplain/ensureExplain",
  93. });
  94. },
  95. //获取余额明细
  96. getMoneyList() {
  97. uni.$u.http
  98. .get(`/api/finance?is_page=1&page=1&limit=10&account_type=deposit`)
  99. .then((res) => {
  100. this.moneyDetail = res.data.slice(0, 3);
  101. });
  102. },
  103. //获取余额
  104. getUserInfo() {
  105. uni.$u.http.get(`/api/member/info`).then((res) => {
  106. this.userInformation = res;
  107. });
  108. },
  109. },
  110. onShow() {
  111. this.getMoneyList();
  112. this.getUserInfo();
  113. },
  114. };
  115. </script>
  116. <style lang="scss">
  117. page {
  118. background-color: "#f4f4f4";
  119. }
  120. .balance {
  121. position: relative;
  122. padding-top: 10px;
  123. .shadow {
  124. position: absolute;
  125. top: 0;
  126. height: 400px;
  127. width: 100%;
  128. background: -webkit-linear-gradient(#f74639, #f4f4f4);
  129. /* Safari 5.1 - 6.0 */
  130. background: -o-linear-gradient(#f74639, #f4f4f4);
  131. /* Opera 11.1 - 12.0 */
  132. background: -moz-linear-gradient(#f74639, #f4f4f4);
  133. /* Firefox 3.6 - 15 */
  134. background: linear-gradient(#f74639, #f4f4f4);
  135. z-index: -1;
  136. }
  137. .mine-balance {
  138. width: 96%;
  139. margin: 0 auto;
  140. background-color: #fff;
  141. border-radius: 10px;
  142. padding-top: 82rpx;
  143. padding-bottom: 62rpx;
  144. .title {
  145. text-align: center;
  146. font-size: 28rpx;
  147. display: flex;
  148. justify-content: center;
  149. align-items: center;
  150. color: #222;
  151. height: 45prx;
  152. .mine-324 {
  153. width: 36rpx;
  154. height: 36rpx;
  155. margin-left: 10rpx;
  156. }
  157. }
  158. .money {
  159. font-size: 84rpx;
  160. color: #222;
  161. font-weight: 600;
  162. text-align: center;
  163. margin-top: 36rpx;
  164. }
  165. .btn-list {
  166. display: flex;
  167. justify-content: space-around;
  168. margin-top: 76rpx;
  169. .withdrawal {
  170. width: 298rpx;
  171. height: 88rpx;
  172. background-color: rgba(248, 50, 36, 0.1);
  173. border-radius: 44px;
  174. color: #f83224;
  175. font-size: 32rpx;
  176. }
  177. .recharge {
  178. width: 298rpx;
  179. height: 88rpx;
  180. background-color: #f83224;
  181. border-radius: 44px;
  182. color: #fff;
  183. font-size: 32rpx;
  184. box-shadow: 0rpx 12rpx 28rpx -12rpx #f83224;
  185. }
  186. }
  187. }
  188. .money-detail {
  189. background-color: #fff;
  190. border-radius: 10px;
  191. width: 88%;
  192. margin: 10px auto;
  193. padding: 0 28rpx;
  194. .money-title {
  195. display: flex;
  196. justify-content: space-between;
  197. align-items: center;
  198. height: 108rpx;
  199. }
  200. }
  201. .bottom-text {
  202. text-align: center;
  203. font-size: 24rpx;
  204. color: #777;
  205. margin-top: 44rpx;
  206. }
  207. }
  208. </style>