2023-12-04 14:49:14 +08:00

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

<!--Pages/yishi/patient_sick/index.wxml-->
<!--Pages/yishi/medince_list/index.wxml-->
<view class="page">
<te-nav-bar navbar-data='{{navbarData}}' ></te-nav-bar>
<view class="container">
<!-- <view class="searchCon">
<view class="searchbox">
<input type="text" value="" class="searchIpt" placeholder="请输入药品名称" confirm-type="search" bindinput="changeInput" bindconfirm="confirmSearch"/>
<image src="../../../static/images/yishi/tabbar_icon/ss.png" mode="" class="searchImg" bindtap="goSearch"/>
</view>
</view> -->
<scroll-view scroll-y="true" class="scrollbox" bindscrolltolower="lower" wx:if="{{list.length>0 || currentSick}}" >
<view class="cell" bindtap="goDetail" data-id="{{order_inquiry_id}}">
<view class="titlebox">
<view class="title">
<view class="name">{{currentSick.patient_name}}</view>
<view class="age">{{currentSick.patient_sex==1?'男':'女'}}{{currentSick.patient_age}}岁</view>
</view>
<van-icon name="arrow" class="icon" />
</view>
<view class="row">
<text class="desc">病情描述:</text>
<text class="descdetail"> {{currentSick.disease_desc}} </text>
</view>
<view class="date">您于{{currentSick.reception_time}}接诊</view>
<view class="mark">本次问诊</view>
</view>
<view class="cell" wx:for="{{list}}" wx:key="pathography_id" bindtap="goDetailbefore" data-id="{{item.pathography_id}}">
<view class="titlebox">
<view class="title">
<view class="name">{{item.name}}</view>
<view class="age">{{item.sex==1?'男':'女'}}{{item.age}}岁</view>
</view>
<van-icon name="arrow" />
</view>
<view class="row">
<text class="desc">病情描述:</text>
<text class="descdetail"> {{item.disease_desc}} </text>
</view>
<view class="date">您与{{item.reception_time}}接诊</view>
</view>
<van-divider contentPosition="center" wx:if="{{list.length > 0 && isLock}}">到底了~</van-divider>
</scroll-view>
<van-empty description="暂无数据" wx:if="{{list.length == 0 && !currentSick}}" />
</view></view>