Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vor 2 Jahren
vor 2 Jahren
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <template>
  2. <view class="oderPage">
  3. <view class="content">
  4. <image :src="`${$imgUrl}ETCcancellation/bg1.png`" mode="aspectFill"></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. let model1 = reactive({
  25. uname: '输入验证码',
  26. phone: '135****9090',
  27. code: ''
  28. })
  29. const getCode = () => {
  30. console.log(123);
  31. }
  32. const submit=()=>{
  33. console.log(11);
  34. uni.redirectTo({
  35. // url: '/pages/service/service'
  36. });
  37. }
  38. </script>
  39. <style>
  40. page {
  41. width: 100%;
  42. height: 100%;
  43. display: flex;
  44. flex-direction: column;
  45. }
  46. </style>
  47. <style lang="scss" scoped>
  48. .oderPage {
  49. flex: 1;
  50. width: 100%;
  51. .content {
  52. display: flex;
  53. flex-direction: column;
  54. justify-content: center;
  55. align-items: center;
  56. padding: 130rpx;
  57. image {
  58. width: 390rpx;
  59. height: 307rpx;
  60. margin-bottom: 20rpx;
  61. }
  62. .title {
  63. font-size: 38rpx;
  64. font-weight: 600;
  65. font-size: 40rpx;
  66. font-family: Microsoft YaHei UI;
  67. color: #2A2A2A;
  68. }
  69. view {
  70. margin: 15rpx 0;
  71. font-size: 28rpx;
  72. font-family: Microsoft YaHei UI;
  73. font-weight: 400;
  74. color: #717171;
  75. }
  76. }
  77. }
  78. .submit {
  79. background: linear-gradient(to left, #43A1E0 0%, #13E7C1 100%);
  80. width: 670rpx;
  81. height: 80rpx;
  82. line-height: 80rpx;
  83. font-size: 32rpx;
  84. color: #fff;
  85. border-radius: 100rpx;
  86. position: fixed;
  87. bottom: 60rpx;
  88. left: 50%;
  89. transform: translate(-50%);
  90. }
  91. </style>