62 lines
3.0 KiB
Plaintext
62 lines
3.0 KiB
Plaintext
<!-- 头部 -->
|
|
<nav-bar isBack="{{isBack}}" pageTitle="{{pageTitle}}" system="{{system}}" />
|
|
<!-- view/logistics/logistics/logistics.wxml -->
|
|
<view class="logCentre">
|
|
<view class="logCentre_top flex-con3">
|
|
<view class="top1">
|
|
<view class="mon_text">我的钱包(元)</view>
|
|
<view class="mon_p mt40">{{logPerInfo.money}}</view>
|
|
</view>
|
|
<view class="top_state dis-flex">
|
|
<view class="flex1 dis-flex top_a">
|
|
<view class="flex1 flex-con3" bind:tap="_topTab">
|
|
<image class="yes_icon" src="{{tabStatus==1?'/static/img/icon/wxPay2.png':'/static/img/icon/cancellation_icon.png'}}" />
|
|
<view wx:if="{{tabStatus==1}}" class="ml10 mr15">今日上班</view>
|
|
<view wx:if="{{tabStatus==2}}" class="ml10 mr15">今日休息</view>
|
|
<image class="Inverted_icon" src="/static/img/icon/Inverted_icon.png" />
|
|
</view>
|
|
<view wx:if="{{ topTab }}" class="top_tab">
|
|
<view class="top_tab_row dis-flex" data-type="1" bind:tap="tabStatus">
|
|
<view class="flex1 flex-con3">
|
|
<image class="yes_icon" src="/static/img/icon/wxPay2.png" />
|
|
<view class="ml10 mr15">今日上班</view>
|
|
</view>
|
|
</view>
|
|
<view class="top_tab_row dis-flex" data-type="2" bind:tap="tabStatus">
|
|
<view class="flex1 flex-con3">
|
|
<image class="yes_icon" src="/static/img/icon/cancellation_icon.png" />
|
|
<view class="ml10 mr15">今日休息</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="order_state pd30">
|
|
<view class="sur_tit dis-flex mt50">
|
|
<view class="flex1 tit_text">全部订单</view>
|
|
<view class="sur_tit_r flex-con3" bind:tap="goOrderList">
|
|
<span class="flex1 mr10">全部订单</span>
|
|
<image src="/static/img/icon/right-r.png" />
|
|
</view>
|
|
</view>
|
|
<view class="order_row">
|
|
<view wx:for="{{orderList}}" wx:key class="row_list mt30 flex-con3" data-item="{{item}}" bind:tap="goOrderList">
|
|
<view class="flex1 flex-con2">
|
|
<view class="order_img">
|
|
<image src="{{item.img}}" />
|
|
</view>
|
|
<view class="order_p1 ml40">{{item.name}}</view>
|
|
<view class="order_p2 ml30 {{item.type == 3 ?'order_p3':''}}">
|
|
{{item.num}}
|
|
</view>
|
|
</view>
|
|
<image class="right" src="/static/img/icon/rthyrthertherth.png" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- 加载动画 -->
|
|
<loading-prog isLoading="{{isLoading}}"></loading-prog>
|
|
<!-- toasta提示 -->
|
|
<i-toast id="toast" /> |