Authored by mali

二手

@@ -332,13 +332,17 @@ function getOrderInfo(orderCode){ @@ -332,13 +332,17 @@ function getOrderInfo(orderCode){
332 } 332 }
333 //订单类型是预售订单还是普通订单 333 //订单类型是预售订单还是普通订单
334 var attributes = result.data.attributes; 334 var attributes = result.data.attributes;
335 - var attributesStr = '普通现货订单'; 335 + var attributesStr = '现货订单';
336 if("2" == attributes){ 336 if("2" == attributes){
337 attributesStr = '线下店订单'; 337 attributesStr = '线下店订单';
338 }else if("3" == attributes){ 338 }else if("3" == attributes){
339 attributesStr = '急速发货订单'; 339 attributesStr = '急速发货订单';
340 }else if("4" == attributes){ 340 }else if("4" == attributes){
341 - attributesStr = '普通预售'; 341 + attributesStr = '预售';
  342 + }else if("5" == attributes){
  343 + attributesStr = '全新瑕疵';
  344 + }else if("4" == attributes){
  345 + attributesStr = '二手';
342 } 346 }
343 $("#preSellOrNormal").html(attributesStr); 347 $("#preSellOrNormal").html(attributesStr);
344 348
@@ -120,10 +120,11 @@ @@ -120,10 +120,11 @@
120 <label>&nbsp;&nbsp;&nbsp;&nbsp;订单类型:</label> 120 <label>&nbsp;&nbsp;&nbsp;&nbsp;订单类型:</label>
121 <select id="attributes" class="easyui-combobox" style="width:150px;" > 121 <select id="attributes" class="easyui-combobox" style="width:150px;" >
122 <option value="">全部</option> 122 <option value="">全部</option>
123 - <option value="1">普通现货订单</option> 123 + <option value="1">现货订单</option>
124 <option value="2">线下店订单</option> 124 <option value="2">线下店订单</option>
125 - <option value="3">急速发货订单</option>  
126 - <option value="4">普通预售</option> 125 + <option value="4">预售</option>
  126 + <option value="5">全新瑕疵</option>
  127 + <option value="6">二手</option>
127 </select> 128 </select>
128 <label>买家下单时间:</label> 129 <label>买家下单时间:</label>
129 <input id="buyerStartTime" type="text"> 130 <input id="buyerStartTime" type="text">