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.

result.vue 791B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <view class="main">
  3. <image class="icon-success" :src="`${$imgUrl}bluetooth/device-active-success.png`"></image>
  4. <view class="title">续期失败!</view>
  5. </view>
  6. <button class="ui-btn" @click="submit">完成</button>
  7. </template>
  8. <script setup lang="ts">
  9. const submit = () => {
  10. uni.switchTab({
  11. url: '/pages/index/index'
  12. })
  13. }
  14. </script>
  15. <style lang="scss" scoped>
  16. .main{
  17. width: 560rpx;
  18. margin: 0 auto;
  19. padding: 25rpx 20rpx 55rpx;
  20. text-align: center;
  21. .top{
  22. text-align: right;
  23. .icon-close{
  24. width: 48rpx;
  25. height: 48rpx;
  26. }
  27. }
  28. .icon-success{
  29. width: 500rpx;
  30. height: 320rpx;
  31. margin-top: 22rpx;
  32. }
  33. .title{
  34. color: #333333;
  35. font-size: 40rpx;
  36. font-weight: 600;
  37. text-align: center;
  38. margin-top: 55rpx;
  39. }
  40. }
  41. </style>