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.

293 lines
5.4 KiB

  1. <template>
  2. <view class="app-container">
  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/index/line-style.png" style="width: 200rpx;height: 2rpx;" alt="" srcset="" />
  20. </view>
  21. <view class="age-wait">
  22. 待入账200.00
  23. </view>
  24. </view>
  25. <view class="agent-main">
  26. <view class="agm-title">
  27. 提现信息
  28. </view>
  29. <view class="agm-sitem">
  30. <view class="ags-cell u-border-bottom">
  31. <view class="agc-title">
  32. 用户提现流水号
  33. </view>
  34. <view class="agc-detail">
  35. 22398983498
  36. </view>
  37. </view>
  38. <view class="ags-cell u-border-bottom">
  39. <view class="agc-title">
  40. 提现金额
  41. </view>
  42. <view class="agc-detail">
  43. <view class="price">
  44. 458.00
  45. </view>
  46. </view>
  47. </view>
  48. <view class="ags-cell u-border-bottom">
  49. <view class="agc-title">
  50. 分成比例
  51. </view>
  52. <view class="agc-detail">
  53. 5%
  54. </view>
  55. </view>
  56. <view class="ags-cell u-border-bottom">
  57. <view class="agc-title">
  58. 状态
  59. </view>
  60. <view class="agc-detail">
  61. 到账
  62. </view>
  63. </view>
  64. <view class="ags-cell">
  65. <view class="agc-title">
  66. 时间
  67. </view>
  68. <view class="agc-detail">
  69. 2023-11-24 15:45:56
  70. </view>
  71. </view>
  72. <u-gap height="10rpx" bgColor="#F7F7F7"></u-gap>
  73. </view>
  74. <view class="agm-sitem">
  75. <view class="ags-cell u-border-bottom">
  76. <view class="agc-title">
  77. 用户提现流水号
  78. </view>
  79. <view class="agc-detail">
  80. 22398983498
  81. </view>
  82. </view>
  83. <view class="ags-cell u-border-bottom">
  84. <view class="agc-title">
  85. 提现金额
  86. </view>
  87. <view class="agc-detail">
  88. <view class="price">
  89. 458.00
  90. </view>
  91. </view>
  92. </view>
  93. <view class="ags-cell u-border-bottom">
  94. <view class="agc-title">
  95. 分成比例
  96. </view>
  97. <view class="agc-detail">
  98. 5%
  99. </view>
  100. </view>
  101. <view class="ags-cell u-border-bottom">
  102. <view class="agc-title">
  103. 状态
  104. </view>
  105. <view class="agc-detail">
  106. 到账
  107. </view>
  108. </view>
  109. <view class="ags-cell">
  110. <view class="agc-title">
  111. 时间
  112. </view>
  113. <view class="agc-detail">
  114. 2023-11-24 15:45:56
  115. </view>
  116. </view>
  117. <u-gap height="10rpx" bgColor="#F7F7F7"></u-gap>
  118. </view>
  119. <view class="loadmore">
  120. 下拉加载更多
  121. </view>
  122. </view>
  123. </view>
  124. </view>
  125. </template>
  126. <script>
  127. export default {
  128. data() {
  129. return {
  130. }
  131. },
  132. onLoad() {
  133. },
  134. methods: {
  135. cashManager() {
  136. uni.navigateTo({
  137. url: '/pages/cash/cash'
  138. });
  139. }
  140. }
  141. }
  142. </script>
  143. <style lang="scss">
  144. .agent-content {
  145. position: relative;
  146. width: 100%;
  147. height: 1400rpx;
  148. padding-left: 30rpx;
  149. padding-right: 30rpx;
  150. background: url(../../static/index/principal-sheet-bg.png) no-repeat top center;
  151. background-size: 100% 100%;
  152. box-sizing: border-box;
  153. .ag-sign {
  154. position: absolute;
  155. right: 0;
  156. top: 0;
  157. width: 150rpx;
  158. height: 60rpx;
  159. line-height: 60rpx;
  160. padding-left: 40rpx;
  161. border-top-left-radius: 30rpx;
  162. border-bottom-left-radius: 30rpx;
  163. color: #fff;
  164. font-size: 12px;
  165. background: #FCC565;
  166. box-sizing: border-box;
  167. cursor: pointer;
  168. }
  169. .agent-top {
  170. text-align: center;
  171. .ag-num {
  172. display: flex;
  173. justify-content: center;
  174. padding-top: 20rpx;
  175. color: #fff;
  176. .au-font {
  177. margin-top: 45rpx;
  178. font-size: 14px;
  179. margin-right: 10rpx;
  180. line-height: 28rpx;
  181. }
  182. .au-num {
  183. font-size: 30px;
  184. font-weight: bold;
  185. }
  186. }
  187. .age-font {
  188. margin-top: 10rpx;
  189. font-size: 16px;
  190. line-height: 1.5;
  191. color: #fff;
  192. }
  193. .age-line {
  194. margin: 45rpx auto 0;
  195. width: 200rpx;
  196. height: 2rpx;
  197. img {
  198. display: block;
  199. margin: 0 auto;
  200. }
  201. }
  202. .age-wait {
  203. margin-top: 20rpx;
  204. color: #fff;
  205. font-size: 14px;
  206. }
  207. }
  208. .agent-main {
  209. margin-top: 30rpx;
  210. padding-top: 30rpx;
  211. padding-bottom: 30rpx;
  212. background: #fff;
  213. border-top-left-radius: 20rpx;
  214. border-top-right-radius: 20rpx;
  215. .agm-title {
  216. padding-left: 30rpx;
  217. margin-left: 30rpx;
  218. color: #454545;
  219. font-weight: normal;
  220. font-size: 30rpx;
  221. line-height: 1.5;
  222. background: url(../../static/index/title-style.png) no-repeat left center;
  223. background-size: 15rpx 19rpx;
  224. }
  225. .agm-sitem {
  226. .ags-cell {
  227. display: flex;
  228. justify-content: space-between;
  229. height: 90rpx;
  230. line-height: 90rpx;
  231. margin-left: 30rpx;
  232. margin-right: 30rpx;
  233. .agc-title {
  234. height: 90rpx;
  235. line-height: 90rpx;
  236. font-size: 12px;
  237. color: #454545;
  238. }
  239. .agc-detail {
  240. height: 90rpx;
  241. line-height: 90rpx;
  242. font-size: 12px;
  243. color: #666;
  244. .price {
  245. color: #F52F3E;
  246. }
  247. }
  248. }
  249. .u-border-bottom {
  250. border-color: #eee !important
  251. }
  252. }
  253. .loadmore {
  254. width: 172rpx;
  255. margin: 30rpx auto;
  256. padding-right: 20rpx;
  257. color: #1783FF;
  258. font-size: 14px;
  259. background: url(../../static/index/down.png) no-repeat right center;
  260. background-size: 17rpx 20rpx;
  261. cursor: pointer;
  262. }
  263. }
  264. }
  265. </style>