$(document).ready(function(){ initdata(); }) function initdata(){ $.ajax({ url:base_api+"./zz_wxsct/Model/travel/list.php",//请求地址 type: "post", //请求方式 data:{}, dataType: "json", success: function (data) { console.log(data); if(data.code == 0){ if(data.list.length==0){ $("#go_reserve").show(); }else{ setStorJson("data2",data.list[1]); createHtml(data.list); } }else{ } }, fail: function (data) { } }); } function createHtml(data){ var temp = "" for(var i=0;i即将出行' + '' }else{ var result_year=data[i].year.split("-"); index = '
' + '
' + '
'+result_year[1]+'月
' + '
'+result_year[2]+'日
' + '
'+result_year[0]+'
' + '
' + '' + '
' } temp += '
' + '
' +index + '
' + '
' + '
' + '
' + '
'+data[i].order_start_time+'
' + '
'+data[i].order_start_date+' '+data[i].week+'
' + '
' + '
全程用时:'+data[i].order_used_time+'
' + '
' + '
' + '
' + '
' + '
' +data[i].order_start_area_name+' — '+data[i].order_start_res_name + '
' + '
' +data[i].order_end_area_name+' — '+data[i].order_end_res_name + '
' + '
' + '
' + '
' + '
'+data[i].seat_type+' x '+data[i].seat_num+'
' + '
车牌号:'+data[i].order_bus_no+'
' + '
机:'+data[i].order_driver_name+'
' + '
' + '
' + '
' + '我要找车' + '
' + '
' + '电子检票' + '
' + '
' + '
' + '
' } $("#trip_list").html(temp); $(".check_code").click(function(){ var trip_detail_num = $(this).attr("trip_detail_num") setStorJson("trip_detail",data[trip_detail_num]); window.location.href="e_ticket.html"; }) $(".ditu").click(function() { var ifgps = $(this).attr("ifgps"); if(ifgps=="2"){ alert("您乘坐的车次暂未指派具体车辆,请在出发前一天18点之后查看车辆位置"); }else if(ifgps=="3"){ alert("本车次暂不支持车辆定位找车"); }else{ var bus_num = $(this).attr("bus_num"); setStorage("bus_num",bus_num); setStorage("bus_name",$(this).attr("bus_name")); setStorage("bus_phone",$(this).attr("bus_phone")); window.location.href="bus_line.html"; } }); } $("#yuding").click(function(){ window.location.href="travel_book.html"; })