Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. import {
  17. ref,
  18. } from "vue";
  19. import {
  20. onLoad,
  21. } from "@dcloudio/uni-app";
  22. const carid = ref('')
  23. const submit = () => {
  24. console.log(11);
  25. uni.reLaunch({
  26. url: '/pages/index/index'
  27. })
  28. }
  29. onLoad((option) => {
  30. carid.value = option.carid
  31. })
  32. </script>
  33. <style>
  34. page {
  35. width: 100%;
  36. height: 100%;
  37. display: flex;
  38. flex-direction: column;
  39. }
  40. </style>
  41. <style lang="scss" scoped>
  42. .oderPage {
  43. flex: 1;
  44. width: 100%;
  45. .content {
  46. display: flex;
  47. flex-direction: column;
  48. justify-content: center;
  49. align-items: center;
  50. padding: 130rpx;
  51. image {
  52. width: 390rpx;
  53. height: 307rpx;
  54. margin-bottom: 20rpx;
  55. }
  56. .title {
  57. font-size: 38rpx;
  58. font-weight: 600;
  59. font-size: 40rpx;
  60. font-family: Microsoft YaHei UI;
  61. color: #2A2A2A;
  62. }
  63. view {
  64. margin: 15rpx 0;
  65. font-size: 28rpx;
  66. font-family: Microsoft YaHei UI;
  67. font-weight: 400;
  68. color: #717171;
  69. }
  70. }
  71. }
  72. .submit {
  73. background: linear-gradient(to left, #43A1E0 0%, #13E7C1 100%);
  74. width: 670rpx;
  75. height: 80rpx;
  76. line-height: 80rpx;
  77. font-size: 32rpx;
  78. color: #fff;
  79. border-radius: 100rpx;
  80. position: fixed;
  81. bottom: 60rpx;
  82. left: 50%;
  83. transform: translate(-50%);
  84. }
  85. </style>