index.axml 712 B

123456789101112131415161718192021
  1. <wrapper>
  2. <popup-container
  3. show="{{ show }}"
  4. title="请选择就诊卡"
  5. onClose="onClosePopup"
  6. >
  7. <view class="hospital-select-card">
  8. <view class="item-box" a:for="{{ defaultList }}">
  9. <view>
  10. <view class="card-num">{{ item.hisPatientId }}</view>
  11. <view class="card-balance" a:if="{{ balance }}">余额:¥{{ item.balance }}</view>
  12. </view>
  13. <view class="button" data-item="{{ item }}" onTap="onTap">选择</view>
  14. </view>
  15. <!-- <view class="tips">
  16. <view>温馨提示:</view>
  17. <view>如就诊卡已不再使用,您可以去医院窗口进行注销</view>
  18. </view> -->
  19. </view>
  20. </popup-container>
  21. </wrapper>