appointmentTime.axml 961 B

123456789101112131415161718192021222324
  1. <wrapper>
  2. <view class="appointment-time">
  3. <!-- 医生简介 -->
  4. <view class="doctor-introduce">
  5. <view class="avator">
  6. <image src="{{ doctorInfo && doctorInfo.avator }}" class="img"></image>
  7. </view>
  8. <view class="info">
  9. <view class="title">
  10. <text class="doctor-name">{{ doctorInfo && doctorInfo.name }}</text>
  11. {{ doctorInfo && doctorInfo.duty }}
  12. </view>
  13. <view class="desc">{{ doctorInfo && doctorInfo.desc }}</view>
  14. <view class="more" onTap="moreBtn">查看更多</view>
  15. </view>
  16. </view>
  17. <!-- 预约时间列表 -->
  18. <appointment appointmentList="{{ appointmentList }}"></appointment>
  19. <!-- 剩余日期 -->
  20. <view class="appointment-rest">
  21. {{ doctorInfo && doctorInfo.appointmentRest }}
  22. </view>
  23. </view>
  24. </wrapper>