This commit is contained in:
曹辉 2023-02-24 15:47:18 +08:00
parent 6bf3156414
commit 9adb82df76
5 changed files with 92 additions and 43 deletions

View File

@ -26,6 +26,24 @@
// console.log(this.item.informationContent) // console.log(this.item.informationContent)
}, },
onReady() {}, // onReady() {}, //
//1.
onShareAppMessage(res) {
let pages = getCurrentPages();
let url = pages[pages.length - 1].$page.fullPath
return {
title: '泉医到家',
path: url,
}
},
//2.
onShareTimeline(res) {
let pages = getCurrentPages();
let url = pages[pages.length - 1].$page.fullPath
return {
title: '泉医到家',
path: url,
}
},
} }
</script> </script>

View File

@ -91,6 +91,24 @@
uni.stopPullDownRefresh(); uni.stopPullDownRefresh();
}, 1000); }, 1000);
}, },
//1.
onShareAppMessage(res) {
let pages = getCurrentPages();
let url = pages[pages.length - 1].$page.fullPath
return {
title: '泉医到家',
path: url,
}
},
//2.
onShareTimeline(res) {
let pages = getCurrentPages();
let url = pages[pages.length - 1].$page.fullPath
return {
title: '泉医到家',
path: url,
}
},
} }
</script> </script>

View File

@ -1,14 +1,17 @@
<template> <template>
<view class="app"> <view class="app">
<view class="concent"> <u-tabs :list="tabList" :current="tabcurrent" @change="change"></u-tabs>
<view class="background"> <view class="items">
<image src="/static/logo.png" mode=""></image> <view class="item" @tap='godiseasemanagement'>
<view> <image src="../../static/zbglzbgl.png" mode=""></image>
<view class="detailed"> <view class="title">
<view> 专病管理云社区
专病管理简介慢性病已成为我国老年人健康的最大威胁建立标准化的慢病专病并发症防治中心建立规范化的导诊流程建立慢病专病综合电子档案对于慢病及并发症的早期发现早期治疗延缓并发症的发生发展降低患者政府经济负担具有重要现实意义组建金字塔式医生服务团队由省级知名专家全程介入慢病管理远程会诊绿色就医通道基层全科医生护师落实专家指导意见和上门随访服务辅以营养师和运动处方师根据筛查监测数据提供营养膳食和专属运动处方运动建议打造一人一病一处方的管理模式 </view>
</view> </view>
</view> <view class="item">
<image src="../../static/lnb.png" mode=""></image>
<view class="title">
国家老年病中心
</view> </view>
</view> </view>
</view> </view>
@ -18,7 +21,27 @@
<script> <script>
export default { export default {
data() { data() {
return {}; return {
tabcurrent: 0,
tabList: [{
name: '专病管理'
}],
};
},
onShow() {},
onLoad() {},
methods: {
//
godiseasemanagement() {
uni.navigateToMiniProgram({
appId: 'wxa690d053c34ceebd',
path: '/pages/index/index',
extraData: {
'from': 'qy'
},
success(res) {}
})
},
}, },
//1. //1.
onShareAppMessage(res) { onShareAppMessage(res) {
@ -43,46 +66,36 @@
<style lang="scss"> <style lang="scss">
.app { .app {
padding-top: 10rpx; padding: 0;
.concent { .items {
width: 701rpx; background-color: #fff;
height: 900rpx; width: 96%;
background: #4C7BC9; margin: 20rpx auto;
box-shadow: 0px 9rpx 31rpx 9rpx rgba(0, 0, 0, 0.03); padding: 60rpx 0;
border-radius: 20rpx; border-radius: 5rpx;
margin: 5% auto 20px;
.background { .item {
position: relative; width: 50%;
width: 657rpx; display: inline-block;
height: 850rpx;
background: #FFFFFF;
border-radius: 25rpx;
background-color: white;
margin: 0 auto;
top: 50%;
transform: translateY(-50%);
image { image {
width: 178rpx; width: 150rpx;
height: 160rpx; height: 150rpx;
background: #FFFFFF; display: block;
border-radius: 25px; margin: 0 auto;
margin-left: 68%; }
margin-top: 0;
.title {
display: block;
margin: 20rpx auto;
width: 180rpx;
text-align: center;
font-size: 40rpx;
line-height: 50rpx;
} }
} }
} }
}
.detailed {
width: 657rpx;
padding: 0 20rpx;
line-height: 56rpx;
}
.detailed view {
text-indent: 2em;
} }
</style> </style>

BIN
static/lnb.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

BIN
static/zbglzbgl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB