Browse Source

改动

1.游客模式:首屏点击查看内容增加跳转;
2.诊疗患者—我的 随访日历:图更新;(日期和文案错误)
3.诊疗患者点击:问医生增加一个新图;new
4.诊疗患者—治疗档案—可以查看详情跳转;
5.诊疗患者—查看我的凝血因子变化可视化图 new 图;
6.医生端:查看患者的详情档案图;new
7.医生端:查看患者的健康可视化图;new
demo
kola-web 3 weeks ago
parent
commit
7036768ed7
  1. 18
      project.private.config.json
  2. BIN
      src/images/20.png
  3. BIN
      src/images/43.png
  4. BIN
      src/images/52.png
  5. BIN
      src/images/55.png
  6. BIN
      src/images/56.png
  7. 5
      src/pages/1/index.ts
  8. 14
      src/pages/1/index.wxml
  9. 10
      src/pages/11/index.scss
  10. 2
      src/pages/11/index.ts
  11. 1
      src/pages/11/index.wxml
  12. 4
      src/pages/17/index.ts
  13. 6
      src/pages/18/index.scss
  14. 2
      src/pages/18/index.ts
  15. 7
      src/pages/20/index.ts
  16. 3
      src/pages/20/index.wxml
  17. 5
      src/pages/24/index.scss
  18. 12
      src/pages/24/index.ts
  19. 9
      src/pages/24/index.wxml
  20. 3
      src/pages/25/index.ts
  21. 2
      src/pages/25/index.wxml

18
project.private.config.json

