物流端
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/freiLogistics/freiLogistics.wxml

102 lines
3.8 KiB

1 year ago
<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">
<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>
<view class="from-con">
<label>转运箱号</label>
<input type="text" placeholder="转运箱号" placeholder-class="place" value=""/>
</view>
<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>
<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>
<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>