EP-WachatApp/eaterplanet_ecommerce/moduleA/groupCenter/detailsList.wxml

42 lines
1.5 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<ep-navBar title="订单明细" background='#4facfe' back="{{true}}" iconTheme='white' color='#fff' bindback="handlerGobackClick"/>
<view>
<view class='nav-bar'>
<view class='nav-bar-inner'>
<view class='nav-bar-item {{currentTab == 1 ? "current" : ""}}' bindtap='switchTab' data-type="1">
<view class='nav-bar-item-inner'>待确认收入</view>
</view>
<view class='nav-bar-item {{currentTab == 2 ? "current" : ""}}' bindtap='switchTab' data-type="2">
<view class='nav-bar-item-inner'>可提现金额</view>
</view>
</view>
</view>
<view class='cash-list'>
<view class='list-item' wx:for="{{order}}" wx:key="id">
<view class="title" wx:if="{{item.order_num_alias>0}}">
<text>订单单号({{item.order_num_alias}}</text>
</view>
<view class="main">
<view class="left">
<view class="per">
<text>订单标题:</text>
<text>{{item.name}}</text>
</view>
<view class="per" wx:if="{{item.total>0}}">
<text>订单金额:</text>
<text>¥{{item.total}}</text>
</view>
<view class="per">
<text>佣金金额:</text>
<text>¥{{item.money}}</text>
</view>
<view class="per">
<text>下单日期:</text>
<text>{{item.addtime}}</text>
</view>
</view>
</view>
</view>
<i-loadMore tip="{{tip}}" wx:if="{{!isHideLoadMore}}"></i-loadMore>
</view>
</view>