|
|
@ -1,14 +1,21 @@
|
|
|
|
|
|
|
|
<div class="edu-class-container">
|
|
|
|
<%= form_tag(url_for(evaluate_records_managements_path),:id=>"evaluate_records",:method => "post",:remote=>true) do %>
|
|
|
|
<%= form_tag(url_for(evaluate_records_managements_path),:id=>"evaluate_records",:method => "post",:remote=>true) do %>
|
|
|
|
<div class="edu-con-top clearfix xmt10">
|
|
|
|
<div class="edu-con-top clearfix mb20 bor-grey-e mt10">
|
|
|
|
<select class="fl task-form-15 task-height-30" style="margin:20px 0px 10px 25px;width: 11%" name="keyword" id="condition">
|
|
|
|
<select class="fl task-form-15 task-height-30" style="margin:20px 0px 10px 25px;width: 11%" name="keyword" id="condition">
|
|
|
|
<option value="u_name">评测者姓名搜索</option>
|
|
|
|
<option value="u_name">评测者姓名搜索</option>
|
|
|
|
<option value="s_name">评测者单位搜索</option>
|
|
|
|
<option value="s_name">评测者单位搜索</option>
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
<input class="fl task-form-20 task-height-30 mt20 ml20" name="search" maxlength="40" placeholder="输入关键字进行搜索" type="text" id="Look_name">
|
|
|
|
<input class="fl task-form-20 task-height-30 mt20 ml20" name="search" maxlength="40" placeholder="输入关键字进行搜索" type="text" id="Look_name">
|
|
|
|
|
|
|
|
<li class="fl mt20">
|
|
|
|
|
|
|
|
<span class="mr10 ml10 font-14">开始时间</span>
|
|
|
|
|
|
|
|
<input type="text" name="beginTime" placeholder="请选择开始时间" class="winput-150-30 mr10"/>
|
|
|
|
|
|
|
|
<input type="text" name="endTime" placeholder="请选择结束时间" class="winput-150-30"/>
|
|
|
|
|
|
|
|
</li>
|
|
|
|
<a href="javascript:void(0);" class="fl task-btn task-btn-orange ml5 mt20" onclick="$('#evaluate_records').submit();">搜索</a>
|
|
|
|
<a href="javascript:void(0);" class="fl task-btn task-btn-orange ml5 mt20" onclick="$('#evaluate_records').submit();">搜索</a>
|
|
|
|
<a href="javascript:clearSearchCondition()" class="fl task-btn ml5 mt2 mt20" id="clear_contents">清除</a>
|
|
|
|
<a href="javascript:clearSearchCondition()" class="fl task-btn ml5 mt2 mt20" id="clear_contents">清除</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div class="edu-con-bg01 mt15" id="evaluate_records_list">
|
|
|
|
<div class="edu-con-bg01 mt15" id="evaluate_records_list">
|
|
|
|
<%= render :partial => "evaluate_records_list" %>
|
|
|
|
<%= render :partial => "evaluate_records_list" %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -19,4 +26,17 @@
|
|
|
|
$("#Look_name").val("");
|
|
|
|
$("#Look_name").val("");
|
|
|
|
$.get('<%= evaluate_records_managements_path() %>');
|
|
|
|
$.get('<%= evaluate_records_managements_path() %>');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$("input[name='beginTime']").datetimepicker({
|
|
|
|
|
|
|
|
allowBlank:true,
|
|
|
|
|
|
|
|
lang:'ch',
|
|
|
|
|
|
|
|
format:'Y-m-d H:i',
|
|
|
|
|
|
|
|
validateOnBlur:false
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
$("input[name='endTime']").datetimepicker({
|
|
|
|
|
|
|
|
allowBlank:true,
|
|
|
|
|
|
|
|
lang:'ch',
|
|
|
|
|
|
|
|
format:'Y-m-d H:i',
|
|
|
|
|
|
|
|
validateOnBlur:false
|
|
|
|
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|