Nessuna descrizione

stationHandover.vue 813B

1234567891011121314151617181920
  1. <script setup lang="ts">
  2. definePage({
  3. title: '站长交接'
  4. })
  5. </script>
  6. <template>
  7. <view class="page min-h-screen bg-gradient-to-br from-blue-50 to-indigo-50 flex items-center justify-center p-8">
  8. <view class="text-center max-w-md">
  9. <view class="w-24 h-24 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-8 animate-pulse">
  10. <wd-icon name="laptop" size="48" color="#3b82f6" />
  11. </view>
  12. <text class="text-2xl font-bold text-gray-800 mb-4 block">功能开发中</text>
  13. <text class="text-gray-500 mb-8 block">该功能正在紧张开发中,敬请期待!</text>
  14. <view class="flex justify-center space-x-4">
  15. <wd-button size="small" type="default" @click="uni.navigateBack()">返回</wd-button>
  16. </view>
  17. </view>
  18. </view>
  19. </template>