xinelu-applet-ui/pagesC/Healthrecords/Healthrecords.vue
2023-10-07 10:51:01 +08:00

89 lines
1.6 KiB
Vue

<template>
<view class="app">
<view class="content">
<view class="picture">
引导图示
</view>
<view class="health" @tap="gohealth">
前往建档
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {};
},
methods: {
goapponint() {
uni.navigateTo({
url: '/pagesC/Screeningdetails/Screeningdetails'
});
},
gohealth() {
uni.navigateTo({
url: '/pagesC/Filinginformation/Filinginformation'
});
},
},
}
</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;
.picture {
position: absolute;
// display: flex;
// width: 100rpx;
// background-color: red;
// flex-direction: row;
// flex-direction: column;
// justify-content: center;
align-items: center;
height: 100rpx;
top: 50%;
left: 50%;
transform: translateY(-50%);
transform: translateX(-50%);
// align-items: center;
font-size: 28rpx;
font-family: Source Han Sans CN;
font-weight: 500;
color: #868585;
line-height: 38rpx;
}
.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>