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.

309 lines
8.1 KiB

  1. <template>
  2. <view class="app-container" style="background-color: #f7f7f7;">
  3. <view class="page-bg">
  4. <view class="withdrawal-management">
  5. <navigator hover-class="none" url="/pages/withdrawal-management/withdrawal-management">
  6. <button class="withdrawal-button">提现管理</button>
  7. </navigator>
  8. </view>
  9. <view class="withdrawal-limit">
  10. <view class="limit-symbol"></view>
  11. <view class="withdrawal-volume">458.00</view>
  12. </view>
  13. <view class="Withdrawable-text">可提现</view>
  14. <view class="withdrawal-content">
  15. <image class="withdrawal-line" src="https://common-1257637852.cos.ap-guangzhou.myqcloud.com/paidui-pay/withdrawal-line.png" />
  16. </view>
  17. <view class="to-be-credited">待入账200.00</view>
  18. <view class="queuing-information-content">
  19. <view class="recent-orders-title">
  20. <image class="title-stlye" src="https://common-1257637852.cos.ap-guangzhou.myqcloud.com/paidui-pay/title-stlye.png" />
  21. <view class="title-text">最近排队信息</view>
  22. </view>
  23. <view class="information-item">
  24. <view class="item-content">
  25. <view class="item-content-titie">李姐烧烤普罗旺斯店</view>
  26. <view class="item-content-text">购买时排队<span class="style-text">10</span>当前<span class="style-text">2</span></view>
  27. </view>
  28. <view class="item-content">
  29. <view class="item-content-titie">李姐烧烤青秀万达店</view>
  30. <view class="item-content-text">购买时排队<span class="style-text">200</span>当前<span class="style-text">48</span></view>
  31. </view>
  32. <navigator hover-class="none" url="/pages/queuing-information/queuing-information">
  33. <view class="see-more-content">
  34. <view class="see-more-text">查看更多</view>
  35. <view class="see-more-icon"></view>
  36. </view>
  37. </navigator>
  38. </view>
  39. </view>
  40. <view class="ordering-information">
  41. <view class="ordering-information-item">
  42. <view class="order-number">订单编号 22398983498</view>
  43. <view class="ordering-item-content">
  44. <view class="ordering-pic">
  45. <image class="order-chart" src="https://common-1257637852.cos.ap-guangzhou.myqcloud.com/paidui-pay/order-chart.png" />
  46. </view>
  47. <view class="ordering-text">
  48. <view class="ordering-text-title">李姐烧烤(普罗旺斯店)</view>
  49. <view class="amount-of-money">金额<span class="price-style">450.00</span></view>
  50. <view class="order-time">订单时间2023-10-24 20:39:56</view>
  51. </view>
  52. </view>
  53. </view>
  54. <view class="ordering-information-item">
  55. <view class="order-number">订单编号 22398983498</view>
  56. <view class="ordering-item-content">
  57. <view class="ordering-pic">
  58. <image class="order-chart" src="https://common-1257637852.cos.ap-guangzhou.myqcloud.com/paidui-pay/order-chart.png" />
  59. </view>
  60. <view class="ordering-text">
  61. <view class="ordering-text-title">李姐烧烤(普罗旺斯店)</view>
  62. <view class="amount-of-money">金额<span class="price-style">450.00</span></view>
  63. <view class="order-time">订单时间2023-10-24 20:39:56</view>
  64. </view>
  65. </view>
  66. </view>
  67. <view class="ordering-information-item">
  68. <view class="order-number">订单编号 22398983498</view>
  69. <view class="ordering-item-content">
  70. <view class="ordering-pic">
  71. <image class="order-chart" src="https://common-1257637852.cos.ap-guangzhou.myqcloud.com/paidui-pay/order-chart.png" />
  72. </view>
  73. <view class="ordering-text">
  74. <view class="ordering-text-title">李姐烧烤(普罗旺斯店)</view>
  75. <view class="amount-of-money">金额<span class="price-style">450.00</span></view>
  76. <view class="order-time">订单时间2023-10-24 20:39:56</view>
  77. </view>
  78. </view>
  79. </view>
  80. </view>
  81. </view>
  82. </view>
  83. </template>
  84. <script>
  85. export default {
  86. data() {
  87. return {
  88. }
  89. },
  90. methods: {
  91. }
  92. }
  93. </script>
  94. <style>
  95. .uni-page-body {
  96. background: #f7f7f7;
  97. }
  98. .page-bg{
  99. height: 525rpx;
  100. background: url("https://common-1257637852.cos.ap-guangzhou.myqcloud.com/paidui-pay/withdrawal-bg.png") no-repeat center center;
  101. background-size:cover;
  102. padding: 0 30rpx;
  103. }
  104. .withdrawal-management{
  105. position: absolute;
  106. top: 0;
  107. right: 0;
  108. }
  109. button.withdrawal-button{
  110. width: 160rpx;
  111. height: 60rpx;
  112. line-height: 60rpx;
  113. font-family: PingFangSC-Regular, sans-serif;
  114. font-size: 24rpx;
  115. color: #fff;
  116. background: #FCC565;
  117. margin: 0;
  118. border-top-left-radius: 0;
  119. border-top-right-radius: 0;
  120. border-bottom-right-radius: 0;
  121. border-bottom-left-radius: 30rpx;
  122. }
  123. button::after{
  124. border: none;
  125. }
  126. .withdrawal-limit{
  127. display: flex;
  128. justify-content: center;
  129. align-items: baseline;
  130. padding-top: 66rpx;
  131. text-align: center;
  132. }
  133. .limit-symbol{
  134. font-family: PingFangSC-Regular, sans-serif;
  135. font-size: 30rpx;
  136. color: #fff;
  137. }
  138. .withdrawal-volume{
  139. font-family: "Din";
  140. font-size: 60rpx;
  141. color: #fff;
  142. font-weight: bold;
  143. margin-left: 10rpx;
  144. }
  145. .Withdrawable-text{
  146. font-family: PingFangSC-Regular, sans-serif;
  147. font-size: 30rpx;
  148. color: #fff;
  149. text-align: center;
  150. margin-top: 30rpx;
  151. }
  152. .withdrawal-content{
  153. display: flex;
  154. justify-content: center;
  155. align-items: center;
  156. padding: 30rpx 0;
  157. }
  158. image.withdrawal-line{
  159. text-align: center;
  160. width: 200rpx;
  161. height: 1rpx;
  162. background-size: cover;
  163. }
  164. .to-be-credited{
  165. font-family: PingFangSC-Regular, sans-serif;
  166. font-size: 30rpx;
  167. color: #fff;
  168. text-align: center;
  169. }
  170. .queuing-information-content{
  171. background: #fff;
  172. border-radius: 20rpx;
  173. padding: 30rpx 0;
  174. margin-top: 30rpx;
  175. }
  176. .recent-orders-title {
  177. display: flex;
  178. justify-content: left;
  179. align-items: center;
  180. padding: 0 30rpx;
  181. border-bottom: 1rpx solid #eeeeee;
  182. padding-bottom: 30rpx;
  183. }
  184. image.title-stlye {
  185. width: 15rpx;
  186. height: 19rpx;
  187. background-size: cover;
  188. margin-right: 20rpx;
  189. }
  190. .title-text {
  191. font-family: PingFangSC-Regular, sans-serif;
  192. font-size: 30rpx;
  193. color: #454545;
  194. font-weight: bold;
  195. }
  196. .information-item{
  197. padding: 0 30rpx;
  198. }
  199. .item-content{
  200. display: flex;
  201. justify-content: left;
  202. align-items: center;
  203. margin-top: 30rpx;
  204. }
  205. .item-content-titie{
  206. font-family: PingFangSC-Regular, sans-serif;
  207. font-size: 24rpx;
  208. color: #454545;
  209. font-weight: bold;
  210. }
  211. .item-content-text{
  212. font-family: PingFangSC-Regular, sans-serif;
  213. font-size: 24rpx;
  214. color: #666;
  215. }
  216. span.style-text{
  217. font-family: PingFangSC-Regular, sans-serif;
  218. font-size: 24rpx;
  219. color: #F52F3E;
  220. font-weight: bold;
  221. padding: 0 15rpx;
  222. }
  223. .see-more-content{
  224. display: flex;
  225. justify-content: center;
  226. align-items: center;
  227. margin-top: 30rpx;
  228. }
  229. .see-more-text{
  230. font-family: PingFangSC-Regular, sans-serif;
  231. font-size: 24rpx;
  232. color: #F52F3E;
  233. }
  234. .see-more-icon{
  235. width: 0;
  236. height: 0;
  237. border-left: 14rpx solid #FDD5D8;
  238. border-top: 14rpx solid transparent;
  239. border-bottom: 14rpx solid transparent;
  240. margin-left: 10rpx;
  241. border-radius: 10rpx;
  242. }
  243. .ordering-information{
  244. padding: 30rpx;
  245. background: #fff;
  246. margin-top: 20rpx;
  247. border-radius: 20rpx;
  248. padding-top: 0;
  249. }
  250. .order-number {
  251. font-family: PingFangSC-Regular, sans-serif;
  252. font-size: 26rpx;
  253. color: #454545;
  254. padding: 30rpx 0;
  255. }
  256. .ordering-pic {
  257. width: 120rpx;
  258. height: 120rpx;
  259. background-size: cover;
  260. border-radius: 15rpx;
  261. }
  262. image.order-chart {
  263. width: 120rpx;
  264. height: 120rpx;
  265. background-size: cover;
  266. border-radius: 15rpx;
  267. }
  268. .ordering-text {
  269. margin-left: 30rpx;
  270. }
  271. .ordering-text-title {
  272. font-family: PingFangSC-Regular, sans-serif;
  273. font-size: 30rpx;
  274. color: #454545;
  275. }
  276. .amount-of-money {
  277. font-family: PingFangSC-Regular, sans-serif;
  278. font-size: 24rpx;
  279. color: #999;
  280. padding: 10rpx 0;
  281. }
  282. span.price-style {
  283. font-family: PingFangSC-Regular, sans-serif;
  284. font-size: 24rpx;
  285. color: #F52F3E;
  286. }
  287. .order-time {
  288. font-family: PingFangSC-Regular, sans-serif;
  289. font-size: 24rpx;
  290. color: #999;
  291. }
  292. .ordering-item-content{
  293. display: flex;
  294. justify-content: left;
  295. align-items: center;
  296. border-bottom: 1rpx solid #eee;
  297. padding-bottom: 30rpx;
  298. }
  299. </style>