ensureMoney.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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 style="font-weight: 600;">保证金明细</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: -webkit-linear-gradient(#f74639, #f4f4f4);
  107. /* Safari 5.1 - 6.0 */
  108. background: -o-linear-gradient(#f74639, #f4f4f4);
  109. /* Opera 11.1 - 12.0 */
  110. background: -moz-linear-gradient(#f74639, #f4f4f4);
  111. /* Firefox 3.6 - 15 */
  112. background: linear-gradient(#f74639, #f4f4f4);
  113. z-index: -1;
  114. }
  115. .mine-balance {
  116. width: 96%;
  117. margin: 0 auto;
  118. background-color: #fff;
  119. border-radius: 10px;
  120. padding-top: 82rpx;
  121. padding-bottom: 62rpx;
  122. .title {
  123. text-align: center;
  124. font-size: 28rpx;
  125. display: flex;
  126. justify-content: center;
  127. align-items: center;
  128. color: #222;
  129. height: 45prx;
  130. .mine-324 {
  131. width: 36rpx;
  132. height: 36rpx;
  133. margin-left: 10rpx;
  134. }
  135. }
  136. .money {
  137. font-size: 84rpx;
  138. color: #222;
  139. font-weight: 600;
  140. text-align: center;
  141. margin-top: 36rpx;
  142. }
  143. .btn-list {
  144. display: flex;
  145. justify-content: space-around;
  146. margin-top: 76rpx;
  147. .withdrawal {
  148. width: 298rpx;
  149. height: 88rpx;
  150. background-color: rgba(248, 50, 36, 0.1);
  151. border-radius: 44px;
  152. color: #f83224;
  153. font-size: 32rpx;
  154. }
  155. .recharge {
  156. width: 298rpx;
  157. height: 88rpx;
  158. background-color: #f83224;
  159. border-radius: 44px;
  160. color: #fff;
  161. font-size: 32rpx;
  162. box-shadow: 0rpx 12rpx 28rpx -12rpx #f83224;
  163. }
  164. }
  165. }
  166. .money-detail {
  167. background-color: #fff;
  168. border-radius: 10px;
  169. width: 88%;
  170. margin: 10px auto;
  171. padding: 0 28rpx;
  172. .money-title {
  173. display: flex;
  174. justify-content: space-between;
  175. align-items: center;
  176. height: 108rpx;
  177. }
  178. }
  179. .bottom-text {
  180. text-align: center;
  181. font-size: 24rpx;
  182. color: #777;
  183. margin-top: 44rpx;
  184. }
  185. }
  186. </style>