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

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <view class="content">
  3. <image class="logo" src="@/static/logo.png"></image>
  4. <view class="text-area">
  5. <text class="title">Hello RuoYi</text>
  6. </view>
  7. </view>
  8. </template>
  9. <style scoped>
  10. page {
  11. height: 100%;
  12. background-color: #fff;
  13. }
  14. .content {
  15. display: flex;
  16. flex-direction: column;
  17. align-items: center;
  18. justify-content: center;
  19. height: 100vh; /* 确保全屏高度 */
  20. }
  21. .logo {
  22. height: 200rpx;
  23. width: 200rpx;
  24. margin-bottom: 50rpx;
  25. }
  26. .text-area {
  27. display: flex;
  28. justify-content: center;
  29. }
  30. .title {
  31. font-size: 36rpx;
  32. color: #333; /* 修改为深色确保可见 */
  33. font-weight: bold;
  34. }
  35. </style>