123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!--导航条-->
- <view class="top">
- </view>
- <view class="navbar">
- <lable wx:for="{{navbar}}" data-idx="{{index}}" class="item {{currentTab==index ? 'active' : ''}}" wx:key="unique" bindtap="navbarTap">
- <text>{{item}}</text>
- </lable>
- </view>
- <!--全部-->
- <view hidden="{{currentTab!==0}}" class='total' style='background-color: #EBEBEB;'>
- <view wx:if="{{list.length>0}}">
- <!-- 外层 -->
- <view class='cont_count' wx:for="{{list}}" wx:key="key">
- <!-- 编号 -->
- <view class='seria'>
- <label class='seriac_name'>
- 32.59L
- <text>{{item.binahao}}</text>
- </label>
- <!-- 订单状态 -->
- <label class='seriac_start'>
- {{item.start}}</label>
- </view>
- </view>
- </view>
- <!-- 否则 -->
- <view wx:else>
- <!-- 外层 -->
- <view class='cont_count'>
- <label class='none_tab'>亲,您还暂未下单哦~~</label>
- </view>
- </view>
-
- </view>
-
- <!--代付款-->
- <view hidden="{{currentTab!==1}}">
-
-
- </view>
- <!-- 代发货 -->
- <view hidden="{{currentTab!==2}}">
-
- </view>
- <!-- 待收货 -->
- <view hidden="{{currentTab!==3}}">
-
- <!-- -->
- </view>
- <!-- 已完成 -->
- <view hidden="{{currentTab!==4}}">
-
-
- </view>
|