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ů.

result.vue 1.6KB

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