You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
3.0 KiB

<scroll-view class="p-container">
<view>
<!-- 时间组件 -->
<time-component bindchange="changeTime"></time-component>
<view class="brand">
<view class="text">性别</view>
<view class="statistical">
<view class="annotation">
<c-echars showChart="{{showChart}}" canvasId="sex-canvas" chartId="sexbar" chartOption="{{sexOption}}" height="100%"></c-echars>
</view>
<view>
<view wx:for="{{sexList}}" wx:key="name" style="display: flex; justify-content:space-between;">
<view class="box">
<view class="img" style="background-color:{{item.color}};"></view>
<view class="answer">{{item.name}}</view>
</view>
<view class="box">
<view class="topic">数量</view>
<view class="answer">{{item.value}}</view>
</view>
<view class="box">
<view class="topic">占比</view>
<view class="answer">{{item.accounted}}%</view>
</view>
</view>
</view>
</view>
</view>
</view>
<view class="brand">
<view class="text">认证</view>
<view class="statistical">
<view class="annotation">
<c-echars showChart="{{showChart}}" canvasId="certification-canvas" chartId="certificationbar" chartOption="{{attestationOption}}" height="100%"></c-echars>
</view>
<view>
<view wx:for="{{attestationList}}" wx:key="item" style="display: flex; justify-content:space-between;">
<view class="box">
<view class="img" style="background-color:{{item.color}};"></view>
<view class="answer">{{item.name}}</view>
</view>
<view class="box">
<view class="topic">数量</view>
<view class="answer">{{item.value}}</view>
</view>
<view class="box">
<view class="topic">占比</view>
<view class="answer">{{item.accounted}}%</view>
</view>
</view>
</view>
</view>
</view>
<view class="brand">
<view class="text">地区</view>
<view class="echars">
<view class="echars_view" >
<c-echars showChart="{{showChart}}" canvasId="region-canvas1" chartId="regionbar1" chartOption="{{regionOption1}}" height="100%"></c-echars>
</view>
<view class="echars_view">
<c-echars showChart="{{showChart}}" canvasId="region-canvas2" chartId="regionbar2" chartOption="{{regionOption2}}" height="100%"></c-echars>
</view>
</view>
</view>
</scroll-view>