65 lines
2.5 KiB
Plaintext
65 lines
2.5 KiB
Plaintext
<nav-bar class="nav-bar"/>
|
|
<view class="tab-bar">
|
|
<view class="item-container {{tabIndex==0?'current':''}}" bind:tap="changeTab" data-index="0">
|
|
<view class="item">跑腿服务</view>
|
|
</view>
|
|
<view class="item-container {{tabIndex==1?'current':''}}" bind:tap="changeTab" data-index="1">
|
|
<view class="item">团购省钱</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="order-list" wx:if="{{tabIndex==0}}">
|
|
<view class="item" wx:for="{{orderList}}" wx:key="index" bind:tap="goToDetail">
|
|
<view class="head">
|
|
<view class="icon-con">
|
|
<image class="icon" src="/assets/icon/order/package@2x.png"/>
|
|
</view>
|
|
<view class="center">代取快递</view>
|
|
<view class="status {{index==0?'waiting':(index==1?'receiving':'')}}">
|
|
{{index==0?'待接单':(index==1?'已接单':'')}}
|
|
</view>
|
|
</view>
|
|
<view class="content">
|
|
<view class="spliter"></view>
|
|
<view class="address">{{item.address.community_name}}{{item.address.address_detail}}</view>
|
|
<view class="time">下单时间:{{item.create_time}}</view>
|
|
<view class="pay" wx:if="{{index==2}}">
|
|
<view class="left">
|
|
<label>跑腿费用</label>
|
|
<label class="money">3.4</label>
|
|
</view>
|
|
<button class="button" type="primary" size="mini">立即支付</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="group-list" wx:if="{{tabIndex==1}}">
|
|
<view class="item status-waiting" wx:for="{{merchantOrderList}}" wx:key="index" bind:tap="goToGroupDetail">
|
|
<view class="head">
|
|
<view class="name">
|
|
<label>{{item.merchant_name}}</label>
|
|
<image class="icon" src="/assets/icon/order/right-arrow@2x.png"/>
|
|
</view>
|
|
<view class="status">{{item.status}}</view>
|
|
</view>
|
|
<view class="content">
|
|
<image class="image" src="{{item.product_image}}"/>
|
|
<view class="center">
|
|
<view>{{item.product_name}}</view>
|
|
<view class="tags">
|
|
<view class="tag">周一至周五可用</view>
|
|
<view class="tag">免预约</view>
|
|
</view>
|
|
</view>
|
|
<view class="money money-normal">{{item.order_amount}}</view>
|
|
</view>
|
|
<view class="btns">
|
|
<button class="button button1" plain size="mini">再来一单</button>
|
|
<button class="button button2" plain size="mini">查看券码</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="list-empty" wx:if="{{false}}">
|
|
<image class="icon" src="/assets/icon/order/empty@2x.png"/>
|
|
<view class="text">暂无相关订单</view>
|
|
</view> |