confirm.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <template>
  2. <!-- 支付结果 -->
  3. <view style="background: #fff;height: 100vh;">
  4. <view class="u-row-center" style="display: flex;align-items: center;flex-direction: column;">
  5. <image src="/pageA/static/images/success.png" style="width: 70rpx;height: 70rpx;margin-top: 152rpx;"
  6. mode=""></image>
  7. <view class="success">支付成功</view>
  8. <view class="order">可在“个人中心-我的订单”查看</view>
  9. <view class="look">查看订单</view>
  10. <view class="index" @click="toindex">返回首页</view>
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. data() {
  17. return {
  18. };
  19. },
  20. methods: {
  21. toindex() {
  22. uni.switchTab({
  23. url: '/pages/index/index'
  24. })
  25. }
  26. }
  27. }
  28. </script>
  29. <style lang="scss" scoped>
  30. .success {
  31. font-family: PingFangTC, PingFangTC;
  32. font-weight: 600;
  33. font-size: 32rpx;
  34. color: #222222;
  35. line-height: 44rpx;
  36. text-align: left;
  37. font-style: normal;
  38. margin-top: 32rpx;
  39. }
  40. .order {
  41. font-family: PingFangSC, PingFang SC;
  42. font-weight: 400;
  43. font-size: 24rpx;
  44. color: #222222;
  45. line-height: 34rpx;
  46. text-align: left;
  47. font-style: normal;
  48. margin-top: 16rpx;
  49. }
  50. .look {
  51. width: 310rpx;
  52. height: 84rpx;
  53. background: #F83224;
  54. border-radius: 42rpx;
  55. margin-top: 100rpx;
  56. font-family: PingFangSC, PingFang SC;
  57. font-weight: 500;
  58. font-size: 30rpx;
  59. color: #FFFFFF;
  60. line-height: 84rpx;
  61. text-align: center;
  62. font-style: normal;
  63. }
  64. .index {
  65. width: 310rpx;
  66. height: 84rpx;
  67. border-radius: 42rpx;
  68. border: 2rpx solid rgba(151, 151, 151, 0.2);
  69. margin-top: 36rpx;
  70. font-family: PingFangSC, PingFang SC;
  71. font-weight: 400;
  72. font-size: 30rpx;
  73. color: #333333;
  74. line-height: 84rpx;
  75. text-align: center;
  76. font-style: normal;
  77. }
  78. </style>