| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <view class="content">
- <image class="logo" src="@/static/logo.png"></image>
- <view class="text-area">
- <text class="title">Hello RuoYi</text>
- </view>
- </view>
- </template>
-
- <style scoped>
- page {
- height: 100%;
- background-color: #fff;
- }
- .content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- height: 100vh; /* 确保全屏高度 */
- }
-
- .logo {
- height: 200rpx;
- width: 200rpx;
- margin-bottom: 50rpx;
- }
-
- .text-area {
- display: flex;
- justify-content: center;
- }
-
- .title {
- font-size: 36rpx;
- color: #333; /* 修改为深色确保可见 */
- font-weight: bold;
- }
- </style>
|