信达小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

86 lines
2.8 KiB

<view
class="page"
style="--name: rgba(185, 130, 255, 1); background: url('{{imageUrl}}bg10.png?t={{Timestamp}}') no-repeat top center/100% 512rpx;padding-top:{{pageTop+22}}px"
>
<navBar color="#364E9E" fixed title="" home="{{false}}"></navBar>
<view class="page-container">
<view class="banner">
<view class="user">
<image
class="avatar"
mode="aspectFill"
src="{{zdUserInfo.UserImg}}"
bind:tap="routerTo"
data-url="/patient/pages/getUserInfo/index"
></image>
<view class="inner">
<view class="name">{{zdUserInfo.PatientName}}</view>
<!-- ignore-prettier -->
<view class="tip">
TED关爱小助手已伴您走过
<text class="day">{{zdUserInfo.JoinDays}}</text>
</view>
</view>
</view>
</view>
<view class="options-list">
<view bind:tap="routerTo" class="row" data-url="/patient/pages/qolReport/index">
<view class="col">
<image class="icon" src="{{imageUrl}}icon104.png?t={{Timestamp}}"></image>
我的健康报告
</view>
<view class="more">
<van-icon name="arrow" />
</view>
</view>
<view bind:tap="routerTo" class="row" data-url="/patient/pages/myLive/index">
<view class="col">
<image class="icon" src="{{imageUrl}}icon32.png?t={{Timestamp}}"></image>
我报名的活动
</view>
<view class="more">
<van-icon name="arrow" />
</view>
</view>
<view bind:tap="routerTo" class="row" data-url="/patient/pages/mySave/index">
<view class="col">
<image class="icon" src="{{imageUrl}}icon33.png?t={{Timestamp}}"></image>
我的收藏
</view>
<view class="more">
<van-icon name="arrow" />
</view>
</view>
<view bind:tap="routerTo" class="row" data-url="/patient/pages/personalInformation/index">
<view class="col">
<image class="icon" src="{{imageUrl}}icon34.png?t={{Timestamp}}"></image>
个人信息
</view>
<view class="more">
<van-icon name="arrow" />
</view>
</view>
<view bind:tap="routerTo" class="row" data-url="/doc/pages/doc2/index">
<view class="col">
<image class="icon" src="{{imageUrl}}icon35.png?t={{Timestamp}}"></image>
协议相关
</view>
<view class="more">
<van-icon name="arrow" />
</view>
</view>
</view>
</view>
<view class="login-out" bind:tap="handleLoginOut">退出登录</view>
</view>
<patient-tab-bar></patient-tab-bar>
<toast
bind:cancel="handleToastCancel"
bind:ok="handleToastOk"
show="{{toastShow}}"
type="{{toastType}}"
params="{{toastParams}}"
></toast>