index.wxml 619 B

12345678910111213
  1. <view class='flexRow aCenter item' bindtap='navigate_auth_native' data-url='details/index?id={{item.id}}'>
  2. <view class='flexCenter icon'>
  3. <text>{{title}}</text>
  4. <image wx:if="{{img}}" src='/images/{{img}}.png' mode='widthFix'></image>
  5. </view>
  6. <view class='flexCol desc'>
  7. <text class='title'>{{item.serviceName}}</text>
  8. <text>预约人: {{item.applicantName}}</text>
  9. <text>预约号: {{item.reservationNumber}}</text>
  10. <text>预约窗口: {{item.deptName}}</text>
  11. <text>预约时间: {{item.reservationDate}} {{item.reservationInterval=='AM'?'上午':'下午'}}</text>
  12. </view>
  13. </view>