You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

222 lines
3.9 KiB

  1. <template>
  2. <view class="app-container" style="background-color: #f7f7f7;">
  3. <view class="agent-content">
  4. <view class="ag-sign" @click="cashManager">
  5. 提现历史
  6. </view>
  7. <view class="agent-top">
  8. <view class="ag-num">
  9. <view class="au-font">
  10. </view>
  11. <view class="au-num">
  12. 458.00
  13. </view>
  14. </view>
  15. <view class="age-font">
  16. 可提现
  17. </view>
  18. <view class="age-line">
  19. <img src="../../static/page/line-style.png" style="width: 200rpx;height: 2rpx;" alt="" srcset="" />
  20. </view>
  21. <view class="age-wait">
  22. 总提现500.00
  23. </view>
  24. <view class="age-linemore">
  25. <img src="../../static/page/divider-style.png" style="width: 690rpx;height: 2rpx;" alt="" srcset="" />
  26. </view>
  27. <div class="age-mnum">
  28. <view class="mtext">
  29. 待入账1000
  30. </view>
  31. <view class="mline">
  32. </view>
  33. <view class="mtext">
  34. 提现中458
  35. </view>
  36. </div>
  37. </view>
  38. <view class="ag-paylist">
  39. <view class="agp-item">
  40. <view class="agp-title">
  41. <view class="zhifubao">
  42. 支付宝账户
  43. </view>
  44. </view>
  45. <view class="agp-detail">
  46. <view class="agp-make" @click="makecash">
  47. 去开通
  48. </view>
  49. </view>
  50. </view>
  51. </view>
  52. </view>
  53. </view>
  54. </template>
  55. <script>
  56. export default {
  57. data() {
  58. return {
  59. }
  60. },
  61. methods: {
  62. makecash() {
  63. uni.navigateTo({
  64. url: '/pages/account-opened/account-opened'
  65. });
  66. },
  67. cashManager() {
  68. uni.navigateTo({
  69. url: '/pages/withdrawal-history/withdrawal-history'
  70. });
  71. }
  72. }
  73. }
  74. </script>
  75. <style lang="scss">
  76. .uni-page-body {
  77. background:#f7f7f7;
  78. }
  79. .agent-content {
  80. position: relative;
  81. width: 100%;
  82. height: 1400rpx;
  83. background: url(../../static/page/merchant-account-opening-bg.png) no-repeat top center;
  84. background-size: 100% 414rpx;
  85. box-sizing: border-box;
  86. .ag-sign {
  87. position: absolute;
  88. right: 0;
  89. top: 0;
  90. width: 150rpx;
  91. height: 60rpx;
  92. line-height: 60rpx;
  93. padding-left: 40rpx;
  94. border-top-left-radius: 30rpx;
  95. border-bottom-left-radius: 30rpx;
  96. color: #fff;
  97. font-size: 12px;
  98. background: #FCC565;
  99. box-sizing: border-box;
  100. cursor: pointer;
  101. }
  102. .agent-top {
  103. text-align: center;
  104. padding-top: 40rpx;
  105. .ag-num {
  106. display: flex;
  107. justify-content: center;
  108. padding-top: 20rpx;
  109. color: #fff;
  110. .au-font {
  111. margin-top: 40rpx;
  112. font-size: 14px;
  113. margin-right: 10rpx;
  114. line-height: 1.5;
  115. }
  116. .au-num {
  117. font-size: 30px;
  118. font-weight: bold;
  119. }
  120. }
  121. .age-font {
  122. margin-top: 10rpx;
  123. font-size: 16px;
  124. line-height: 1.5;
  125. color: #fff;
  126. }
  127. .age-line {
  128. margin: 20rpx auto 0;
  129. width: 200rpx;
  130. height: 2rpx;
  131. img {
  132. display: block;
  133. margin: 0 auto;
  134. }
  135. }
  136. .age-wait {
  137. margin-top: 20rpx;
  138. color: #fff;
  139. font-size: 14px;
  140. }
  141. .age-linemore {}
  142. .age-mnum {
  143. display: flex;
  144. justify-content: center;
  145. align-items: center;
  146. margin-top: 20rpx;
  147. .mtext {
  148. color: #fff;
  149. font-size: 14px;
  150. margin: 0 20rpx;
  151. line-height: 1.5;
  152. }
  153. .mline {
  154. height: 28rpx;
  155. width: 2rpx;
  156. background: #F86E78;
  157. }
  158. }
  159. }
  160. .ag-paylist {
  161. padding-left: 30rpx;
  162. padding-right: 30rpx;
  163. margin-top: 36rpx;
  164. background: #fff;
  165. .agp-item {
  166. display: flex;
  167. justify-content: space-between;
  168. height: 100rpx;
  169. .agp-title {
  170. .zhifubao {
  171. padding-left: 55rpx;
  172. height: 100rpx;
  173. line-height: 100rpx;
  174. color: #454545;
  175. font-size: 14px;
  176. font-weight: bold;
  177. background: url(../../static/page/payment-icon.png) no-repeat left center;
  178. background-size: 40rpx 40rpx;
  179. }
  180. }
  181. .agp-detail {
  182. .agp-make {
  183. padding-right: 30rpx;
  184. height: 100rpx;
  185. line-height: 100rpx;
  186. color: #999;
  187. font-size: 12px;
  188. background: url(../../static/page/open-icon.png) no-repeat right center;
  189. background-size: 14rpx 24rpx;
  190. cursor: pointer;
  191. }
  192. }
  193. }
  194. }
  195. }
  196. </style>