Authored by mali

订单详情加预售标识

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