statics.wxml 1.1 KB

12345678910111213141516171819202122232425
  1. <view class="toptip {{tipStaus}} text-white {{tipType}}" style='top:{{CustomBar}}px;'>{{tipText}}</view>
  2. <cu-custom bgColor="bg-color" isBack="{{true}}" title="{{titleName.titleName}}">
  3. <!-- <view slot="content">储运状态</view> -->
  4. </cu-custom>
  5. <view>
  6. <view class="paramsTitle">
  7. <view>地址</view>
  8. <view wx:for="{{title}}" wx:for-item = 'item' wx:key="index" wx:for-index= 'index'>
  9. <text bindtap="sort" data-type="{{item.type}}" class="{{type == item.type ? item.isShow != null ?'activeText':'' :''}}">{{item.name}}</text>
  10. <view wx:if="{{item.isShow == null}}">
  11. <text class="cuIcon-fold"></text>
  12. <text class="cuIcon-unfold"></text>
  13. </view>
  14. <view wx:if="{{item.isShow != null}}">
  15. <text class="cuIcon-fold" wx:if="{{item.isShow}}"></text>
  16. <text class="cuIcon-unfold" wx:else></text>
  17. </view>
  18. </view>
  19. </view>
  20. <view class="{{index % 2 == 0 ?'paramsItem':'paramsItem active'}}" wx:for="{{expressData}}" wx:for-item="item" wx:for-index="index">
  21. <view>{{item.addr}}</view>
  22. <view>{{item.o}}</view>
  23. <view>{{item.i}}</view>
  24. </view>
  25. </view>