...
|
...
|
@@ -111,6 +111,13 @@ |
|
|
<label>平台快递单号:</label>
|
|
|
<input id="platformWaybillCode" type="text" class="easyui-textbox" style="width:230px"/>
|
|
|
|
|
|
<label> 物流异常处理:</label>
|
|
|
<select id="sellerDeliveryDealType" class="easyui-combobox" style="width:150px;" >
|
|
|
<option value="">全部</option>
|
|
|
<option value="0">未处理</option>
|
|
|
<option value="1">已处理</option>
|
|
|
</select>
|
|
|
|
|
|
<br><br>
|
|
|
<label>订单来源: </label>
|
|
|
<select id="clientType" class="easyui-combobox" style="width:150px;" >
|
...
|
...
|
@@ -172,6 +179,7 @@ $(function() { |
|
|
sellerUid: $("#sellerUid").val(),
|
|
|
platformWaybillCode : $("#platformWaybillCode").val(),
|
|
|
clientType : $("#clientType").myCombobox("getValue"),
|
|
|
sellerDeliveryDealType : $("#sellerDeliveryDealType").myCombobox("getValue"),
|
|
|
attributes : $("#attributes").myCombobox("getValue"),
|
|
|
buyerStartTime : new Date($('#buyerStartTime').datetimebox('getValue')).getTime(),
|
|
|
buyerEndTime : new Date($('#buyerEndTime').datetimebox('getValue')).getTime(),
|
...
|
...
|
@@ -189,6 +197,7 @@ $(function() { |
|
|
$("#sellerWaybillCode").textbox('setValue','');
|
|
|
$("#status").combobox('setValue','');
|
|
|
$("#channel").combobox('setValue','');
|
|
|
$("#sellerDeliveryDealType").combobox('setValue','');
|
|
|
$("#productId").textbox('setValue','');
|
|
|
$("#sku").textbox('setValue','');
|
|
|
$("#buyerMobile").textbox('setValue','');
|
...
|
...
|
@@ -422,9 +431,9 @@ function switchOrderStatus(navStatus){ |
|
|
$("#attributes").combobox('setValue','');
|
|
|
$("#buyerStartTime").datetimebox('setValue','');
|
|
|
$("#buyerEndTime").datetimebox('setValue','');
|
|
|
/*$("#orderListTable").datagrid("load", {
|
|
|
navStatus : navStatus
|
|
|
});*/
|
|
|
if(12!=navStatus&&13!=navStatus){
|
|
|
$("#sellerDeliveryDealType").combobox('setValue','');
|
|
|
}
|
|
|
getOrderList();
|
|
|
}
|
|
|
|
...
|
...
|
|