健康档案
This commit is contained in:
parent
e7509c7327
commit
c587b77c94
40
pages.json
40
pages.json
@ -341,12 +341,50 @@
|
|||||||
}, {
|
}, {
|
||||||
"root": "pagesC",
|
"root": "pagesC",
|
||||||
"pages": [{
|
"pages": [{
|
||||||
"path": "ServiceAppointmenttime/ServiceAppointmenttime",
|
"path": "ServiceAppointment/ServiceAppointment",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "服务预约",
|
"navigationBarTitleText": "服务预约",
|
||||||
"enablePullDownRefresh": false
|
"enablePullDownRefresh": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"path": "appointmenttime/appointmenttime",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "服务预约",
|
||||||
|
"enablePullDownRefresh": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "Screeningdetails/Screeningdetails",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "筛查详情",
|
||||||
|
"enablePullDownRefresh": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "Healthrecords/Healthrecords",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "健康档案",
|
||||||
|
"enablePullDownRefresh": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "Screeningrecords/Screeningrecords",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "筛查记录",
|
||||||
|
"enablePullDownRefresh": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"path": "ServiceAppointment/ServiceAppointment",
|
||||||
|
"style": {
|
||||||
|
"navigationStyle": "custom", // 隐藏系统导航栏
|
||||||
|
// "navigationBarTitleText": "商品订单",
|
||||||
|
"onReachBottomDistance": 20, //距离底部多远时触发 单位为px
|
||||||
|
"enablePullDownRefresh": true //设置参数为true
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"path": "ServiceAppointment/ServiceAppointment",
|
"path": "ServiceAppointment/ServiceAppointment",
|
||||||
"style": {
|
"style": {
|
||||||
|
|||||||
@ -14,13 +14,13 @@
|
|||||||
家医签约
|
家医签约
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="home">
|
<view class="home" @tap="goHealthrecords">
|
||||||
<image src="/static/pageC/health.png" mode=""></image>
|
<image src="/static/pageC/health.png" mode=""></image>
|
||||||
<view class="name">
|
<view class="name">
|
||||||
健康档案
|
健康档案
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="home" @tap="goappoint">
|
<view class="home" @tap="goappoint">
|
||||||
<image src="/static/pageC/serveappoint.png" mode=""></image>
|
<image src="/static/pageC/serveappoint.png" mode=""></image>
|
||||||
<view class="name">
|
<view class="name">
|
||||||
服务预约
|
服务预约
|
||||||
@ -56,7 +56,7 @@
|
|||||||
</view>
|
</view>
|
||||||
<view class="sign">
|
<view class="sign">
|
||||||
<image src="/static/pageC/healthmyself.png" mode=""></image>
|
<image src="/static/pageC/healthmyself.png" mode=""></image>
|
||||||
<image src="/static/pageC/records.png" mode=""></image>
|
<image @tap="gorecords" src="/static/pageC/records.png" mode=""></image>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@ -75,6 +75,16 @@
|
|||||||
this.login()
|
this.login()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
goHealthrecords() {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pagesC/Healthrecords/Healthrecords'
|
||||||
|
})
|
||||||
|
},
|
||||||
|
gorecords() {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pagesC/Screeningrecords/Screeningrecords'
|
||||||
|
})
|
||||||
|
},
|
||||||
goappoint() {
|
goappoint() {
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: '/pagesC/ServiceAppointment/ServiceAppointment'
|
url: '/pagesC/ServiceAppointment/ServiceAppointment'
|
||||||
|
|||||||
@ -11,6 +11,19 @@
|
|||||||
详情
|
详情
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
<view class="content">
|
||||||
|
<view class="big">眼底筛查
|
||||||
|
|
||||||
|
</view>
|
||||||
|
<view class="servename">
|
||||||
|
2023-12-12 12:12:12
|
||||||
|
</view>
|
||||||
|
<view class="appoint" @tap="goapponint">
|
||||||
|
详情
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -32,7 +45,7 @@
|
|||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
.app {
|
.app {
|
||||||
height: 100vh;
|
height: 100%;
|
||||||
background-color: #F7F5F5;
|
background-color: #F7F5F5;
|
||||||
padding: 30rpx 0 0 0;
|
padding: 30rpx 0 0 0;
|
||||||
|
|
||||||
|
|||||||
@ -53,7 +53,7 @@
|
|||||||
},
|
},
|
||||||
goapponint() {
|
goapponint() {
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: '/pagesC/ServiceAppointmenttime/ServiceAppointmenttime'
|
url: '/pagesC/appointmenttime/appointmenttime'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@ -11,7 +11,6 @@
|
|||||||
提交
|
提交
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -44,6 +43,7 @@
|
|||||||
.submit {
|
.submit {
|
||||||
width: 496rpx;
|
width: 496rpx;
|
||||||
height: 61rpx;
|
height: 61rpx;
|
||||||
|
|
||||||
background: #26A888;
|
background: #26A888;
|
||||||
border-radius: 5rpx;
|
border-radius: 5rpx;
|
||||||
line-height: 61rpx;
|
line-height: 61rpx;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user