1.游客模式:首屏点击查看内容增加跳转; 2.诊疗患者—我的 随访日历:图更新;(日期和文案错误) 3.诊疗患者点击:问医生增加一个新图;new 4.诊疗患者—治疗档案—可以查看详情跳转; 5.诊疗患者—查看我的凝血因子变化可视化图 new 图; 6.医生端:查看患者的详情档案图;new 7.医生端:查看患者的健康可视化图;newdemo
Before Width: | Height: | Size: 543 KiB After Width: | Height: | Size: 646 KiB |
Before Width: | Height: | Size: 432 KiB After Width: | Height: | Size: 350 KiB |
Before Width: | Height: | Size: 227 KiB After Width: | Height: | Size: 238 KiB |
After Width: | Height: | Size: 582 KiB |
After Width: | Height: | Size: 246 KiB |
@ -1,3 +1,8 @@ |
|||||||
.page { |
.page { |
||||||
width: 100vw; |
width: 100vw; |
||||||
|
min-height: 100vh; |
||||||
|
.page-img { |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
} |
||||||
} |
} |
||||||
|
@ -1,8 +1,18 @@ |
|||||||
const _app = getApp<IAppOption>(); |
const _app = getApp<IAppOption>(); |
||||||
|
|
||||||
Page({ |
Page({ |
||||||
data: {}, |
data: { |
||||||
|
current: 0, |
||||||
|
}, |
||||||
onLoad() {}, |
onLoad() {}, |
||||||
|
handlePage1() { |
||||||
|
this.setData({ |
||||||
|
current: 1, |
||||||
|
}); |
||||||
|
}, |
||||||
|
handlePage2() { |
||||||
|
wx.navigateBack(); |
||||||
|
}, |
||||||
}); |
}); |
||||||
|
|
||||||
export {}; |
export {}; |
||||||
|
@ -0,0 +1,9 @@ |
|||||||
|
<navigation-bar></navigation-bar> |
||||||
|
<swiper class="page" current="{{current}}"> |
||||||
|
<swiper-item class="swiper-item1"> |
||||||
|
<image bind:tap="handlePage1" class="page-img" mode="aspectFit" src="{{imageUrl}}34.png?t={{Timestamp}}"></image> |
||||||
|
</swiper-item> |
||||||
|
<swiper-item> |
||||||
|
<image bind:tap="handlePage2" class="page-img" mode="aspectFit" src="{{imageUrl}}37.png?t={{Timestamp}}"></image> |
||||||
|
</swiper-item> |
||||||
|
</swiper> |