succeed1.vue 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <template>
  2. <view class="succeed">
  3. <view class="icon"></view>
  4. <view class="text">订单支付成功</view>
  5. <!-- #ifdef MP-WEIXIN -->
  6. <view class="focus"> 更多优惠,请关注我们的公众号 </view>
  7. <official-account class="official"></official-account>
  8. <!-- #endif -->
  9. <!-- <view class="menu">
  10. <navigator class="text1" url="/pages/index/index">回到首页</navigator>
  11. <navigator class="text2" url="/pages/confirm/confirm">回到首页</navigator>
  12. </view> -->
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. }
  20. },
  21. methods: {
  22. }
  23. }
  24. </script>
  25. <style lang="scss">
  26. page {
  27. width: 100vw;
  28. height: 100vh;
  29. .succeed {
  30. text-align: center;
  31. .icon {
  32. margin-top: 300rpx;
  33. display: inline-block;
  34. width: 181rpx;
  35. height: 181rpx;
  36. background: url(../../static/icon/cg.2x.png) no-repeat 0px 0px;
  37. background-size: 100% 100%;
  38. }
  39. .text {
  40. margin-top: 20rpx;
  41. font-size: 34rpx;
  42. font-weight: 600;
  43. }
  44. .focus {
  45. margin-top: 100rpx;
  46. display: inline-block;
  47. font-weight: 500;
  48. height: 40rpx;
  49. font-size: 28rpx;
  50. color: #c4c4c4;
  51. line-height: 40rpx;
  52. }
  53. .official {
  54. display: inline-block;
  55. width: 700rpx;
  56. text-align: left;
  57. }
  58. // .menu {
  59. // width: 600rpx;
  60. // height: 150rpx;
  61. // background: #ffffff;
  62. // box-shadow: 0px 2rpx 10rpx 5rpx rgba(227, 227, 227, 0.5);
  63. // border-radius: 20rpx;
  64. // display: flex;
  65. // flex-direction: row;
  66. // justify-content: space-around;
  67. // align-items: center;
  68. // position: absolute;
  69. // top: 50vh;
  70. // left: 10vw;
  71. // navigator {
  72. // height: 150rpx;
  73. // font-size: 30rpx;
  74. // font-weight: 500;
  75. // color: #111111;
  76. // line-height: 150rpx;
  77. // }
  78. // }
  79. }
  80. }
  81. </style>