| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!--pages/shenhe/shenhe.wxml-->
- <view class="noLogin" wx:if="{{(userInfo && cartList.length == 0) || !userInfo.userId}}">
- <image src="/images/list-empty.png" style="width: 260rpx;height: 260rpx;" mode="heightFix"></image>
- <!-- <view class="iconfont icon-gouwuchequeshengye1" style="font-size: 150rpx;"></view> -->
- <view>空空如也 <text wx:if="{{!userInfo || !userInfo.userId}}" class="iconfont keyboard_arrow_right loginText" bind:tap="toLogin">去登录</text></view>
- </view>
- <block wx:else>
- <view class="fiexd">
- <TopTabbar id="TopTabbar" class="topTab" tabList="{{statusAdminList}}" tabIndex="{{checkStatus}}" bind:change="changeTabbar"></TopTabbar>
- </view>
- <view class="orderList" wx:for="{{orderList}}" wx:key="checkId">
- <view class="order">
- <view class="checkNumber iconfont icon-a-wodedingdan1" style="position: relative;">
- {{item.checkNumber}}
- <view style="position: absolute; right: 24rpx; top: 0;">{{statusAdminList[item.checkStatus+1].name}}</view>
- </view>
- <view class="info">
- <view>成本中心:{{item.virtualInventoryName}}</view>
- <view>下单时间:{{item.orderTime}}</view>
- <view>下单销售:{{item.orderSaleName}}</view>
- <view>订单数量:{{item.orderNums}}</view>
- <view>商品数量:{{item.productNums}}</view>
- </view>
- <view class="orderBtn">
- <view wx:if="{{item.checkApproveUserId != userInfo.userId && item.checkStatus == 0}}" class="orderBtnItem jvjue" data-item="{{item}}" catch:tap="approve2">终止订单</view>
- <view wx:if="{{item.checkApproveUserId != userInfo.userId && item.checkStatus == 0}}" class="orderBtnItem tongyi" data-item="{{item}}" catch:tap="approve">审批通过</view>
- <navigator url="/pages/order/admin/info/info?checkId={{item.checkId}}" class="orderBtnItem " data-item="{{item}}">查看详情</navigator>
- </view>
- </view>
- </view>
- <view style="text-align: center;margin-top: 20rpx;">
- <view wx:if="{{loadding}}" class="iconfont icon-loadding"></view>
- <view wx:elif="{{pages == null && orderList.length == 0}}">
- <image class="listEmpty" src="/images/list-empty.png"></image>
- <view wx:if="{{roleShow}}" class="loadMore" style="margin-top: 20rpx;">啥记录也没有!</view>
- <view wx:else class="loadMore" style="margin-top: 20rpx;font-size: 30rpx;">抱歉,您没有审批权限!</view>
- </view>
- <view wx:elif="{{current < pages}}" class="loadMore" catch:tap="initData">点击加载更多</view>
- <view wx:else="" class="noMore">--我也是有底线的--</view>
- </view>
- <view style="height: 180rpx;"></view>
- </block>
- <tabbar></tabbar>
|