pay.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. };
  25. },
  26. methods: {
  27. success() {
  28. uni.navigateTo({
  29. url: '/pages/success'
  30. })
  31. }
  32. }
  33. }
  34. </script>
  35. <style lang="scss">
  36. .one {
  37. font-size: 26rpx;
  38. font-family: SFPro, SFPro;
  39. font-weight: 400;
  40. color: #222222;
  41. }
  42. .button {
  43. width: 290rpx;
  44. height: 88rpx;
  45. background: #06A971;
  46. border-radius: 12rpx;
  47. font-size: 32rpx;
  48. font-family: PingFangSC, PingFang SC;
  49. font-weight: 500;
  50. color: #FFFFFF;
  51. margin-top: 550rpx;
  52. line-height: 88rpx;
  53. text-align: center;
  54. }
  55. .order {
  56. margin-top: 62rpx;
  57. }
  58. .success {
  59. font-size: 28rpx;
  60. font-family: PingFangSC, PingFang SC;
  61. font-weight: 400;
  62. color: #222222;
  63. margin-top: 40rpx;
  64. }
  65. .money {
  66. font-size: 26rpx;
  67. font-family: JDZhengHT, JDZhengHT;
  68. font-weight: 400;
  69. color: #222222;
  70. }
  71. </style>