Files
hazardousWaste_app/pages/index/index.vue

51 lines
574 B
Vue
Raw Normal View History

2026-04-03 08:38:34 +08:00
<!-- 底部导航栏首页 -->
2026-03-11 15:03:49 +08:00
<template>
<view class="content">
首页
2026-03-11 15:03:49 +08:00
</view>
</template>
<script>
export default {
data() {
return {
title: 'Hello'
}
},
onLoad() {
2026-03-11 15:03:49 +08:00
},
methods: {
2026-03-11 15:03:49 +08:00
}
}
2026-03-11 15:03:49 +08:00
</script>
<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
2026-03-11 15:03:49 +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
.text-area {
display: flex;
justify-content: center;
}
2026-03-11 15:03:49 +08:00
.title {
font-size: 36rpx;
color: #8f8f94;
}
2026-03-11 15:03:49 +08:00
</style>