| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <cu-custom bgColor="bg-color" isBack="{{true}}" title="订单列表"></cu-custom>
- <view class="toptip {{tipStaus}} text-white {{tipType}}" style='top:{{CustomBar}}px;'>{{tipText}}</view>
- <view class="query_top_hu"></view>
- <view class="worker_search">
- <view class="worker_search_con">
- <input type="text" placeholder="请输入关键字" value="{{keyword}}" bindinput="setKeyword"></input>
- <view class="text-color" bindtap="searchList"><text class="cuIcon-search"></text>搜索</view>
- </view>
- </view>
- <view class="query_list">
- <view class="query_item" wx:for="{{list}}" wx:key="id" bindtap="setOrder" data-item="{{item}}">
- <view>
- <view class="query_item_txt"><text class="query_item_label">订单号:</text> <text>{{item.code || "N/A"}}</text></view>
- <view class="query_item_txt"><text class="query_item_label">下单日期:</text> <text>{{item.orderTime || "N/A"}}</text>
- </view>
- <!-- <view class="query_item_txt">
- <text class="query_item_label">发运日期: </text>
- <view> {{item.startTime || "N/A"}}</view>
- </view> -->
- <view class="query_item_txt">
- <text class="query_item_label">发运日期: </text>
- <view> {{item.startTime || "N/A"}}</view>
- </view>
- <view class="query_item_txt">
- <text class="query_item_label">产品名称: </text>
- <view> {{item.goodsName || "N/A"}}</view>
- </view>
- <view class="query_item_txt">
- <text class="query_item_label">生产厂家: </text>
- <view> {{item.manufac || "N/A"}}</view>
- </view>
- <view class="query_item_txt">
- <text class="query_item_label">客户名称: </text>
- <view> {{item.cusName || "N/A"}}</view>
- </view>
- <view class="query_item_txt">
- <text class="query_item_label">运抵省份: </text>
- <text> {{item.province || "N/A"}}</text>
- </view>
- <view class="query_item_txt">
- <text class="query_item_label">承运商: </text>
- <text> {{item.transportName || "N/A"}}</text>
- </view>
- <view class="query_item_txt">
- <text class="query_item_label">运输方式: </text>
- <text> {{item.transportType || "N/A"}}</text>
- </view>
- <view class="query_item_txt">
- <text class="query_item_label">车牌: </text>
- <text> {{item.plateNum || "N/A"}}</text>
- </view>
- <view class="query_item_txt">
- <text class="query_item_label">送货地点: </text>
- <view> {{item.sendAreaName || "N/A"}}</view>
- </view>
- <view class="query_item_txt">
- <text class="query_item_label">运抵目的地: </text>
- <view> {{item.desti || "N/A"}}</view>
- </view>
- </view>
- </view>
- </view>
- <view class="no_data" wx:if="{{list.length<=0}}">
- <image src="/img/nodata_img2.png"></image>
- <view class="no_data_txt">暂无数据</view>
- </view>
- <view class="cha_win" bindtap="closeChaWin" style="{{isTab ? 'display:block':'display:none'}}"></view>
|