//订单详情 $(function(){ var obj = util.getQueryString(); var id = obj.orderId; goodsDetail(id); }) //商品详情 function goodsDetail(id){ util.sendAjax({ url:'shop/shopOrder/'+id, data:{}, async:true, loadFlag:true, type:'GET', cache:false, success:function(json){ if(json.rc ==0){ var data = json.data $("#orderCode").html(data.shopOrderCode); $("#orderTime").html(data.orderDate); $("#orderNum").html(data.num); $("#postPrice").html(data.postPrice); $("#totalPrice").html(data.price); $("#memberCode").html(data.memberCode); $("#memberName").html(data.memberName); $("#mobile").html(data.postDel); $("#address").html(data.province+data.city+data.address); $("#redOrderCode").val("订单编号:"+data.shopOrderCode); $.each(data.orderDetailList,function(index,item){ $("#goodsList").append(" " +""+item.goodsName+"" +""+item.goodsNum+"" +"¥"+item.goodsPrice+"" +"¥"+item.totalPrice+"" +"") }) }else{ layer.open({ content: "获取商品详情失败:"+json.msg ,skin: 'msg' ,time: 2 //2秒后自动关闭 }); } } }); }