| 12345678910111213141516171819202122232425 |
- <view class="toptip {{tipStaus}} text-white {{tipType}}" style='top:{{CustomBar}}px;'>{{tipText}}</view>
- <cu-custom bgColor="bg-color" isBack="{{true}}" title="{{titleName.titleName}}">
- <!-- <view slot="content">储运状态</view> -->
- </cu-custom>
- <view>
- <view class="paramsTitle">
- <view>地址</view>
- <view wx:for="{{title}}" wx:for-item = 'item' wx:key="index" wx:for-index= 'index'>
- <text bindtap="sort" data-type="{{item.type}}" class="{{type == item.type ? item.isShow != null ?'activeText':'' :''}}">{{item.name}}</text>
- <view wx:if="{{item.isShow == null}}">
- <text class="cuIcon-fold"></text>
- <text class="cuIcon-unfold"></text>
- </view>
- <view wx:if="{{item.isShow != null}}">
- <text class="cuIcon-fold" wx:if="{{item.isShow}}"></text>
- <text class="cuIcon-unfold" wx:else></text>
- </view>
- </view>
- </view>
- <view class="{{index % 2 == 0 ?'paramsItem':'paramsItem active'}}" wx:for="{{expressData}}" wx:for-item="item" wx:for-index="index">
- <view>{{item.addr}}</view>
- <view>{{item.o}}</view>
- <view>{{item.i}}</view>
- </view>
- </view>
|