success.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <template>
  2. <view class="page">
  3. <!-- 顶部导航 -->
  4. <u-navbar title-width='300' title='' :is-back="true" :border-bottom="false"
  5. :background="{background:'rgba(0,0,0,0)'}" :isFixed="true"></u-navbar>
  6. <view class="index-navbar">
  7. <view class="" style="position: relative;;">
  8. <view class="back"></view>
  9. </view>
  10. </view>
  11. <view class="success">
  12. 交易已完成
  13. </view>
  14. <view class="order">
  15. </view>
  16. <view class="info">
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {
  24. };
  25. },
  26. methods: {
  27. toorder() {
  28. uni.navigateTo({
  29. url: '/pages/mine/myorder'
  30. })
  31. },
  32. tocard() {
  33. uni.navigateTo({
  34. url: '/pages/mine/card'
  35. })
  36. },
  37. tosetting() {
  38. uni.navigateTo({
  39. url: '/pages/mine/setting'
  40. })
  41. }
  42. }
  43. }
  44. </script>
  45. <style lang="scss">
  46. .page {
  47. height: 95vh;
  48. position: relative;
  49. z-index: 1;
  50. background: #F4F5F7;
  51. padding: 0 28rpx;
  52. }
  53. .order {
  54. width: 694rpx;
  55. height: 592rpx;
  56. background: #FFFFFF;
  57. border-radius: 20rpx;
  58. padding: 30rpx 20rpx;
  59. }
  60. .success {
  61. font-size: 40rpx;
  62. font-family: PingFangSC, PingFang SC;
  63. font-weight: 500;
  64. color: #FFFFFF;
  65. margin-top: 12rpx;
  66. margin-bottom: 38rpx;
  67. }
  68. .info{
  69. width: 694rpx;
  70. height: 420rpx;
  71. background: #FFFFFF;
  72. border-radius: 20rpx;
  73. margin-top: 20rpx;
  74. padding: 30rpx 20rpx;
  75. }
  76. .index-navbar {
  77. position: fixed;
  78. top: 0;
  79. left: 0;
  80. width: 100vw;
  81. z-index: -1;
  82. // overflow: hidden;
  83. .back {
  84. position: absolute;
  85. top: 0;
  86. left: 0;
  87. z-index: -1;
  88. width: 750rpx;
  89. height: 636rpx;
  90. background: linear-gradient(180deg, #06A971 0%, #F4F4F4 100%);
  91. }
  92. }
  93. </style>