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