nurseWeChatAppletUI/pages/diseasemanagement/diseasemanagement.vue

181 lines
3.7 KiB
Vue
Raw Normal View History

<template>
<view class="app">
2023-03-06 11:41:01 +08:00
<!-- <u-tabs :list="tabList" :current="tabcurrent" @change="change"></u-tabs>
2023-02-24 15:45:25 +08:00
<view class="items">
<view class="item" @tap='godiseasemanagement'>
<image src="../../static/zbglzbgl.png" mode=""></image>
<view class="title">
专病管理云社区
</view>
</view>
2023-02-24 16:08:06 +08:00
<view class="item" @tap='gogeriatricdisease'>
2023-02-24 15:45:25 +08:00
<image src="../../static/lnb.png" mode=""></image>
<view class="title">
国家老年病中心
</view>
</view>
2023-03-06 11:41:01 +08:00
</view> -->
<view class="concent">
<view class="background">
<image src="/static/logo.png" mode=""></image>
<view>
<view class="detailed">
2023-03-06 11:47:17 +08:00
专病管理简介:慢性病已成为我国老年人健康的最大威胁建立标准化的慢病专病并发症防治中心建立规范化的导诊流程建立慢病专病综合电子档案对于慢病及并发症的早期发现早期治疗延缓并发症的发生发展降低患者政府经济负担具有重要现实意义组建金字塔式医生服务团队由省级知名专家全程介入慢病管理远程会
绿色就医通道;基层全科医生护师落实专家
指导意见和上门随访服务;辅以营养师和运动处方
根据筛查监测数据提供营养膳食和专属运动处
方运动建议打造一人一病一处方的管理模式
2023-03-06 11:41:01 +08:00
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
2023-02-24 15:45:25 +08:00
tabcurrent: 0,
tabList: [{
name: '专病管理'
}],
};
2022-12-28 12:08:50 +08:00
},
2023-02-24 15:45:25 +08:00
onShow() {},
onLoad() {},
methods: {
//跳转专病管理小程序
godiseasemanagement() {
2023-03-02 11:22:01 +08:00
const phone = uni.getStorageSync('phone');
if (phone) {
uni.navigateToMiniProgram({
appId: 'wxa690d053c34ceebd',
path: '/pages/index/index',
extraData: {
'from': 'qy',
'phone': phone
},
success(res) {}
})
}
2023-02-24 15:45:25 +08:00
},
2023-02-24 16:08:06 +08:00
//老年病中心
gogeriatricdisease() {
uni.navigateTo({
url: '/pages/geriatricdisease/geriatricdisease'
})
},
2023-02-24 15:45:25 +08:00
},
2022-12-28 12:08:50 +08:00
//1.分享给朋友
onShareAppMessage(res) {
2023-01-03 09:02:23 +08:00
let pages = getCurrentPages();
let url = pages[pages.length - 1].$page.fullPath
2022-12-28 12:08:50 +08:00
return {
title: '泉医到家',
2023-01-03 09:02:23 +08:00
path: url,
2022-12-28 12:08:50 +08:00
}
},
//2.分享到朋友圈
onShareTimeline(res) {
2023-01-03 09:02:23 +08:00
let pages = getCurrentPages();
let url = pages[pages.length - 1].$page.fullPath
2022-12-28 12:08:50 +08:00
return {
title: '泉医到家',
2023-01-03 09:02:23 +08:00
path: url,
2022-12-28 12:08:50 +08:00
}
},
}
</script>
<style lang="scss">
2023-03-06 11:41:01 +08:00
.app {
padding-top: 10rpx;
.concent {
width: 701rpx;
2023-03-06 11:47:17 +08:00
height: 1050rpx;
2023-03-06 11:41:01 +08:00
background: #4C7BC9;
box-shadow: 0px 9rpx 31rpx 9rpx rgba(0, 0, 0, 0.03);
border-radius: 20rpx;
margin: 5% auto 20px;
.background {
position: relative;
width: 657rpx;
2023-03-06 11:47:17 +08:00
height: 1000rpx;
2023-03-06 11:41:01 +08:00
background: #FFFFFF;
border-radius: 25rpx;
background-color: white;
margin: 0 auto;
top: 50%;
transform: translateY(-50%);
image {
width: 178rpx;
height: 200rpx;
background: #FFFFFF;
border-radius: 25px;
margin-left: 68%;
margin-top: 5%;
}
}
}
.detailed {
width: 657rpx;
padding: 0 42rpx;
line-height: 56rpx;
}
.detailed view {
text-indent: 2em;
}
}
.app {
2023-02-24 15:45:25 +08:00
padding: 0;
2023-02-24 15:45:25 +08:00
.items {
background-color: #fff;
width: 96%;
margin: 20rpx auto;
padding: 60rpx 0;
border-radius: 5rpx;
2023-02-24 15:45:25 +08:00
.item {
width: 50%;
display: inline-block;
image {
2023-02-24 15:45:25 +08:00
width: 150rpx;
height: 150rpx;
display: block;
margin: 0 auto;
}
.title {
display: block;
margin: 20rpx auto;
width: 180rpx;
text-align: center;
font-size: 40rpx;
line-height: 50rpx;
2023-02-24 16:13:52 +08:00
font-weight: 600;
}
}
}
}
</style>