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.

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