You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

log-off-result.vue 1.7KB

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