ensureMoney.vue 3.7 KB

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