confirm.vue 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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'
  29. })
  30. },
  31. toindex() {
  32. uni.switchTab({
  33. url: '/pages/index/index'
  34. })
  35. },
  36. }
  37. }
  38. </script>
  39. <style lang="scss" scoped>
  40. .success {
  41. font-family: PingFangTC, PingFangTC;
  42. font-weight: 600;
  43. font-size: 32rpx;
  44. color: #222222;
  45. line-height: 44rpx;
  46. text-align: left;
  47. font-style: normal;
  48. margin-top: 32rpx;
  49. }
  50. .order {
  51. font-family: PingFangSC, PingFang SC;
  52. font-weight: 400;
  53. font-size: 24rpx;
  54. color: #222222;
  55. line-height: 34rpx;
  56. text-align: left;
  57. font-style: normal;
  58. margin-top: 16rpx;
  59. }
  60. .look {
  61. width: 310rpx;
  62. height: 84rpx;
  63. background: #F83224;
  64. border-radius: 42rpx;
  65. margin-top: 100rpx;
  66. font-family: PingFangSC, PingFang SC;
  67. font-weight: 500;
  68. font-size: 30rpx;
  69. color: #FFFFFF;
  70. line-height: 84rpx;
  71. text-align: center;
  72. font-style: normal;
  73. }
  74. .index {
  75. width: 310rpx;
  76. height: 84rpx;
  77. border-radius: 42rpx;
  78. border: 2rpx solid rgba(151, 151, 151, 0.2);
  79. margin-top: 36rpx;
  80. font-family: PingFangSC, PingFang SC;
  81. font-weight: 400;
  82. font-size: 30rpx;
  83. color: #333333;
  84. line-height: 84rpx;
  85. text-align: center;
  86. font-style: normal;
  87. }
  88. </style>