alarmStatistics.wxml
694 Bytes
<view class="dataStoreCount_main">
<view class="storeCountItem" wx:for="{{storeCountList}}" wx:for-item="item" wx:for-index="index" wx:key="index">
<view class="item_title">
{{item.type}}
</view>
<view class="item_data_box">
<view class="{{['item_box_count',boxIndex === 0?'marginLeftBox':'',boxIndex === 1? 'marginBoth':'',boxIndex === 2 ? 'marginRightBox':'' ]}}" wx:for="{{item.boxList}}" wx:for-item="boxItem" wx:for-index="boxIndex" wx:key="boxIndex">
<view class="count_name">
{{boxItem.boxLabelOne}}
</view>
<view class="count_num">
{{boxItem.boxNumOne}}
</view>
</view>
</view>
</view>
</view>