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 784B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <view class="main">
  3. <image class="icon-success" :src="`${$imgUrl}common/etc-status-success.png`" mode="heightFix"></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. height: 320rpx;
  30. margin-top: 22rpx;
  31. }
  32. .title{
  33. color: #333333;
  34. font-size: 40rpx;
  35. font-weight: 600;
  36. text-align: center;
  37. margin-top: 55rpx;
  38. }
  39. }
  40. </style>