index.axml 786 B

12345678910111213141516171819
  1. <view class="hospital-container">
  2. <scroll-view scroll-y="{{true}}" class="hospital-scroll" onScrollToLower="getPayData">
  3. <view class="hospital-item" a:for="{{hospitalList}}" onTap="handleToBook" data-item="{{item}}">
  4. <!-- 展示内容 -->
  5. <view class="item-left">
  6. <text class="campus">{{item.name}}</text>
  7. <text class="address">{{item.address}}</text>
  8. <text class="time">{{item.extInfo.time}}</text>
  9. </view>
  10. <!-- 选择按钮 -->
  11. <view class="item-right">
  12. <button class="btn" size="mini" type="primary">选择</button>
  13. </view>
  14. </view>
  15. </scroll-view>
  16. <!-- 选择就诊人 -->
  17. <select-person show="{{showPerson}}" onClose="onClosePerson" onChange="onPersonChange" defaultList="{{personList}}"/>
  18. </view>