Authored by mali

订单详情加预售标识

@@ -303,7 +303,7 @@ function getOrderInfo(orderCode){ @@ -303,7 +303,7 @@ function getOrderInfo(orderCode){
303 $("#clientTypeStr").html(result.data.clientTypeStr); 303 $("#clientTypeStr").html(result.data.clientTypeStr);
304 $("#payment").html(result.data.payment); 304 $("#payment").html(result.data.payment);
305 $("#payTime").html(result.data.payTime); 305 $("#payTime").html(result.data.payTime);
306 - $("#sellerSendGoodsTime").html(result.data.sellerSendGoodsTime + (result.data.attributes == 4 ? '预售' : '')); 306 + $("#sellerSendGoodsTime").html((result.data.sellerSendGoodsTime ? result.data.sellerSendGoodsTime : '') + (result.data.attributes == 4 ? '【预售】' : ''));
307 $("#sellerWaybillCode").html(result.data.sellerWaybillCode); 307 $("#sellerWaybillCode").html(result.data.sellerWaybillCode);
308 $("#platformSendGoodsTime").html(result.data.platformSendGoodsTime); 308 $("#platformSendGoodsTime").html(result.data.platformSendGoodsTime);
309 $("#platformWaybillCode").html(result.data.platformWaybillCode); 309 $("#platformWaybillCode").html(result.data.platformWaybillCode);