This commit is contained in:
曹辉 2023-02-24 15:54:53 +08:00
parent 9adb82df76
commit 89715c4868
4 changed files with 105 additions and 6 deletions

View File

@ -88,7 +88,7 @@
"navigationBarTitleText": "医路优品", "navigationBarTitleText": "医路优品",
"navigationBarBackgroundColor": "#ffffff", "navigationBarBackgroundColor": "#ffffff",
"onReachBottomDistance": 40, //距离底部多远时触发 单位为px "onReachBottomDistance": 40, //距离底部多远时触发 单位为px
"enablePullDownRefresh": true ,//设置参数为true "enablePullDownRefresh": true, //设置参数为true
"navigationStyle": "custom" "navigationStyle": "custom"
} }
}, { }, {
@ -341,7 +341,13 @@
"enablePullDownRefresh": false, "enablePullDownRefresh": false,
"navigationBarBackgroundColor": "#ffffff" "navigationBarBackgroundColor": "#ffffff"
} }
}, {
"path": "pages/geriatricdisease/geriatricdisease",
"style": {
"navigationBarTitleText": "国家老年病中心",
"enablePullDownRefresh": false,
"navigationBarBackgroundColor": "#ffffff"
}
} }
], ],
"globalStyle": { "globalStyle": {

View File

@ -8,7 +8,7 @@
专病管理云社区 专病管理云社区
</view> </view>
</view> </view>
<view class="item"> <view class="item" @tap='gogeriatricdisease'>
<image src="../../static/lnb.png" mode=""></image> <image src="../../static/lnb.png" mode=""></image>
<view class="title"> <view class="title">
国家老年病中心 国家老年病中心
@ -31,6 +31,12 @@
onShow() {}, onShow() {},
onLoad() {}, onLoad() {},
methods: { methods: {
//国家老年病
gogeriatricdisease() {
uni.navigateTo({
url: "/pages/geriatricdisease/geriatricdisease"
})
},
//跳转专病管理小程序 //跳转专病管理小程序
godiseasemanagement() { godiseasemanagement() {
uni.navigateToMiniProgram({ uni.navigateToMiniProgram({

View File

@ -0,0 +1,90 @@
<template>
<view class="app">
<view class="concent">
<view class="background">
<image src="/static/logo.png" mode=""></image>
<view>
<view class="detailed">
<view>
国家老年病中心山东分中心是依托于首都医科大学宣武医院的国家老年疾病临床医学研究中心(国家科技部、国家卫计委、中央军委后勤保障部、国家食品药品监督管理总局联合批准的国家级临床医学研究中心),老年慢性病全国网络化诊治体系及医疗大数据系统,医疗与健康一体化的新型服务体系和数据体系山东省建设单位。为提升山东省基层医院老年病学科水平,建设区域老年疾病预防、管理体系。利用国家中心在老年疾病临床诊疗的优势:在衰老、老年常见重大疾病(帕金森和老年痴呆等老年神经变性病、心脑及外周血管病、糖尿病)和老年综合征(衰弱、跌倒、便秘等)防治领域,围绕老年高龄外科围手术期管理、老年用药管理、老年共病、老年重症、以及老年常见疾病(帕金森病、痴呆、心脑外周血管病、糖尿病等)早期预警、干预及全程管理的综合评估、干预和管理新技术。
主要1、开展的科室有:帕金森,两腺科,妇科,心脑血管等精准治疗
2、开展项目有:慢病管理,血液净化(高血脂症)妇科筛查,老年病筛查、康复治疗等
</view>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {};
},
//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>
<style lang="scss">
.app {
padding-top: 10rpx;
.concent {
width: 701rpx;
height: 1450rpx;
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;
height: 1400rpx;
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: 0;
}
}
}
}
.detailed {
width: 657rpx;
padding: 0 20rpx;
line-height: 56rpx;
}
.detailed view {
text-indent: 2em;
}
</style>

View File

@ -8,9 +8,6 @@
</template> </template>
<script> <script>
import {
existPatientInfo
} from '@/api/startup/index.js'
export default { export default {
data() { data() {
return {}; return {};