@ -23,13 +23,27 @@ @@ -23,13 +23,27 @@
"miniprogram": {
"list": [
{
"name": "23",
"pathName": "pages/23/index",
"name": "25",
"pathName": "pages/25/index",
"query": "",
"scene": null,
"launchMode": "default"
},
{
"name": "24",
"pathName": "pages/24/index",
"query": "",
"launchMode": "default",
"scene": null
},
{
"name": "23",
"pathName": "pages/23/index",
"query": "",
"launchMode": "default",
"scene": null
},
{
"name": "22",
"pathName": "pages/22/index",
"query": "",

BIN
src/images/20.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 543 KiB

After

Width:  |  Height:  |  Size: 646 KiB

BIN
src/images/43.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 432 KiB

After

Width:  |  Height:  |  Size: 350 KiB

BIN
src/images/52.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 227 KiB

After

Width:  |  Height:  |  Size: 238 KiB

BIN
src/images/55.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 582 KiB

BIN
src/images/56.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 KiB

5
src/pages/1/index.ts

@ -11,6 +11,11 @@ Page({ @@ -11,6 +11,11 @@ Page({
float1: wx.getStorageSync("1float1") !== "1",
});
},
handlePage() {
wx.navigateTo({
url: "/pages/5/index",
});
},
handelTap1() {
wx.navigateTo({
url: "/pages/2/index",

14
src/pages/1/index.wxml

@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
<image class="page" mode="widthFix" src="{{imageUrl}}1.png?t={{Timestamp}}"></image>
<view class="page-click1" bind:tap="handelTap1"></view>
<view class="page-click2" bind:tap="handelTap2"></view>
<view class="page-click3" bind:tap="handelTap3"></view>
<image class="page" mode="widthFix" src="{{imageUrl}}1.png?t={{Timestamp}}" bind:tap="handlePage"></image>
<view class="page-click1" catch:tap="handelTap1"></view>
<view class="page-click2" catch:tap="handelTap2"></view>
<view class="page-click3" catch:tap="handelTap3"></view>
<view class="tabbar">
<image class="tabbar-img" mode="widthFix" src="{{imageUrl}}tabbar1-1.png?t={{Timestamp}}"></image>
<view class="tabbar-wrap">
<view class="tabbar-click"></view>
<view class="tabbar-click" bind:tap="handleTabbar2"></view>
<view class="tabbar-click" bind:tap="handleTabbar3"></view>
<view class="tabbar-click" catch:tap="handleTabbar2"></view>
<view class="tabbar-click" catch:tap="handleTabbar3"></view>
</view>
</view>
@ -17,5 +17,5 @@ @@ -17,5 +17,5 @@
class="float1"
mode="widthFix"
src="{{imageUrl}}9.png?t={{Timestamp}}"
bind:tap="handleFloat1"
catch:tap="handleFloat1"
></image>

10
src/pages/11/index.scss

@ -24,6 +24,16 @@ page{ @@ -24,6 +24,16 @@ page{
background-color: transparent;
}
.page-click3 {
position: absolute;
top: 1400rpx;
left: 0;
z-index: 1;
width: 750rpx;
height: 400rpx;
background-color: transparent;
}
.tabbar {
position: fixed;

2
src/pages/11/index.ts

@ -15,7 +15,7 @@ Page({ @@ -15,7 +15,7 @@ Page({
},
handelTap3() {
wx.navigateTo({
url: "/pages/17/index",
url: "/pages/25/index",
});
},
handleTabbar2() {

1
src/pages/11/index.wxml

@ -1,6 +1,7 @@ @@ -1,6 +1,7 @@
<image class="page" mode="widthFix" src="{{imageUrl}}20.png?t={{Timestamp}}"></image>
<view class="page-click1" bind:tap="handelTap1"></view>
<view class="page-click2" bind:tap="handelTap2"></view>
<view class="page-click3" bind:tap="handelTap3"></view>
<view class="tabbar">
<image class="tabbar-img" mode="widthFix" src="{{imageUrl}}tabbar2-1.png?t={{Timestamp}}"></image>

4
src/pages/17/index.ts

@ -6,8 +6,8 @@ Page({ @@ -6,8 +6,8 @@ Page({
},
onLoad() {},
handlePage1() {
this.setData({
current: 1,
wx.navigateTo({
url: "/pages/24/index",
});
},
handlePage2() {

6
src/pages/18/index.scss

@ -18,7 +18,7 @@ page { @@ -18,7 +18,7 @@ page {
.page-click2 {
position: absolute;
top: 1220rpx;
top: 920rpx;
left: 0;
width: 100vw;
height: 730rpx;
@ -27,7 +27,7 @@ page { @@ -27,7 +27,7 @@ page {
.page-click3 {
position: absolute;
top: 1020rpx;
top: 1680rpx;
left: 0;
width: 50vw;
height: 180rpx;
@ -36,7 +36,7 @@ page { @@ -36,7 +36,7 @@ page {
.page-click4 {
position: absolute;
top: 1020rpx;
top: 1680rpx;
right: 0;
width: 50vw;
height: 180rpx;

2
src/pages/18/index.ts

@ -20,7 +20,7 @@ Page({ @@ -20,7 +20,7 @@ Page({
},
handleTap4() {
wx.navigateTo({
url: "/pages/21/index?current=2",
url: "/pages/25/index"
});
},
handleTabbar2() {

7
src/pages/20/index.ts

@ -17,8 +17,13 @@ Page({ @@ -17,8 +17,13 @@ Page({
});
},
handlePage2() {
wx.navigateBack();
this.setData({
current: 2,
});
},
handlePage3(){
wx.navigateBack();
}
});
export {};

3
src/pages/20/index.wxml

@ -6,4 +6,7 @@ @@ -6,4 +6,7 @@
<swiper-item>
<image bind:tap="handlePage2" class="page-img" mode="widthFix" src="{{imageUrl}}46.png?t={{Timestamp}}"></image>
</swiper-item>
<swiper-item>
<image bind:tap="handlePage3" class="page-img" mode="widthFix" src="{{imageUrl}}55.png?t={{Timestamp}}"></image>
</swiper-item>
</swiper>

5
src/pages/24/index.scss

@ -1,3 +1,8 @@ @@ -1,3 +1,8 @@
.page {
width: 100vw;
min-height: 100vh;
.page-img {
width: 100%;
height: 100%;
}
}

12
src/pages/24/index.ts

@ -1,8 +1,18 @@ @@ -1,8 +1,18 @@
const _app = getApp<IAppOption>();
Page({
data: {},
data: {
current: 0,
},
onLoad() {},
handlePage1() {
this.setData({
current: 1,
});
},
handlePage2() {
wx.navigateBack();
},
});
export {};

9
src/pages/24/index.wxml

@ -0,0 +1,9 @@ @@ -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>

3
src/pages/25/index.ts

@ -3,6 +3,9 @@ const _app = getApp<IAppOption>(); @@ -3,6 +3,9 @@ const _app = getApp<IAppOption>();
Page({
data: {},
onLoad() {},
handlePage() {
wx.navigateBack();
},
});
export {};

2
src/pages/25/index.wxml

@ -0,0 +1,2 @@ @@ -0,0 +1,2 @@
<navigation-bar></navigation-bar>
<image class="page" mode="widthFix" src="{{imageUrl}}56.png?t={{Timestamp}}" bind:tap="handlePage"></image>
Loading…
Cancel
Save