| 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="orderNum" 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.name}}</view>
- <view>{{item.orderNum}}</view>
- </view>
- </view>
|