pay.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <template>
  2. <view>
  3. <view class="u-flex-col" style="justify-content: flex-end;align-items: center;margin-top: 100rpx;">
  4. <image src="/static/images/success.png" style="width: 86rpx;height: 86rpx;" mode=""></image>
  5. <view class="success">支付成功</view>
  6. <view class="" style="margin-top: 26rpx;">
  7. <text class="money">¥</text>
  8. <text class="money" style="font-size: 44rpx;">148.32</text>
  9. </view>
  10. <view class="order">
  11. <text class="one">订单编号: 47903234955559</text>
  12. <text class="one" style="color: rgba(10, 109, 205, 1);margin-left: 20rpx;" @click="success">查看订单</text>
  13. </view>
  14. <view class="button">
  15. 完成
  16. </view>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {
  24. id: ''
  25. };
  26. },
  27. onLoad(options) {
  28. this.id = options.id
  29. },
  30. methods: {
  31. success() {
  32. uni.navigateTo({
  33. url: '/pages/success?id=' + this.id
  34. })
  35. }
  36. }
  37. }
  38. </script>
  39. <style lang="scss">
  40. .one {
  41. font-size: 26rpx;
  42. font-family: SFPro, SFPro;
  43. font-weight: 400;
  44. color: #222222;
  45. }
  46. .button {
  47. width: 290rpx;
  48. height: 88rpx;
  49. background: #06A971;
  50. border-radius: 12rpx;
  51. font-size: 32rpx;
  52. font-family: PingFangSC, PingFang SC;
  53. font-weight: 500;
  54. color: #FFFFFF;
  55. margin-top: 550rpx;
  56. line-height: 88rpx;
  57. text-align: center;
  58. }
  59. .order {
  60. margin-top: 62rpx;
  61. }
  62. .success {
  63. font-size: 28rpx;
  64. font-family: PingFangSC, PingFang SC;
  65. font-weight: 400;
  66. color: #222222;
  67. margin-top: 40rpx;
  68. }
  69. .money {
  70. font-size: 26rpx;
  71. font-family: JDZhengHT, JDZhengHT;
  72. font-weight: 400;
  73. color: #222222;
  74. }
  75. </style>