confirm.vue 1.8 KB

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