1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <!--StepPage/pages/report/ShiList/ShiList.wxml-->
- <van-dialog id="van-dialog" />
- <van-dialog
- use-slot
- title="审核流程"
- show="{{ show_m }}"
- show-cancel-button
- show-confirm-button='{{fasle}}'
- >
- <van-steps
- steps="{{ steps }}"
- active="{{ active }}"
- direction="vertical"
- active-color="#38f"
- />
- </van-dialog>
- <van-button type="default" class='btn' bindtap="handleReturn">上一页</van-button>
- <van-button type="primary" class='btn1' bindtap="handleDetail">详情</van-button>
- <van-button type="success" class='btn2' bindtap="handleEdit">编辑</van-button>
- <image src="../../../../images/head.png" style="width:100%;height: 250rpx;z-index:-1;margin-top: 180rpx;"></image>
- <view class="title">领料单列表</view>
- <van-dropdown-menu class="search">
- <van-dropdown-item id="item" title="{{ itemTitle }}">
- <picker mode="date" value="{{start_date}}" start="2015-01-01" end="2040-12-30" bindchange="bindDateChange1">
- <view class="picker">
- 起始时间: {{start_date?start_date:'请点击选择时间'}}
- </view>
- </picker>
- <picker mode="date" value="{{end_date}}" start="2015-01-01" end="2040-12-30" bindchange="bindDateChange">
- <view class="picker">
- 结束时间: {{end_date?end_date:'请点击选择时间'}}
- </view>
- </picker>
- <van-radio-group value="{{ radio }}" bind:change="onChange">
- <van-cell-group>
- <van-cell title="全部" clickable data-name="3" bind:click="onClick">
- <van-radio slot="right-icon" name="3" />
- </van-cell>
- <van-cell title="已审核" clickable data-name="2" bind:click="onClick">
- <van-radio slot="right-icon" name="2" />
- </van-cell>
- <van-cell title="审核中" clickable data-name="1" bind:click="onClick">
- <van-radio slot="right-icon" name="1" />
- </van-cell>
- <van-cell title="未审核" clickable data-name="0" bind:click="onClick">
- <van-radio slot="right-icon" name="0" />
- </van-cell>
- </van-cell-group>
- </van-radio-group>
- <view style="padding: 5px 16px;">
- <van-button type="primary" block round bind:click="onConfirm1">
- 确认
- </van-button>
- </view>
- </van-dropdown-item>
- </van-dropdown-menu>
- <view wx:for="{{items}}" wx:key="index" class="{{item.is_choose?'is_item':'item'}}" wx:key="index" data-item="{{item}}" data-index="{{index}}" bindtap="handleChoose">
- <view style="position: absolute;right: 10rpx;"><van-button color='red' catchtap='handleDel' data-item="{{item}}">删除</van-button></view>
- <view class="item_child"><view class="child_text">订单号:</view>{{item.order_number}}</view>
- <view class="item_child"><view class="child_text">物流公司:</view>{{item.logistics_company}}</view>
- <view class="item_child"><view class="child_text">物流单号:</view>{{item.logistics_number}}</view>
- <view class="item_child"><view class="child_text">单据日期:</view>{{item.crt_time}}</view>
- <view class="item_child"><view class="child_text">4s店名称:</view>{{item.four_shop_name}}</view>
- <view class="item_child"><view class="child_text">收货状态:</view>{{item.take_status_name}}</view>
- <button wx:if='{{(item.send_status==2&&item.take_status==0)?true:false}}' type="primary" catchtap="handleLock" data-item="{{item}}" data-index="{{index}}">签收</button>
- <button catchtap="handleClickCheck" data-item="{{item}}" style="background-color: rgb(252, 170, 48);color: black;" wx:if="{{(item.send_status==2&&item.take_status==1)?true:false}}">审核流程</button>
- </view>
- <view style="padding-bottom: 100rpx;"></view>
|