123456789101112131415161718192021 |
- <wrapper>
- <popup-container
- show="{{ show }}"
- title="请选择就诊卡"
- onClose="onClosePopup"
- >
- <view class="hospital-select-card">
- <view class="item-box" a:for="{{ defaultList }}">
- <view>
- <view class="card-num">{{ item.hisPatientId }}</view>
- <view class="card-balance" a:if="{{ balance }}">余额:¥{{ item.balance }}</view>
- </view>
- <view class="button" data-item="{{ item }}" onTap="onTap">选择</view>
- </view>
- <!-- <view class="tips">
- <view>温馨提示:</view>
- <view>如就诊卡已不再使用,您可以去医院窗口进行注销</view>
- </view> -->
- </view>
- </popup-container>
- </wrapper>
|