Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

log-off-result.vue 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <template>
  2. <view class="oderPage">
  3. <view class="content">
  4. <image :src="`${$imgUrl}ETCcancellation/bg1.png`" mode=""></image>
  5. <view class="title">
  6. 待审核
  7. </view>
  8. <view class="">
  9. 请到【查询服务】的【业务审核查询】查看进度
  10. </view>
  11. </view>
  12. </view>
  13. <button class="submit" @click="submit">返回</button>
  14. </template>
  15. <script setup lang="ts">
  16. const submit = () => {
  17. let routes = getCurrentPages();
  18. uni.navigateBack({
  19. delta: routes.length - 2
  20. });
  21. }
  22. </script>
  23. <style>
  24. page {
  25. width: 100%;
  26. height: 100%;
  27. display: flex;
  28. flex-direction: column;
  29. }
  30. </style>
  31. <style lang="scss" scoped>
  32. .oderPage {
  33. flex: 1;
  34. width: 100%;
  35. .content {
  36. display: flex;
  37. flex-direction: column;
  38. justify-content: center;
  39. align-items: center;
  40. padding: 130rpx;
  41. image {
  42. width: 390rpx;
  43. height: 307rpx;
  44. margin-bottom: 20rpx;
  45. }
  46. .title {
  47. font-size: 38rpx;
  48. font-weight: 600;
  49. font-size: 40rpx;
  50. font-family: Microsoft YaHei UI;
  51. color: #2A2A2A;
  52. }
  53. view {
  54. margin: 15rpx 0;
  55. font-size: 28rpx;
  56. font-family: Microsoft YaHei UI;
  57. font-weight: 400;
  58. color: #717171;
  59. }
  60. }
  61. }
  62. .submit {
  63. background: linear-gradient(to left, #43A1E0 0%, #13E7C1 100%);
  64. width: 670rpx;
  65. height: 80rpx;
  66. line-height: 80rpx;
  67. font-size: 32rpx;
  68. color: #fff;
  69. border-radius: 100rpx;
  70. position: fixed;
  71. bottom: 60rpx;
  72. left: 50%;
  73. transform: translate(-50%);
  74. }
  75. </style>