Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

popup-device-active-success.vue 814B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <view class="main">
  3. <view class="top">
  4. <image class="icon-close" :src="`${$imgUrl}common/icon-close.png`" @click="emit('cancel')"></image>
  5. </view>
  6. <image class="icon-success" :src="`${$imgUrl}bluetooth/device-active-success.png`"></image>
  7. <view class="title">设备激活成功!</view>
  8. </view>
  9. </template>
  10. <script setup lang="ts">
  11. const emit = defineEmits(['cancel'])
  12. </script>
  13. <style lang="scss" scoped>
  14. .main{
  15. width: 560rpx;
  16. padding: 25rpx 20rpx 55rpx;
  17. text-align: center;
  18. .top{
  19. text-align: right;
  20. .icon-close{
  21. width: 48rpx;
  22. height: 48rpx;
  23. }
  24. }
  25. .icon-success{
  26. width: 500rpx;
  27. height: 320rpx;
  28. margin-top: 22rpx;
  29. }
  30. .title{
  31. color: #333333;
  32. font-size: 40rpx;
  33. font-weight: 600;
  34. text-align: center;
  35. margin-top: 55rpx;
  36. }
  37. }
  38. </style>