2026-04-03 08:38:34 +08:00
|
|
|
|
<!-- 底部导航栏:首页 -->
|
2026-03-11 15:03:49 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<view class="content">
|
2026-03-17 10:49:59 +08:00
|
|
|
|
首页
|
2026-03-11 15:03:49 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
2026-03-17 10:49:59 +08:00
|
|
|
|
export default {
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
title: 'Hello'
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
onLoad() {
|
2026-03-11 15:03:49 +08:00
|
|
|
|
|
2026-03-17 10:49:59 +08:00
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
2026-03-11 15:03:49 +08:00
|
|
|
|
|
|
|
|
|
|
}
|
2026-03-17 10:49:59 +08:00
|
|
|
|
}
|
2026-03-11 15:03:49 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style>
|
2026-03-17 10:49:59 +08:00
|
|
|
|
.content {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
}
|
2026-03-11 15:03:49 +08:00
|
|
|
|
|
2026-03-17 10:49:59 +08:00
|
|
|
|
.logo {
|
|
|
|
|
|
height: 200rpx;
|
|
|
|
|
|
width: 200rpx;
|
|
|
|
|
|
margin-top: 200rpx;
|
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
|
margin-bottom: 50rpx;
|
|
|
|
|
|
}
|
2026-03-11 15:03:49 +08:00
|
|
|
|
|
2026-03-17 10:49:59 +08:00
|
|
|
|
.text-area {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
}
|
2026-03-11 15:03:49 +08:00
|
|
|
|
|
2026-03-17 10:49:59 +08:00
|
|
|
|
.title {
|
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
|
color: #8f8f94;
|
|
|
|
|
|
}
|
2026-03-11 15:03:49 +08:00
|
|
|
|
</style>
|