paySuccess.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <template>
  2. <view class="login-main">
  3. <image src="../../static/images/success.png" mode="" style="width: 300px; margin-left: 25px"></image>
  4. <span style="font-weight: 600; font-size: 44rpx; color: #333333">支付成功</span>
  5. <view style="margin-top: 20px;text-align: center;">
  6. 次日将有返现红包及店铺代金券,可抵现金花
  7. 可进入AI天枢云小程序查看
  8. </view>
  9. <view style="margin-top: 20px">
  10. <button class="btn">查看红包</button>
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. import { requestConfig } from "@/app.config.js";
  16. export default {
  17. data() {
  18. return {
  19. requestConfig: requestConfig,
  20. // 基本案列数据
  21. radiovalue: 0,
  22. };
  23. },
  24. onLoad() { },
  25. methods: {},
  26. };
  27. </script>
  28. <style scoped lang="scss">
  29. .u-radio-group--row {
  30. justify-content: center;
  31. }
  32. .btn {
  33. margin-top: 20px;
  34. width: 600rpx;
  35. height: 90rpx;
  36. background: linear-gradient(275deg, #01cf6c 0%, #07e278 100%);
  37. border-radius: 44rpx;
  38. color: #fff;
  39. }
  40. .radioText {
  41. font-weight: 500;
  42. font-size: 24rpx;
  43. color: #999999;
  44. line-height: 34rpx;
  45. text-align: left;
  46. font-style: normal;
  47. }
  48. .login-main {
  49. background: url("../../static/images/back.png") no-repeat;
  50. background-size: 100% 100%;
  51. width: 100%;
  52. display: flex;
  53. flex-direction: column;
  54. align-items: center;
  55. height: 100vh;
  56. }
  57. .login-contont-button {
  58. .btn {
  59. margin-top: 20px;
  60. width: 90%;
  61. height: 90rpx;
  62. background: linear-gradient(275deg, #01cf6c 0%, #07e278 100%);
  63. border-radius: 44rpx;
  64. color: #fff;
  65. }
  66. }
  67. .login-contont {
  68. width: 100%;
  69. height: 50%;
  70. .login-contont-info {
  71. text-align: center;
  72. .text {
  73. margin-top: 10px;
  74. font-weight: 500;
  75. font-size: 28rpx;
  76. color: #999999;
  77. line-height: 40rpx;
  78. font-style: normal;
  79. }
  80. }
  81. }
  82. .radio {
  83. text-align: center;
  84. margin-top: 10px;
  85. }
  86. .login-main-content {
  87. text-align: center;
  88. padding-top: 100px;
  89. width: 100%;
  90. height: 50%;
  91. .img {
  92. width: 100px;
  93. height: 130px;
  94. }
  95. }
  96. </style>