CustomerList-hostList

$(document).ready(function(){ initSearchSelect(0);//初始化查询条件下拉框 getDraftGrid();//草稿列表 $('#tabs').tabs( { onSelect : function(title, index) { if (title == '草稿') { initSearchSelect(0); getDraftGrid(); } else if (title == '已退回') { initSearchSelect(3); getBackGrid(); } else if (title == '已审批') { initSearchSelect(2); getHostDoneGrid(); //} else if (title == '待审批') { } else if (title == '审批中') { initSearchSelect(1); getHostGrid(); } return false; } }); });
其中这个初始化函数是下面的图中的下拉部分,并选中草稿列表属性。这个网页由两部分组成,下拉菜单和列表

CustomerList-hostList_第1张图片
Paste_Image.png

你可能感兴趣的:(CustomerList-hostList)