payResult.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <template>
  2. <view>
  3. <u-navbar title="充值结果" :is-back="false"></u-navbar>
  4. <view class="paySuccess">
  5. <u-icon name="chenggong" custom-prefix="custom-icon" size="180" color="#00B962"></u-icon>
  6. <view class="title oldTextjp" oldstyle="font-size: 20px;">支付完成{{detail.payStatusStr}}</view>
  7. <view class="payPrice">
  8. <!-- <font>{{detail.totalFee}}</font><span>元</span> -->
  9. </view>
  10. <p class="oldTextjp2" oldstyle="font-size: 16px;"></p><!-- {{detail.payNameStr}} -->
  11. </view>
  12. <view class="paySuccess-btn">
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. import * as API from '@/apis/finance.js'
  18. export default {
  19. data() {
  20. return {
  21. detail: {},
  22. id: "",
  23. }
  24. },
  25. onLoad(op) {
  26. },
  27. onReady() {
  28. },
  29. methods: {
  30. }
  31. }
  32. </script>
  33. <style>
  34. page {
  35. background-color: #fff;
  36. }
  37. </style>
  38. <style lang="scss" scoped>
  39. .paySuccess {
  40. text-align: center;
  41. padding: 50px 0;
  42. .title {
  43. font-size: 20px;
  44. margin-top: 20px;
  45. }
  46. .payPrice {
  47. display: flex;
  48. align-items: flex-end;
  49. justify-content: center;
  50. font {
  51. font-size: 36px;
  52. line-height: 36px;
  53. }
  54. margin-top: 20px;
  55. }
  56. p {
  57. color: #999;
  58. margin-top: 4px;
  59. }
  60. }
  61. .paySuccess-btn {
  62. display: flex;
  63. justify-content: space-between;
  64. padding: 0 40px;
  65. }
  66. .success-btn1 {
  67. color: #BBBBBB !important;
  68. background-color: #fff !important;
  69. flex: 0.4;
  70. span {
  71. color: #333;
  72. }
  73. }
  74. .success-btn2 {
  75. background-color: #00B962 !important;
  76. flex: 0.4;
  77. border-color: #00B962 !important;
  78. color: #fff !important;
  79. }
  80. </style>