contrast.wxml 550 B

1234567891011
  1. <!--pages/home/components/contrast/contrast.wxml-->
  2. <view class="contrast basePage">
  3. <table list="{{tablelist}}" listAll="{{listAll}}" />
  4. <view class="itemView" wx:for="{{listAll}}" wx:key="name">
  5. <view class="localCells">{{item.name}}</view>
  6. <chart list="{{tablelist.length ? [tablelist] : []}}" id="{{'id' + index}}" canvasId="{{'canvasId' + index}}" yType="{{item.type}}"
  7. xType="topic_name" />
  8. </view>
  9. <!-- 错误提示 -->
  10. <mp-toptips msg="{{error}}" ext-class="toptips" type="error" show="{{error}}"></mp-toptips>
  11. </view>