Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

result-failed.vue 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <template>
  2. <view class="oderPage">
  3. <view class="content">
  4. <image src="../static/image/failed.png" mode="aspectFill"></image>
  5. <view class="title">
  6. 办理失败
  7. </view>
  8. <view class="">
  9. 您办理的业务不成功
  10. </view>
  11. </view>
  12. </view>
  13. <view class="btns">
  14. <button class="back">返回首页</button>
  15. <button class="next">继续办理</button>
  16. </view>
  17. </template>
  18. <script setup lang="ts">
  19. import navBar from "./components/nav-bar.vue"
  20. import {
  21. ref,
  22. reactive
  23. } from "vue";
  24. import {
  25. navTo
  26. } from "@/utils/utils"
  27. let model1 = reactive({
  28. uname: '输入验证码',
  29. phone: '135****9090',
  30. code: ''
  31. })
  32. const getCode = () => {
  33. console.log(123);
  34. }
  35. const submit = () => {
  36. console.log(11);
  37. uni.redirectTo({
  38. });
  39. }
  40. </script>
  41. <style>
  42. page {
  43. width: 100%;
  44. height: 100%;
  45. display: flex;
  46. flex-direction: column;
  47. }
  48. </style>
  49. <style lang="scss" scoped>
  50. .oderPage {
  51. flex: 1;
  52. width: 100%;
  53. .content {
  54. display: flex;
  55. flex-direction: column;
  56. justify-content: center;
  57. align-items: center;
  58. padding: 130rpx;
  59. image {
  60. width: 690rpx;
  61. height: 300rpx;
  62. margin-bottom: 20rpx;
  63. }
  64. .title {
  65. font-size: 38rpx;
  66. font-weight: 600;
  67. font-size: 40rpx;
  68. font-family: Microsoft YaHei UI;
  69. color: #2A2A2A;
  70. }
  71. view {
  72. margin: 15rpx 0;
  73. font-size: 28rpx;
  74. font-family: Microsoft YaHei UI;
  75. font-weight: 400;
  76. color: #717171;
  77. }
  78. }
  79. }
  80. .btns {
  81. width: 100%;
  82. position: fixed;
  83. bottom: 60rpx;
  84. left: 50%;
  85. transform: translate(-50%);
  86. display: flex;
  87. justify-content: space-between;
  88. .back {
  89. width: 311rpx;
  90. height: 81rpx;
  91. background: #FFFFFF;
  92. border: 1px solid #DCDCDC;
  93. box-shadow: 0rpx 4rpx 11rpx 1rpx rgba(223, 223, 223, 0.5);
  94. border-radius: 40rpx;
  95. font-size: 32rpx;
  96. font-family: Microsoft YaHei;
  97. font-weight: 400;
  98. color: #333333;
  99. line-height: 81rpx;
  100. }
  101. .next {
  102. width: 310rpx;
  103. height: 80rpx;
  104. background: linear-gradient(-90deg, #43A1E0 0%, #13E7C1 100%);
  105. box-shadow: 0rpx 4rpx 11rpx 1rpx rgba(223, 223, 223, 0.5);
  106. border-radius: 40rpx;
  107. font-size: 32rpx;
  108. font-family: Microsoft YaHei;
  109. font-weight: 400;
  110. color: #FFFFFF;
  111. line-height: 80rpx;
  112. }
  113. }
  114. </style>