// 获取表格数据 function getList(page){ page = page || 1; var pageSize = 10, data = { "name" : $("#name").val(), "rank" : $("#rank").val(), "pageNo" : page, "pageSize" : pageSize }, html = ""; $("#page, #list").empty(); ajax("ajax_list.do", data, function(res){ if (res.code == 1 && res.list.records.length > 0){ $.each(res.list.records, function(index, item){ html += ''+ ''+ ''+ (item.name == undefined || item.name == null ? '' : item.name ) +''+ ''+ (item.rankName == undefined || item.rankName == null ? '' : item.rankName ) +''+ ''+(item.imgUrl ? '':' ')+''+ ''+ (update_flag == 1 ? '编辑  ' : '') + (delete_flag == 1 ? '删除' : '' ) + ''+ ''; }); $("#list").html(html); $.checkbox(); $("#count").text(res.list.total); var newpage = new createPage(res.list.total, page, pageSize, 3); $("#page").html(newpage.pageHtml); } else { $("#list").info("暂无数据。"); } }); } pageGo = function(page){ resetCheckAll(); getList(page); } // 删除单个 function delRecord(id){ confirm("确定删除该条记录吗?", function(){ ajax("del.do", {"id" : id}, function(res){ if (res.code == 1){ alert("删除成功。", 1, function(){ window.location.href = "index.do"; }); } else { alert(res.msg); } }); }); } // 删除多个 function delRecordBatch(){ var arr = document.getElementsByName("chk"); var ids = ""; for (i=0; i 1){ top.alert("请上传媒体LOGO"); return false; } if (data['rank'].isEmpty()){ top.alert("请选择媒体等级"); return false; } // 提交数据 top.ajax("save.do", data, function(res){ if (res.code == 1){ top.alert("保存成功。", 1, function(){ top.getList(1); top.$.closeWindow(); }); } else { top.alert(res.msg); } }); } // 弹窗 function platformModfiy(act, title, id){ title = title || ""; id = id || ""; $.openWindow(act.decode("add","新增","edit","修改","")+title, "detail.do?id="+id, 500, 370, true); }