@zuopngfei 1eaf786919 sdsd
2025-07-17 17:44:25 +08:00

50 lines
2.3 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.

<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}}</text>
<text 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>