paymentResult.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <template>
  2. <view>
  3. <u-navbar title="支付结果" title-color="#101010" ></u-navbar>
  4. <view class="success-icon">
  5. <image class="img" src="@/assets/img/md-check_circle vRxbRvD.svg" mode=""></image>
  6. </view>
  7. <view class="success-text">
  8. 支付成功
  9. </view>
  10. <!-- 支付详情 -->
  11. <view class="payment-infos">
  12. <view class="item">
  13. <view class="item-title">
  14. 充值金额
  15. </view>
  16. <view class="item-value">
  17. 1000元
  18. </view>
  19. </view>
  20. <view class="item">
  21. <view class="item-title">
  22. 付款方式
  23. </view>
  24. <view class="item-value">
  25. 微信支付
  26. </view>
  27. </view>
  28. <view class="item">
  29. <view class="item-title">
  30. 订单号
  31. </view>
  32. <view class="item-value">
  33. T20230816112557708460925
  34. </view>
  35. </view>
  36. <view class="item">
  37. <view class="item-title">
  38. 创建时间
  39. </view>
  40. <view class="item-value">
  41. 2023-08-20 10:29:00
  42. </view>
  43. </view>
  44. <view class="item">
  45. <view class="item-title">
  46. 支付时间
  47. </view>
  48. <view class="item-value">
  49. 2023-08-20 10:29:30
  50. </view>
  51. </view>
  52. </view>
  53. <!-- 按钮 -->
  54. <view class="btns">
  55. <button class="btn1">完成</button>
  56. <button class="btn2">充值记录</button>
  57. </view>
  58. </view>
  59. </template>
  60. <script>
  61. export default {
  62. data() {
  63. return {
  64. }
  65. },
  66. methods: {
  67. }
  68. }
  69. </script>
  70. <style lang="scss" scoped>
  71. page{
  72. background-color: #fff;
  73. }
  74. .success-icon{
  75. width: 132rpx;
  76. height: 132rpx;
  77. margin: 48rpx auto;
  78. .img{
  79. width: 100%;
  80. height: 100%;
  81. }
  82. }
  83. .success-text{
  84. color: rgba(51,51,51,1);
  85. font-size: 48rpx;
  86. text-align: center;
  87. }
  88. // 支付详情
  89. .payment-infos{
  90. margin-top: 64rpx;
  91. padding: 0 80rpx;
  92. .item{
  93. display: flex;
  94. justify-content: space-between;
  95. margin-bottom: 24rpx;
  96. .item-title{
  97. color: rgb(119,119,119);
  98. }
  99. .item-value{
  100. color: rgb(51,51,51);
  101. }
  102. }
  103. }
  104. // 按钮
  105. .btns{
  106. display: flex;
  107. padding: 0 80rpx;
  108. margin-top: 80rpx;
  109. .btn1{
  110. width: 280rpx;
  111. height: 80rpx;
  112. background-color: rgba(255,255,255,1);
  113. color: rgba(51,51,51,1);
  114. font-size: 32rpx;
  115. border-radius: 50px;
  116. border: 1px solid rgba(223,223,223,1);
  117. }
  118. .btn2{
  119. width: 280rpx;
  120. height: 80rpx;
  121. border-radius: 50px;
  122. background-color: rgba(22,119,255,1);
  123. color: rgba(255,255,255,1);
  124. font-size: 32rpx;
  125. border: 0px solid rgba(187,187,187,1);
  126. }
  127. }
  128. </style>