物流端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
yyt-mall-wl/pages/meLogistics/meLogistics.wxml

112 lines
4.6 KiB

<!--pages/meLogistics/meLogistics.wxml 自建物流-->
<view class="box">
<view class="back">
<view class="top">
<input type="text" value="{{pipenum}}"/>
<view style="background-color: #eee;" bindtap="scacode">扫 码</view>
<view style="background-color: #23c559; color: #fff;" bindtap="phot">拍 照</view>
</view>
<view class="form">
<view class="from-con">
<label>物流单号:</label>
<input type="text" placeholder="物流单号" disabled="false" placeholder-class="place" value="{{selfOrderCode}}"/>
</view>
<picker class="from-con" bindchange="bindPickerChange" value="{{index}}" range="{{ins}}">
<label>送检机构:</label>
<input type="text" disabled="true" placeholder="请选择送检机构" placeholder-class="place" value="{{ins[index]}}"/>
</picker>
<picker mode="date" value="date" start="start" end="end" bindchange="bindDateChange" class="from-con">
<label>日期:</label>
<input type="text" disabled="true" placeholder="请选择日期" placeholder-class="place" value="{{date}}"/>
</picker>
<view class="from-con">
<label>数量:</label>
<input type="text" placeholder="数量" placeholder-class="place"/>
</view>
<picker class="from-con" bindchange="bindbushChange" range="{{bushList}}">
<label>运输方式:</label>
<input type="text" disabled="true" placeholder="请选择运输方式" placeholder-class="place" value="{{bushList[bush]}}"/>
</picker>
<view class="from-con">
<label>转运箱号:</label>
<input type="text" placeholder="转运箱号" placeholder-class="place" value=""/>
</view>
<picker class="from-con" mode="multiSelector" bindchange="bindMultiPickerChange" bindcolumnchange="bindMultiPickerColumnChange" value="{{multiIndex}}" range="{{multiArray}}">
<label>出发时间:</label>
<input value='{{time}}' placeholder='请选择出发时间' placeholder-class="place" disabled="true"/>
</picker>
<picker class="from-con" mode="multiSelector" bindchange="bindMultiPickerChange1" bindcolumnchange="bindMultiPickerColumnChange1" value="{{multiIndex1}}" range="{{multiArray1}}">
<label>到达时间:</label>
<input value='{{time1}}' placeholder='请选择到达时间' placeholder-class="place" disabled="true"/>
</picker>
<view class="from-con">
<label>车牌号:</label>
<input type="text" placeholder="车牌号" placeholder-class="place" value=""/>
</view>
<view class="from-con">
<label>物流员:</label>
<input type="text" placeholder="物流员" placeholder-class="place" value=""/>
</view>
<view class="from-con">
<label>备注:</label>
<input type="text" placeholder="备注" placeholder-class="place" value=""/>
</view>
<view class="from-con">
<label>驾驶员:</label>
<input type="text" placeholder="驾驶员" placeholder-class="place" value=""/>
</view>
</view>
</view>
<view class="back">
<view class="bush">
<view style="flex: 1;">物流车拍照</view>
<button bindtap="bushPhot">拍 照</button>
</view>
<view class="bush-img">
<image src="../../images/bush.png"></image>
<image src="../../images/bush.png"></image>
</view>
</view>
<view class="back">
<view class="bush">
<view style="flex: 1;">转运箱拍照</view>
<button bindtap="boxPhot">拍 照</button>
</view>
<view class="bush-img">
<image src="../../images/bush.png"></image>
<image src="../../images/bush.png"></image>
</view>
</view>
<view class="back">
<view class="con">
<view style="flex: 1;">总计:200/管数</view>
<button style="background-color: #ddd;">修 改</button>
<button style="color: #fff;">保 存</button>
</view>
<scroll-view scroll-x class="tabel">
<view class="tr tab-top">
<view class="td1">序号</view>
<view class="td">样本条码号</view>
<view class="td">接收时间</view>
<view class="td">样本状态</view>
<view class="td">物流员</view>
<view class="td">物流单号</view>
</view>
<view class="tr" wx:for="{{list}}" wx:key="index" bindtap="goDetail">
<view class="td1">{{item.id}}</view>
<view class="td">{{item.number}}</view>
<view class="td">{{item.time}}</view>
<view class="td">{{item.status}}</view>
<view class="td">{{item.name}}</view>
<view class="td">{{item.num}}</view>
</view>
</scroll-view>
</view>
</view>