├── php-api/ # 改造后的PHP接口层 ├── java-ad-service/ # 若依框架微服务(广告+VIP+分账) ├── uniapp-reader/ # UniApp前端项目 │ ├── pages/ # 各端页面 │ └──
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

index.vue 621B

123456789101112131415161718192021222324252627282930313233343536
  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. .content {
  11. display: flex;
  12. flex-direction: column;
  13. align-items: center;
  14. justify-content: center;
  15. }
  16. .logo {
  17. height: 200rpx;
  18. width: 200rpx;
  19. margin-top: 200rpx;
  20. margin-left: auto;
  21. margin-right: auto;
  22. margin-bottom: 50rpx;
  23. }
  24. .text-area {
  25. display: flex;
  26. justify-content: center;
  27. }
  28. .title {
  29. font-size: 36rpx;
  30. color: #8f8f94;
  31. }
  32. </style>