xinelu-applet-ui/pagesC/Healthrecords/Healthrecords.vue

56 lines
929 B
Vue
Raw Normal View History

2023-09-28 10:11:53 +08:00
<template>
<view class="app">
<view class="content">
<view class="health">
前往建档
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {};
},
methods: {
goapponint() {
uni.navigateTo({
url: '/pagesC/Screeningdetails/Screeningdetails'
});
},
},
}
</script>
<style lang="scss">
.app {
height: 100vh;
background-color: #F7F5F5;
padding: 30rpx 0 0 0;
.content {
background-color: #fff;
position: relative;
width: 95%;
height: 100%;
box-shadow: 0rpx 9rpx 31rpx 9rpx rgba(0, 0, 0, 0.03);
border-radius: 5rpx;
margin: 15rpx auto;
.health{
margin: 0 auto;
left: 50%;
transform: translateX(-50%);
width: 496rpx;
position: absolute;
height: 61rpx;
background: #26A888;
border-radius: 5rpx;
bottom: 5%;
line-height: 61rpx;
text-align: center;
color: #fff;
}
}}
</style>