- <!--pages/myorders/myorders.wxml-->
- <nav-bar navbar-data="{{navbarData}}"></nav-bar>
- <view class="top-tabs">
- <view class="tab">
- <view class="one" bindtap="tabsbind" wx:for="{{tabs}}" wx:key="index" data-id="{{index}}">
- <p style="color: {{zhong == index ? '#FF874E' : '#656565'}};">{{item}}</p>
- <span class="tabimg">
- <image wx:if="{{zhong == index}}" src="/images/foot-line.png"></image>
- </span>
- </view>
- </view>
- <image class="sousuo" src="/images/select.png" ></image>
- </view>
- <view class="orders">
- <order wx:for="{{orders}}" orderData="{{item}}" data-status="{{item.order_status}}" data-id="{{item.id}}" bind:share="shareOrder" bindtap="navToOrderDetail"></order>
- </view>
|