| 123456789101112131415161718192021222324 |
- <view class="toptip {{tipStaus}} text-white {{tipType}}" style='top:{{CustomBar}}px;'>{{tipText}}</view>
- <cu-custom bgColor="bg-color" isBack="{{true}}" title="订单城市分布">
- <!-- <view slot="content">监测数量</view> -->
- </cu-custom>
- <view>
- <view class="paramsTitle">
- <view>地区</view>
- <view>
- <text bindtap="sort" data-type="cityNum" class="{{isShow != null ?'activeText':''}}">占比</text>
- <view wx:if="{{isShow == null}}">
- <text class="cuIcon-fold"></text>
- <text class="cuIcon-unfold"></text>
- </view>
- <view wx:if="{{isShow != null}}">
- <text class="cuIcon-fold" wx:if="{{isShow}}"></text>
- <text class="cuIcon-unfold" wx:else></text>
- </view>
- </view>
- </view>
- <view class="{{index % 2 == 0 ?'paramsItem':'paramsItem active'}}" wx:for="{{list}}" wx:for-item="item" wx:for-index="index">
- <view>{{item.city}}</view>
- <view>{{item.cityNum}}</view>
- </view>
- </view>
|