This commit is contained in:
2024-03-13 10:05:21 +08:00
parent da0ec2c450
commit 88b124938b
8 changed files with 65 additions and 16 deletions

View File

@ -447,13 +447,17 @@
"onReachBottomDistance": 40, // px
"enablePullDownRefresh": true //true
}
},
{
"path" : "threeHighsAndSixDiseases/threeHighsAndSixDiseases",
"style" :
{
"navigationBarTitleText" : "三高六病",
"enablePullDownRefresh" : false
},{
"path": "threeHighsAndSixDiseases/threeHighsAndSixDiseases",
"style": {
"navigationBarTitleText": "三高六病",
"enablePullDownRefresh": false
}
},{
"path": "threeHundredAndSixty/threeHundredAndSixty",
"style": {
"navigationBarTitleText": "360健康画像",
"enablePullDownRefresh": false
}
}
]

View File

@ -1,7 +1,18 @@
.app {
height: 100vh;
background-color: #F7F5F5;
.title{
width: 100%;
text-align: center;
font-size: 44rpx;
color: #F9FDFC;
position: absolute;
top:250rpx;
letter-spacing: 0.2em;
left:0%;
}
.contentbottom {
width: 95%;
height: 446rpx;

View File

@ -3,6 +3,9 @@
<view class="content">
<!-- <image src="/static/pageC/homepage.png" mode=""></image> -->
<image :src="baseurl+ '/profile/weChatPicture/mainPage.png'" mode=""></image>
<view class="title">
家庭医生服务平台
</view>
<view class="loginmount" @tap="city">
<image src="../../static/pages/address.png" mode=""></image>
<text>
@ -54,19 +57,19 @@
</view>
</view>
<view class="home" @tap='gothreeHighsAndSixDiseases' v-if="Number(region)==2">
<image src="@/static/zhaohujilu.png" mode=""></image>
<image src="@/static/threesix.png" mode=""></image>
<view class="name">
三高六病
</view>
</view>
<view class="home" v-if="Number(region)==2">
<image src="@/static/zhaohujilu.png" mode=""></image>
<view class="home" v-if="Number(region)==2" @tap='sign'>
<image src="@/static/zizhujiance.png" mode=""></image>
<view class="name">
自主检测
</view>
</view>
<view class="home" v-if="Number(region)==2">
<image src="@/static/zhaohujilu.png" mode=""></image>
<view class="home" v-if="Number(region)==2" @tap="gothreeHundredAndSixty">
<image src="@/static/360.png" mode=""></image>
<view class="name">
360健康画像
</view>
@ -469,6 +472,15 @@
})
}
},
gothreeHundredAndSixty() {
if (!this.userinfo) {
this.gologin();
} else {
uni.navigateTo({
url: "/pagesB/threeHundredAndSixty/threeHundredAndSixty"
})
}
},
}
}
</script>

View File

@ -68,9 +68,6 @@
export default {
data() {
return {
noticebarlist: [
'给自己开一个健康储蓄账户',
],
query: {
identity: uni.getStorageSync('userinfo').cardNo,
pageNum: 1,

View File

@ -0,0 +1,25 @@
<template>
<view class="app">
功能开发中
</view>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style lang="scss">
.app {
height: 100vh;
background-color: #fff;
padding: 100rpx 40rpx;
text-align: center;
font-size: 36rpx;
}
</style>

BIN
static/360.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

BIN
static/threesix.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

BIN
static/zizhujiance.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB