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

89 lines
1.6 KiB
Vue
Raw Normal View History

2023-09-28 10:11:53 +08:00
<template>
<view class="app">
<view class="content">
2023-10-07 10:51:01 +08:00
<view class="picture">
引导图示
</view>
<view class="health" @tap="gohealth">
2023-09-28 10:11:53 +08:00
前往建档
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {};
},
2023-10-07 10:51:01 +08:00
2023-09-28 10:11:53 +08:00
methods: {
goapponint() {
uni.navigateTo({
url: '/pagesC/Screeningdetails/Screeningdetails'
});
},
2023-10-07 10:51:01 +08:00
gohealth() {
uni.navigateTo({
url: '/pagesC/Filinginformation/Filinginformation'
});
},
2023-09-28 10:11:53 +08:00
},
}
</script>
<style lang="scss">
.app {
height: 100vh;
background-color: #F7F5F5;
padding: 30rpx 0 0 0;
2023-10-07 10:51:01 +08:00
2023-09-28 10:11:53 +08:00
.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;
2023-10-07 10:51:01 +08:00
.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 {
2023-09-28 10:11:53 +08:00
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;
}
2023-10-07 10:51:01 +08:00
}
}
</style>