This commit is contained in:
2023-09-20 11:43:06 +08:00
parent d3aa0aab83
commit 3cb9bdcf14
2 changed files with 0 additions and 54 deletions

View File

@ -29,9 +29,6 @@
"subPackages": [{
"root": "pagesB",
"pages": [{
"path": "index/index",
"style": {}
}, {
"path": "managefamily/managefamily",
"style": {
"navigationBarTitleText": "管理家庭成员",

View File

@ -1,51 +0,0 @@
<template>
<view class="content">
<view class="text-area">
<text class="title">{{title}}</text>
</view>
</view>
</template>
<script>
export default {
data() {
return {
title: 'Hello'
}
},
onLoad() {
},
methods: {
}
}
</script>
<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.logo {
height: 200rpx;
width: 200rpx;
margin-top: 200rpx;
margin-left: auto;
margin-right: auto;
margin-bottom: 50rpx;
}
.text-area {
display: flex;
justify-content: center;
}
.title {
font-size: 36rpx;
color: #8f8f94;
}
</style>