ensureMoney.vue 4.9 KB

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