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.
49 lines
1.9 KiB
49 lines
1.9 KiB
<view>
|
|
<!-- <view class="timelist">
|
|
<view wx:for="{{timelist}}" class="{{index === intervalSel?'active':''}}" wx:key="index" data-index="{{index}}" bindtap="priceSel">{{item}}
|
|
</view>
|
|
</view> -->
|
|
<!-- 时间组件 -->
|
|
<time-component></time-component>
|
|
<view class="trend">
|
|
<view class="text">入库数据趋势</view>
|
|
<view class="trend_tu">
|
|
<c-echars showChart="{{showChart}}" canvasId="eventbar-canvas" chartId="eventbar" chartOption="{{chartOption}}" 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">12,233</view>
|
|
<view class="box_text">历史累计入库</view>
|
|
</view>
|
|
<view class="box2">
|
|
<view class="box_num">12,233</view>
|
|
<view class="box_text">一年累计入库</view>
|
|
</view>
|
|
<view class="box">
|
|
<view class="box_num">12,233</view>
|
|
<view class="box_text">半年累计入库</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
</view>
|
|
<view class="total" wx:for="{{totallist}}" wx:key="url" >
|
|
<view class="content_left">
|
|
<view class="total_img">
|
|
<image style="width: 100%;height: 100%;" src="{{item.url}}"></image>
|
|
</view>
|
|
<view class="total_text">{{item.text}}</view>
|
|
</view>
|
|
<view class="content_left">
|
|
<view class="total_num">{{item.num}}</view>
|
|
<van-icon size="22px" name="arrow" style="color: rgb(232, 232, 232);margin-left: 10rpx;" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
</view> |