Merge remote-tracking branch 'origin/dev' into dev
32
pages.json
@ -348,13 +348,13 @@
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
"path": "Filinginformation/Filinginformation",
|
||||
"style": {
|
||||
"navigationBarTitleText": "查看建档信息",
|
||||
"enablePullDownRefresh": false
|
||||
}
|
||||
},
|
||||
// {
|
||||
// "path": "Filinginformation/Filinginformation",
|
||||
// "style": {
|
||||
// "navigationBarTitleText": "查看建档信息",
|
||||
// "enablePullDownRefresh": false
|
||||
// }
|
||||
// },
|
||||
{
|
||||
"path": "Onlinesigning/Onlinesigning",
|
||||
"style": {
|
||||
@ -407,6 +407,24 @@
|
||||
"enablePullDownRefresh": false
|
||||
}
|
||||
|
||||
}
|
||||
,{
|
||||
"path" : "healthtest/healthtest",
|
||||
"style" :
|
||||
{
|
||||
"navigationBarTitleText": "健康自评",
|
||||
"enablePullDownRefresh": false
|
||||
}
|
||||
|
||||
}
|
||||
,{
|
||||
"path" : "Physicalexamination/Physicalexamination",
|
||||
"style" :
|
||||
{
|
||||
"navigationBarTitleText": "体征检测",
|
||||
"enablePullDownRefresh": false
|
||||
}
|
||||
|
||||
}
|
||||
]
|
||||
}],
|
||||
|
||||
@ -51,11 +51,11 @@
|
||||
健康管理
|
||||
</view>
|
||||
<view class="item">
|
||||
<view class="signmyself">
|
||||
<view class="signmyself" @tap="sign">
|
||||
<image src="/static/pageC/tizheng.png" mode=""></image>
|
||||
</view>
|
||||
<view class="sign">
|
||||
<image src="/static/pageC/healthmyself.png" mode=""></image>
|
||||
<image @tap="healthtest" src="/static/pageC/healthmyself.png" mode=""></image>
|
||||
<image @tap="gorecords" src="/static/pageC/records.png" mode=""></image>
|
||||
</view>
|
||||
</view>
|
||||
@ -88,11 +88,26 @@
|
||||
url: '/pagesC/Healthrecords/Healthrecords'
|
||||
})
|
||||
},
|
||||
// 筛查记录
|
||||
gorecords() {
|
||||
uni.navigateTo({
|
||||
url: '/pagesC/Screeningrecords/Screeningrecords'
|
||||
})
|
||||
},
|
||||
// 健康自评
|
||||
healthtest() {
|
||||
uni.navigateTo({
|
||||
url: '/pagesC/healthtest/healthtest'
|
||||
})
|
||||
},
|
||||
// 体征检测
|
||||
sign(){
|
||||
uni.navigateTo({
|
||||
url: '/pagesC/Physicalexamination/Physicalexamination'
|
||||
})
|
||||
|
||||
},
|
||||
// 服务预约
|
||||
goappoint() {
|
||||
uni.navigateTo({
|
||||
url: '/pagesC/ServiceAppointment/ServiceAppointment'
|
||||
|
||||
110
pagesC/Physicalexamination/Physicalexamination.scss
Normal file
@ -0,0 +1,110 @@
|
||||
.app {
|
||||
height: 100vh;
|
||||
background-color: #F7F5F5;
|
||||
padding: 15rpx 0 0 0;
|
||||
overflow: scroll;
|
||||
|
||||
.top {
|
||||
width: 95%;
|
||||
height: 163rpx;
|
||||
// background: red;
|
||||
margin: 0 auto;
|
||||
justify-content: space-between;
|
||||
display: flex;
|
||||
|
||||
.device {
|
||||
font-family: Source Han Sans CN;
|
||||
width: 48%;
|
||||
height: 163rpx;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0rpx 9rpx 31rpx 9rpx rgba(0, 0, 0, 0.03);
|
||||
border-radius: 5rpx;
|
||||
position: relative;
|
||||
|
||||
image {
|
||||
position: absolute;
|
||||
width: 33rpx;
|
||||
height: 32rpx;
|
||||
left: 5%;
|
||||
top: 10%;
|
||||
}
|
||||
|
||||
.deviceitem {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
left: 18%;
|
||||
top: 8%;
|
||||
font-size: 28rpx;
|
||||
font-weight: 500;
|
||||
color: #000000;
|
||||
// line-height: 38rpx;
|
||||
|
||||
}
|
||||
|
||||
.itemdata {
|
||||
position: absolute;
|
||||
font-size: 24rpx;
|
||||
font-weight: 400;
|
||||
color: #595959;
|
||||
top: 49%;
|
||||
left: 16%;
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.body {
|
||||
position: relative;
|
||||
width: 95%;
|
||||
font-family: Source Han Sans CN;
|
||||
margin: 20rpx auto;
|
||||
justify-content: space-between;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
||||
.item {
|
||||
width: 48%;
|
||||
height: 362rpx;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0rpx 9rpx 31rpx 9rpx rgba(0, 0, 0, 0.03);
|
||||
border-radius: 5rpx;
|
||||
margin-bottom: 20rpx;
|
||||
position: relative;
|
||||
|
||||
image {
|
||||
width: 140rpx;
|
||||
height: 155rpx;
|
||||
position: absolute;
|
||||
left: 49%;
|
||||
top: 50%;
|
||||
}
|
||||
|
||||
.itemtitle {
|
||||
position: absolute;
|
||||
font-size: 28rpx;
|
||||
font-weight: 500;
|
||||
color: #000000;
|
||||
top: 8%;
|
||||
left: 6%;
|
||||
|
||||
}
|
||||
.itemtext {
|
||||
position: absolute;
|
||||
font-size: 24rpx;
|
||||
font-weight: 400;
|
||||
color: #595959;
|
||||
top: 32%;
|
||||
left: 6%;
|
||||
}
|
||||
|
||||
.two {
|
||||
top: 22%;
|
||||
left: 6%;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
128
pagesC/Physicalexamination/Physicalexamination.vue
Normal file
@ -0,0 +1,128 @@
|
||||
<template>
|
||||
<view class="app">
|
||||
<view class="top">
|
||||
<view class="device">
|
||||
<image src="../../static/pageC/device.png" mode=""></image>
|
||||
<span class="deviceitem">智能设备</span>
|
||||
<view class="itemdata">
|
||||
绑定设备,关注健康
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<view class="device">
|
||||
<image src="../../static/pageC/report.png" mode=""></image>
|
||||
<span class="deviceitem">智能设备</span>
|
||||
<view class="itemdata">
|
||||
智慧驿站,免费检测
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="body">
|
||||
<view class="item">
|
||||
<view class="itemtitle">
|
||||
血糖
|
||||
</view>
|
||||
<view class="itemtext">
|
||||
您30天未测量
|
||||
</view>
|
||||
<view class="itemtext two">
|
||||
快来测量吧~
|
||||
</view>
|
||||
<image src="../../static/pageC/sugar.png" mode=""></image>
|
||||
</view>
|
||||
<view class="item">
|
||||
<view class="itemtitle">
|
||||
血压
|
||||
</view>
|
||||
<view class="itemtext">
|
||||
您30天未测量
|
||||
</view>
|
||||
<view class="itemtext two">
|
||||
快来测量吧~
|
||||
</view>
|
||||
<image src="../../static/pageC/bloodpressure.png" mode=""></image>
|
||||
|
||||
</view>
|
||||
<view class="item">
|
||||
<view class="itemtitle">
|
||||
体温
|
||||
</view>
|
||||
<view class="itemtext">
|
||||
您30天未测量
|
||||
</view>
|
||||
<view class="itemtext two">
|
||||
快来测量吧~
|
||||
</view>
|
||||
<image src="../../static/pageC/temperature.png" mode=""></image>
|
||||
</view>
|
||||
<view class="item">
|
||||
<view class="itemtitle">
|
||||
BMI
|
||||
</view>
|
||||
<view class="itemtext">
|
||||
您30天未测量
|
||||
</view>
|
||||
<view class="itemtext two">
|
||||
快来测量吧~
|
||||
</view>
|
||||
<image src="../../static/pageC/dkw.png" mode=""></image>
|
||||
</view>
|
||||
<view class="item">
|
||||
<view class="itemtitle">
|
||||
心率
|
||||
</view>
|
||||
<view class="itemtext">
|
||||
您30天未测量
|
||||
</view>
|
||||
<view class="itemtext two">
|
||||
快来测量吧~
|
||||
</view>
|
||||
<image src="../../static/pageC/heartrate.png" mode=""></image>
|
||||
</view>
|
||||
<view class="item">
|
||||
<view class="itemtitle">
|
||||
血脂
|
||||
</view>
|
||||
<view class="itemtext">
|
||||
您30天未测量
|
||||
</view>
|
||||
<view class="itemtext two">
|
||||
快来测量吧~
|
||||
</view>
|
||||
<image src="../../static/pageC/bloodfat.png" mode=""></image>
|
||||
</view>
|
||||
<view class="item">
|
||||
<view class="itemtitle">
|
||||
血氧
|
||||
</view>
|
||||
<view class="itemtext">
|
||||
您30天未测量
|
||||
</view>
|
||||
<view class="itemtext two">
|
||||
快来测量吧~
|
||||
</view>
|
||||
<image src="../../static/pageC/oxygen.png" mode=""></image>
|
||||
</view>
|
||||
|
||||
|
||||
</view>
|
||||
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import './Physicalexamination.scss';
|
||||
</style>
|
||||
94
pagesC/healthtest/healthtest.scss
Normal file
@ -0,0 +1,94 @@
|
||||
.app {
|
||||
height: 100vh;
|
||||
background-color: #F7F5F5;
|
||||
padding: 15rpx 0 0 0;
|
||||
overflow: scroll;
|
||||
.tophealth {
|
||||
font-family: Source Han Sans CN;
|
||||
position: relative;
|
||||
left: 5%;
|
||||
width: 92%;
|
||||
// background: red;
|
||||
height: 60rpx;
|
||||
margin-bottom: 10rpx;
|
||||
|
||||
image {
|
||||
position: absolute;
|
||||
width: 32rpx;
|
||||
height: 36rpx;
|
||||
top: 15%;
|
||||
// transform: translateY(-50%);
|
||||
// vertical-align: middle;
|
||||
}
|
||||
|
||||
.health {
|
||||
font-size: 28rpx;
|
||||
font-weight: 500;
|
||||
color: #000000;
|
||||
line-height: 38rpx;
|
||||
height: 38rpx;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
left: 7%;
|
||||
}
|
||||
|
||||
.history {
|
||||
font-size: 26rpx;
|
||||
font-weight: 400;
|
||||
color: #26A888;
|
||||
line-height: 38rpx;
|
||||
height: 38rpx;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
right: 0%;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.bodyhealth {
|
||||
width: 94%;
|
||||
height: 208rpx;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0rpx 9rpx 31rpx 9rpx rgba(0, 0, 0, 0.03);
|
||||
border-radius: 5rpx;
|
||||
position: relative;
|
||||
left: 50%;
|
||||
font-family: Source Han Sans CN;
|
||||
transform: translateX(-50%);
|
||||
margin-bottom: 20rpx;
|
||||
|
||||
image {
|
||||
width: 140rpx;
|
||||
height: 140rpx;
|
||||
background: #ABACB1;
|
||||
border-radius: 5rpx;
|
||||
position: absolute;
|
||||
left: 5%;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
|
||||
.risk {
|
||||
font-size: 32rpx;
|
||||
font-weight: 500;
|
||||
color: #333333;
|
||||
position: absolute;
|
||||
left: 30%;
|
||||
top: 25%;
|
||||
}
|
||||
|
||||
.estimate {
|
||||
font-size: 28rpx;
|
||||
font-weight: 400;
|
||||
color: #959595;
|
||||
position: absolute;
|
||||
left: 30%;
|
||||
top: 50%;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
44
pagesC/healthtest/healthtest.vue
Normal file
@ -0,0 +1,44 @@
|
||||
<template>
|
||||
<view class="app">
|
||||
<view class="tophealth">
|
||||
<image src="../../static/pageC/self.png" mode=""></image>
|
||||
<span class="health">智慧健康驿站自评表</span>
|
||||
<span class="history">历史记录</span>
|
||||
</view>
|
||||
<view class="bodyhealth">
|
||||
<image src="../../static/pages/view_face_background.png" mode=""></image>
|
||||
<view class="risk">高血压风险评估</view>
|
||||
<view class="estimate">风险评估</view>
|
||||
|
||||
</view>
|
||||
<view class="bodyhealth">
|
||||
<image src="../../static/pages/view_face_background.png" mode=""></image>
|
||||
<view class="risk">高血压风险评估</view>
|
||||
<view class="estimate">风险评估</view>
|
||||
|
||||
</view>
|
||||
<view class="bodyhealth">
|
||||
<image src="../../static/pages/view_face_background.png" mode=""></image>
|
||||
<view class="risk">高血压风险评估</view>
|
||||
<view class="estimate">风险评估</view>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import './healthtest.scss'
|
||||
</style>
|
||||
BIN
static/pageC/bloodfat.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
static/pageC/bloodpressure.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
static/pageC/device.png
Normal file
|
After Width: | Height: | Size: 713 B |
BIN
static/pageC/dkw.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
static/pageC/heartrate.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
static/pageC/oxygen.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
static/pageC/report.png
Normal file
|
After Width: | Height: | Size: 532 B |
BIN
static/pageC/self.png
Normal file
|
After Width: | Height: | Size: 726 B |
BIN
static/pageC/sugar.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
static/pageC/temperature.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |