record-index.wxml 613 B

123456789101112131415161718
  1. <!--module/health/pages/record-index/record-index.wxml-->
  2. <view class="chart-container">
  3. <block wx:if="{{loading}}">
  4. <view class="loading">加载中...</view>
  5. </block>
  6. <block wx:else>
  7. <view wx:for="{{charts}}" wx:key="*this" style="width: {{rect.width}}px; height: {{rect.height}}px;">
  8. <ec-canvas
  9. id="dom-{{item.id}}"
  10. canvas-id="canvas-{{item.id}}"
  11. ec="{{item}}"
  12. force-use-old-canvas="true"
  13. disable-scroll="true"
  14. style="width: {{rect.width}}px; height: {{rect.height}}px;"
  15. ></ec-canvas>
  16. </view>
  17. </block>
  18. </view>