patient-mini/pages/my/index.wxml
@zuopngfei 65e6cff360 dsdwe2
2025-05-22 18:34:51 +08:00

43 lines
1.6 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<t-toast id="t-toast" />
<view class="my">
<image class="nav-bg" src="/static/bg_navbar.png" />
<nav title-text="我的" />
<view class="my-info">
<t-cell-group>
<t-cell wx:if="{{!isLoad}}" bordered="{{false}}">
<t-avatar image="{{personalInfo.image}}" slot="left-icon" size="large" />
<view class="my-info__person" slot="description">
<view class="name">{{personalInfo.name}}
<text>男 1岁5个月</text>
<t-icon class="edit" slot="right-icon" name="edit" size="40rpx" color="#000000e6" bindtap="onNavigateTo" />
</view>
<view class="time">胆道闭锁手术时间2024年12月15日</view>
<view class="peld">PELD评分12
<t-tag class="tag" theme="danger">高危</t-tag></view>
<!-- <view class="tags">
<t-tag class="tag" variant="light" icon="discount">{{personalInfo.star}}</t-tag>
<t-tag class="tag" variant="light" icon="location">{{personalInfo.city}}</t-tag>
</view> -->
</view>
</t-cell>
<t-cell wx:if="{{isLoad}}" title="请先登录/注册" bordered="{{false}}" t-class-title="cell-class-title" t-class-center="cell-class-center" bindtap="onLogin">
<t-avatar slot="left-icon" icon="user" size="128rpx" />
</t-cell>
</t-cell-group>
</view>
<view class="my-cell">
<t-cell-group theme="card">
<t-cell wx:for="{{settingList}}" wx:for-item="item" wx:key="type" title="{{item.label}}" url="{{item.url}}" arrow />
</t-cell-group>
</view>
</view>