@zuopngfei e01d46d64c sdw2
2025-08-11 16:44:45 +08:00

50 lines
2.4 KiB
Plaintext
Raw Permalink 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.

<view class="page">
<image class="home-top-bg" mode="widthFix" src="https://image-fudan.oss-cn-beijing.aliyuncs.com/mini_images/home/top-bg.png" />
<t-navbar t-class-placeholder="t-navbar-placeholder" t-class-content="t-navbar-content" class="block" title="患者管理" />
<view class="box_1">
<scroll-view scroll-y="true" bindscrolltolower="scrolltolower">
<view class="scroll-view-box">
<view class="scroll-top"></view>
<view class="box_3">
<view class="image-text_1">
<text class="iconfont icon-sousuo thumbnail_1"></text>
<input lines="1" class="text-group_1" placeholder="请输入患者姓名" value="{{username}}" bindinput="changeUsername"></input>
</view>
</view>
<view class="box_4">
<view class="block_1" wx:for="{{list}}" data-id="{{item.id}}" bind:tap="handleClick">
<view class="image-text_2">
<view class="box_5">
<image src="{{item.avatar}}" class="label_1"></image>
</view>
<view class="text-group_2">
<view class="text-wrapper_1">
<text class="text_2">{{item.username ? item.username : '患者信息未完善'}}</text>
<text wx:if="{{item.username}}" decode="true" class="text_3">
{{item.sex == 1 ? '男':'女'}}&nbsp;·&nbsp;{{item.age}}
</text>
</view>
<text lines="1" class="text_4">PELD评分{{item.risk_value}}</text>
</view>
</view>
<text lines="1" class="text_5">下次随访时间:{{item.next_follow_date}}</text>
<view class="box_6">
<view class="text-wrapper_2" wx:if="{{item.risk_type == 3}}">
<text lines="1" class="text_6">高危</text>
</view>
<view class="text-wrapper_5" wx:if="{{item.risk_type == 2}}">
<text lines="1" class="text_12">中危</text>
</view>
<view class="text-wrapper_8" wx:if="{{item.risk_type == 1}}">
<text lines="1" class="text_18">低危</text>
</view>
<view class="text-wrapper_3">
<text lines="1" class="text_7">术后{{item.postoperative_duration}}</text>
</view>
</view>
</view>
</view>
</view>
</scroll-view>
</view>
</view>