xinelu-applet-ui/pagesB/threeHighsAndSixDiseases/threeHighsAndSixDiseases.vue

71 lines
1.2 KiB
Vue
Raw Permalink Normal View History

2024-03-13 09:15:38 +08:00
<template>
2024-03-13 09:21:24 +08:00
<view class="app">
2024-03-13 09:15:38 +08:00
<view class="home" @tap='gointegration'>
2024-06-25 18:25:50 +08:00
<image :src="require('@/pagesC/images/zhaohufangan.png')" mode=""></image>
2024-03-13 09:15:38 +08:00
<view class="name">
一体化照护方案
</view>
</view>
<view class="home" @tap='gonurseRecord'>
2024-06-25 18:25:50 +08:00
<image :src="require('@/pagesC/images/zhaohujilu.png')" mode=""></image>
2024-03-13 09:15:38 +08:00
<view class="name">
照护记录
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
};
},
methods: {
//照护方案
gointegration() {
uni.navigateTo({
url: '/pagesC/integration/integration'
})
},
// 照护记录
gonurseRecord() {
uni.navigateTo({
url: '/pagesC/nurseRecord/nurseRecord'
})
},
}
}
</script>
<style lang="scss">
2024-03-13 09:21:24 +08:00
.app {
width: 96%;
height: 300rpx;
background: #FFFFFF;
box-shadow: 0rpx 9rpx 31rpx 9rpx rgba(0, 0, 0, 0.03);
border-radius: 5rpx;
margin: 20rpx auto;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
padding-top: 40rpx;
2024-03-13 09:15:38 +08:00
2024-03-13 09:21:24 +08:00
.home {
width: 32%;
.name {
text-align: center;
margin: 14rpx 0 0 0;
}
image {
display: block;
margin: 0 auto;
width: 102rpx;
height: 102rpx;
}
}
}
2024-03-13 09:15:38 +08:00
</style>