nodrug-therapy.wxml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <wxs module="_">
  2. </wxs>
  3. <!--module/health/components/care-scheme/care-scheme.wxml-->
  4. <view class="card-wrapper">
  5. <view class="constitution-container">
  6. <view class="card-header constitution-box">
  7. <t-loading wx:if="{{loading}}" theme="spinner" size="20px" class="loading" />
  8. <view class="card-title">
  9. <view>
  10. <image src="../../assets/icon/icon_treatment@3x.png" class="icon-title" />
  11. </view>
  12. <view class="text-title">非药物治疗</view>
  13. </view>
  14. <view class="more-link" bindtap="onMore">
  15. <text class="record">更多记录</text>
  16. <t-icon t-class="icon" name="chevron-right-double-s" size="24px" />
  17. </view>
  18. <slot name="extra"></slot>
  19. </view>
  20. <view class="table-box">
  21. <view class="nodrug-therapy-list" wx:if="{{offlineTreatmentList.length>0}}">
  22. <div wx:for="{{offlineTreatmentList}}" wx:key="id" bindtap="onRecord" data-id="{{item.id}}">
  23. <view class="therapy-card">
  24. <view class="therapy-title">{{item.conditioningProgramName}}</view>
  25. <view class="therapy-row">
  26. <text class="label">下次时间:</text>
  27. <text style="color:black">{{item.arrangeDate}}</text>
  28. </view>
  29. <view class="therapy-row">
  30. <text class="label">机构:</text>
  31. <text style="color:black">{{item.conditioningProgramSupplierName}}</text>
  32. </view>
  33. </view>
  34. </div>
  35. </view>
  36. <view wx:else class="empty-data">
  37. 暂无数据
  38. </view>
  39. </view>
  40. </view>
  41. </view>