index.vue 604 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <view class="stats-container">
  3. <view class="placeholder">
  4. <text class="icon"></text>
  5. <text class="text">统计阿斯达DSDSAFSAD </text>
  6. </view>
  7. </view>
  8. </template>
  9. <script setup>
  10. import {
  11. ref,
  12. onMounted
  13. } from 'vue'
  14. </script>
  15. <style lang="scss" scoped>
  16. .stats-container {
  17. min-height: 100vh;
  18. background: #f5f6f8;
  19. display: flex;
  20. align-items: center;
  21. justify-content: center;
  22. .placeholder {
  23. text-align: center;
  24. .icon {
  25. font-size: 120rpx;
  26. display: block;
  27. margin-bottom: 24rpx;
  28. }
  29. .text {
  30. font-size: 32rpx;
  31. color: #999999;
  32. }
  33. }
  34. }
  35. </style>