123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <view class="booking-detail-container">
- <view class="booking-detail-head"></view>
- <view class="booking-detail-content">
-
- <title-layout>
- <view a:if="{{ result.status == '1'}}" class="detail-icon" slot="content">
- <am-icon type="check_" size="40" color="#22b35e" />
- <text class="text">已完成</text>
- <mas-qrcode code="{{result.qrCode}}" className="code" />
- </view>
- <view a:if="{{ result.status == '2'}}" class="detail-icon" slot="content">
- <text class="text">待就诊</text>
- </view>
- <view slot="content" class="detail-list">
- <view class="item">
- <text>就诊人</text>
- <view class="label">
- {{`${result.userName}${result.age ? ',' + result.age : ''}${result.sex ? ',' + result.sex : ''}`}}
- </view>
- </view>
- <view class="item">
- <text>就诊时间</text>
- <view class="label">{{result.timeRange || '-'}}</view>
- </view>
- <view class="item">
- <text>就诊医院</text>
- <view class="label">{{result.districtName || '-'}}</view>
- </view>
- {{type}
- <view class="item">
- <text>检查费用</text>
- <view class="label">¥ {{result.amount || '-'}}</view>
- </view>
- </view>
- <view a:if="{{type === '未支付' || type === '待就诊'}}" slot="content" class="not-pay-attention">
- <am-icon a:if="{{ hospitalInfo && hospitalInfo.offLinePayNotice }}" type="warn_" size="20" color="#ff6010" />
- <text class="attention-text">{{hospitalInfo.offLinePayNotice}}</text>
- </view>
- </title-layout>
-
-
- {{hospitalInfo.notice}
-
-
- {{hospitalInfo.toHospital}
- {{hospitalInfo.toHospitalUrl}
-
- <view class="cancel-booking">
- <button class="button" onTap="handleBack">返回</button>
-
- </view>
- </view>
- </view>
|