tmp
This commit is contained in:
@@ -81,6 +81,27 @@
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 关联预约订单(仅编辑已有档案时显示) -->
|
||||
<view wx:if="{{isEdit}}" class="section">
|
||||
<text class="section-title">预约订单</text>
|
||||
<view wx:if="{{orderList.length > 0}}" class="order-list">
|
||||
<view class="order-card" wx:for="{{orderList}}" wx:key="_id" bindtap="onOrderTap" data-id="{{item._id}}">
|
||||
<view class="order-line1">
|
||||
<text class="order-patient">{{item.patient.name}}</text>
|
||||
<text class="order-service">{{item.escort.serviceName}}</text>
|
||||
<text class="status-tag status-{{item.status}}">{{item.statusText}}</text>
|
||||
</view>
|
||||
<view class="order-line2">
|
||||
<text class="order-hospital">{{item.hospitalText}}</text>
|
||||
<text class="order-time">{{item.schedule.dateText}}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view wx:else class="empty-order">
|
||||
<text>暂无关联的预约订单</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 陪诊预约(仅编辑已有档案时显示) -->
|
||||
<view wx:if="{{isEdit}}" class="btn btn-outline booking-btn" bindtap="onBooking">
|
||||
<text>陪诊预约</text>
|
||||
|
||||
Reference in New Issue
Block a user