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.
41 lines
1.7 KiB
41 lines
1.7 KiB
<view class="p-container">
|
|
<!-- 时间组件 -->
|
|
<time-component-home bindchange="changeTime"></time-component-home>
|
|
<view class="trend">
|
|
<view class="text">入库数据趋势</view>
|
|
<view class="trend_tu">
|
|
<c-echars showChart="{{showChart}}" canvasId="eventbar-canvas" chartId="eventbar" chartOption="{{dataOption}}" height="100%"></c-echars>
|
|
</view>
|
|
</view>
|
|
<view class="data">
|
|
<view class="text">入库数据量</view>
|
|
<view class="Cumulative">
|
|
<view class="Cumulative_box">
|
|
<view class="box">
|
|
<view class="box_num">{{countAll}}</view>
|
|
<view class="box_text">历史累计入库</view>
|
|
</view>
|
|
<view class="box2">
|
|
<view class="box_num">{{countYear}}</view>
|
|
<view class="box_text">一年累计入库</view>
|
|
</view>
|
|
<view class="box">
|
|
<view class="box_num">{{count6month}}</view>
|
|
<view class="box_text">半年累计入库</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="total">
|
|
<view class="total_content" wx:for="{{totallist}}" wx:key="url" id='{{item.text}}' bindtap="dynamic">
|
|
<view class="content_img">
|
|
<image src="{{imageUrl+item.url}}" style="width: 100%;height: 100%;"></image>
|
|
</view>
|
|
<view class="content_text" >
|
|
<view class="total_text">{{item.text}}</view>
|
|
<view class="total_num">{{item.num}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
</view> |