123456789101112131415161718192021222324252627282930 |
- <logout-show title="{{'订单'}}" showBtn="{{true}}" wx:if="{{ token==='' }}" />
- <van-sticky wx:if="{{ token!=='' }}">
- <van-tabs wx:if='{{!hasRefund}}' active="{{ tabIndex }}" color="#1989fa" bind:change="statusTap">
- <van-tab wx:for="{{statusType}}" wx:key="index" title="{{item.label}}" />
- </van-tabs>
- </van-sticky>
- <view class="order" wx:if="{{ token!=='' }}">
- <van-empty wx:if="{{ orderList.length===0 }}" description="暂无订单" />
- <view class="order-list" hidden="{{orderList ? false : true}}">
- <view class="order-item" wx:for="{{orderList}}" wx:key="index" bindtap="bindViewTap" data-type="{{item.reqCode}}">
- <view class="order-item-header">
- <text>{{item.act_time_day}}</text><text class="dian">·</text>
- <text>{{item.shortname}}</text><text class="dian">·</text>
- <text>{{item.participant_min}}</text><text>{{item.participant_max===0?'+人':'~'+item.participant_max+'人'}}</text><text class="dian">·</text>
- <text>{{item.require_item_name}}
- </text>
- </view>
- <view class="order-item-body">
- {{item.flow_stage}}:
- {{ item.status_name}}
- </view>
- <view class="order-item-footer">
- <van-button round custom-style="width:95px;height:36px;padding:0 18px;border:1px solid #323233" type="default" bind:click="bindViewTap2" catchtap="aa">联系顾问</van-button>
- <van-button round plain custom-style="width:95px; margin:0 0 0 10px;height:36px;padding:0 18px;" type="info">查看详情</van-button>
- <van-button round type="info" custom-style="width:95px;margin:0 0 0 10px;height:36px;padding:0 18px;" bind:click="bindViewTap1" catchtap="aa">继续办会</van-button>
- </view>
- </view>
- <view wx:if="{{!hasData&&orderList.length>0}}" style="text-align: center;font-size: 13px;">没有更多了</view>
- </view>
- </view>
|