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

67 lines
2.9 KiB

<!--pages/queryfrei/queryfrei.wxml-->
<view style="background: -webkit-linear-gradient(top,#27adb0,#ebf7f7,#f1f1f1);min-height: 1300rpx;padding: 20rpx;">
<view class="form">
<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>
<picker mode="date" value="date" start="start" end="end" bindchange="bindDateChangeend" class="from-con">
<label> </label>
<input type="text" disabled="true" placeholder="请选择结束日期" placeholder-class="place" value="{{endDate}}"/>
</picker>
<view class="from-con">
<label>物流单号:</label>
<input type="text" placeholder="物流单号" placeholder-class="place"/>
</view>
<picker class="from-con" bindchange="bindPickerChange" value="{{index}}" range="{{array}}">
<label>送检机构:</label>
<input type="text" disabled="true" placeholder="请选择送检机构" placeholder-class="place" value="{{array[index]}}"/>
</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"/>
</view>
<view class="from-button">
<button style="background-color: #ddd;">重 置</button>
<button style="background-color: #54b4b6; color: #fff;">查 询</button>
</view>
</view>
<view style="background-color: #fff;border-radius: 15rpx;margin-top: 15rpx; padding: 30rpx 10rpx 50rpx 10rpx;">
<scroll-view scroll-x style="width: 100%; border: 1rpx #ddd solid;">
<view class="tr top" >
<view class="td td1">序号</view>
<view class="td">物流单号</view>
<view class="td">送检机构</view>
<view class="td td2">日期</view>
<view class="td">物流费用</view>
<view class="td">转运方式</view>
</view>
<view class="tr" >
<view class="td td1">1</view>
<view class="td">JD56549856</view>
<view class="td">XX卫生院</view>
<view class="td td2">2023-5-12 14:32</view>
<view class="td">10.00</view>
<view class="td">私家车</view>
</view>
<view class="tr" >
<view class="td td1">2</view>
<view class="td">JD56549856</view>
<view class="td">XX卫生院</view>
<view class="td td2">2023-5-12 14:32</view>
<view class="td">10.00</view>
<view class="td">私家车</view>
</view>
</scroll-view>
<!-- <view style="text-align: right; font-size: 26rpx;margin-top: 30rpx;padding: 0 20rpx;">共 2 条</view> -->
</view>
</view>