This commit is contained in:
shijingjing
2022-05-13 17:20:38 +08:00
parent 60b5f4401c
commit beb63fec25
2 changed files with 117 additions and 4 deletions

View File

@@ -74,6 +74,12 @@
</div>
</div>
</div>
<div style="height: 60px;"></div>
<div class="btn">
<div @click="submit">提交</div>
</div>
</div>
</template>
@@ -108,6 +114,7 @@ export default {
color: #FF883C;
font-size: 30px;
}
.user_info,
.family_info {
background: #FFF;
@@ -178,9 +185,29 @@ export default {
}
}
.family_info {
margin-top: 16px;
}
.btn {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 120px;
text-align: center;
background: #FFF;
padding: 16px 32px;
box-sizing: border-box;
div {
width: 100%;
height: 88px;
line-height: 88px;
background: #4181FF;
border-radius: 16px;
color: #FFF;
font-size: 34px;
}
}
}
</style>