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.

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