success.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <template>
  2. <view class="content">
  3. <!-- 自定义导航 -->
  4. <view class="zdyNavBox">
  5. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  6. <view class="zdyNav">
  7. <view class="zdyNavLeft">
  8. <image src="../../static/img/nav_icon_back.png" mode="aspectFit" class="backImg" @click="goback">
  9. </image>
  10. </view>
  11. <view class="zdyNavTitle">救援订单</view>
  12. <view style="width: 50px;"></view>
  13. </view>
  14. </view>
  15. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  16. <view style="height: 44px;"></view>
  17. <view class="duihaoImgBox">
  18. <img src="../../static/img/icon_suc@2x.png" alt="" class="duihaoImg"/>
  19. </view>
  20. <view class="title1">提交成功</view>
  21. <view class="title2">请耐心等待审核结果</view>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. data() {
  27. return {
  28. }
  29. },
  30. onLoad() {
  31. },
  32. created() {
  33. },
  34. methods: {
  35. }
  36. }
  37. </script>
  38. <style scoped>
  39. .duihaoImg{
  40. width: 108rpx;height: 108rpx;
  41. }
  42. .duihaoImgBox{
  43. text-align: center;
  44. padding-top: 60rpx;
  45. }
  46. .title1{
  47. font-weight: 500;padding-top: 18rpx;text-align: center;
  48. color: #3C3C3C;font-size: 32rpx;
  49. line-height: 45rpx;
  50. }
  51. .title2{
  52. font-weight: 400;font-size: 28rpx;
  53. color: #666666;padding-top: 8rpx;
  54. text-align: center;
  55. }
  56. .zdyNavBox {
  57. width: 100vw;
  58. background: #FFFFFF;
  59. position: fixed;
  60. top: 0;
  61. left: 0;
  62. z-index: 99;
  63. }
  64. .zdyNav {
  65. height: 44px;
  66. display: flex;
  67. justify-content: space-between;
  68. align-items: center;
  69. }
  70. .backImg {
  71. width: 44rpx;
  72. height: 44rpx;
  73. margin-left: 10rpx;
  74. margin-right: 20rpx;
  75. }
  76. .homeImg {
  77. width: 44rpx;
  78. height: 44rpx;
  79. }
  80. .zdyNavLeft {
  81. display: flex;
  82. align-items: center;
  83. }
  84. .zdyNavTitle {
  85. height: 44px;
  86. background: #FFFFFF;
  87. text-align: center;
  88. font-size: 34rpx;
  89. line-height: 44px;
  90. }
  91. </style>