├── php-api/ # 改造后的PHP接口层 ├── java-ad-service/ # 若依框架微服务(广告+VIP+分账) ├── uniapp-reader/ # UniApp前端项目 │ ├── pages/ # 各端页面 │ └──
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

index.vue 793B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <view class="container">
  3. <h1>欢迎使用哎呀小说</h1>
  4. <p>基础框架已加载!</p>
  5. <p>当前时间: {{ new Date().toLocaleString() }}</p>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. mounted() {
  11. console.log('首页已加载')
  12. }
  13. }
  14. </script>
  15. <style scoped>
  16. page {
  17. height: 100%;
  18. background-color: #fff;
  19. }
  20. .content {
  21. display: flex;
  22. flex-direction: column;
  23. align-items: center;
  24. justify-content: center;
  25. height: 100vh; /* 确保全屏高度 */
  26. }
  27. .logo {
  28. height: 200rpx;
  29. width: 200rpx;
  30. margin-bottom: 50rpx;
  31. }
  32. .text-area {
  33. display: flex;
  34. justify-content: center;
  35. }
  36. .title {
  37. font-size: 36rpx;
  38. color: #333; /* 修改为深色确保可见 */
  39. font-weight: bold;
  40. }
  41. </style>