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.
59 lines
2.4 KiB
59 lines
2.4 KiB
<view |
|
class="page" |
|
style="background: url('{{imageUrl}}bg1.png?t={{Timestamp}}') no-repeat top center/100% 602rpx;padding-top:{{pageTop+21}}px;" |
|
> |
|
<view class="user"> |
|
<button class="avatar-wrapper" open-type="chooseAvatar" bind:chooseavatar="onChooseAvatar"> |
|
<image class="avatar" src="{{userInfo.Avatar}}"></image> |
|
</button> |
|
<view class="wrap"> |
|
<view class="name"> |
|
<text class="nickname">你好</text> |
|
</view> |
|
<view class="day"> |
|
今天是陪伴您的第 |
|
<rich-text class="rich" nodes="{{Days}}"></rich-text> |
|
</view> |
|
</view> |
|
</view> |
|
<view class="apply" bind:tap="routerTo" data-url="/pages/applyFrom/index"> |
|
<image |
|
wx:if="{{userInfo.ApplyIntentionId}}" |
|
class="a-img" |
|
src="{{imageUrl}}index-apply-end.png?t={{Timestamp}}" |
|
></image> |
|
<image wx:else class="a-img" src="{{imageUrl}}index-apply.png?t={{Timestamp}}"></image> |
|
<view class="content"> |
|
<view class="c-title" wx:if="{{applyWord.ApplyButtonWordOne}}">{{applyWord.ApplyButtonWordOne}}</view> |
|
<view class="c-content" wx:if="{{applyWord.ApplyButtonWordTwo}}">{{applyWord.ApplyButtonWordTwo}}</view> |
|
</view> |
|
<image |
|
wx:if="{{userInfo.ApplyIntentionId}}" |
|
class="a-label" |
|
src="{{imageUrl}}index-apply-label.png?t={{Timestamp}}" |
|
></image> |
|
</view> |
|
<view class="list" wx:if="{{showPatient}}"> |
|
<view class="list-header"> |
|
<view class="name">切换身份</view> |
|
</view> |
|
<view class="item" bind:tap="routerTo" data-url="/patient/pages/login/index" data-pname="BTN_MY_SWITCHPATIENT"> |
|
<image class="icon" src="{{imageUrl}}icon13.png?t={{Timestamp}}"></image> |
|
<view class="wrap"> |
|
<view class="name">我已开启基因治疗</view> |
|
<view class="content">切换基因治疗版本</view> |
|
</view> |
|
<image class="icon2" src="{{imageUrl}}icon12.png?t={{Timestamp}}"></image> |
|
</view> |
|
<view class="item" bind:tap="routerTo" data-url="/doctor/pages/login/index" data-pname="BTN_MY_SWITCH_DOCTOR"> |
|
<image class="icon" src="{{imageUrl}}icon14.png?t={{Timestamp}}"></image> |
|
<view class="wrap"> |
|
<view class="name">我是医生</view> |
|
<view class="content">登录医生端</view> |
|
</view> |
|
<image class="icon2" src="{{imageUrl}}icon12.png?t={{Timestamp}}"></image> |
|
</view> |
|
</view> |
|
</view> |
|
|
|
<popup model:show="{{popupShow}}" type="{{popupType}}" params="{{popupParams}}" bind:cancel="handlePopupCancel"></popup>
|
|
|