confirm.vue 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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">{{i18n.Paymentsuccess}}</view>
  8. <view class="order">{{i18n.MyOrder}}</view>
  9. <view class="look" @click="orderinfo">{{i18n.Vieworder}}</view>
  10. <view class="index" @click="toindex">{{i18n.Backtohomepage}}</view>
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. data() {
  17. return {
  18. };
  19. },
  20. computed: {
  21. i18n() {
  22. return this.$t('index')
  23. }
  24. },
  25. methods: {
  26. orderinfo() {
  27. // uni.reLaunch({
  28. // url: '/pageC/orderForm/orderForm?follow=' + ''
  29. // })
  30. uni.switchTab({
  31. url:'/pages/mine/mine'
  32. })
  33. },
  34. toindex() {
  35. uni.switchTab({
  36. url: '/pages/index/index'
  37. })
  38. },
  39. }
  40. }
  41. </script>
  42. <style lang="scss" scoped>
  43. .success {
  44. font-family: PingFangTC, PingFangTC;
  45. font-weight: 600;
  46. font-size: 32rpx;
  47. color: #222222;
  48. line-height: 44rpx;
  49. text-align: left;
  50. font-style: normal;
  51. margin-top: 32rpx;
  52. }
  53. .order {
  54. font-family: PingFangSC, PingFang SC;
  55. font-weight: 400;
  56. font-size: 24rpx;
  57. color: #222222;
  58. line-height: 34rpx;
  59. text-align: left;
  60. font-style: normal;
  61. margin-top: 16rpx;
  62. }
  63. .look {
  64. width: 310rpx;
  65. height: 84rpx;
  66. background: #F83224;
  67. border-radius: 42rpx;
  68. margin-top: 100rpx;
  69. font-family: PingFangSC, PingFang SC;
  70. font-weight: 500;
  71. font-size: 30rpx;
  72. color: #FFFFFF;
  73. line-height: 84rpx;
  74. text-align: center;
  75. font-style: normal;
  76. }
  77. .index {
  78. width: 310rpx;
  79. height: 84rpx;
  80. border-radius: 42rpx;
  81. border: 2rpx solid rgba(151, 151, 151, 0.2);
  82. margin-top: 36rpx;
  83. font-family: PingFangSC, PingFang SC;
  84. font-weight: 400;
  85. font-size: 30rpx;
  86. color: #333333;
  87. line-height: 84rpx;
  88. text-align: center;
  89. font-style: normal;
  90. }
  91. </style>