123456789101112131415161718192021222324252627282930313233343536373839 |
- <div id="J_jobfairJobsWrap" class="modify_jobfair_dialog" style="width:400px;">
- <div class="content">
- <div style="height:150px; overflow-y:scroll; width:100%;">
- <table width="100%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" class="link_lan" id="ajax_fairjobs_table">
- <tr style="background-color:#f5f5f5;height:30px;">
- <td height="26" class="us_list_title"><label> <input type="checkbox" name="chkAll" id="chkAll" title="全选/反选" onclick="selectAll();"/> 招聘会名称</label></td>
- <td align="center" class="us_list_title">状态</td>
- </tr>
- @foreach($jobfairInfo as $key => $v)
- @if($v->jobfairout)
- <tr style="height:30px;">
- <td>
- <input name="exid" type="hidden" value="{{ $v->id }}">
- <input name="jobfair_id" class="chk" type="checkbox" value="{{ $v->jobfair_id }}"/> <a title="{{ $v->jobfairout->title }}" class="substring" style="display: inline-block;width: 260px;" class="subst">{{ $v->jobfairout->title }}</a>
- </td>
- <td align="center">
- @switch($v->audit)
- @case(1) <span style="color: green">已审核</span> @break;
- @case(2) <span style="">等待审核</span> @break;
- @case(3) <span style="color: red">未通过审核</span> @break;
- @endswitch
- </td>
- <tr>
- @endif
- @endforeach
- </table>
- </div>
- </div>
- </div>
- </div>
- <script type="text/javascript">
- function selectAll(){
- if($("#chkAll").prop("checked")) {
- $(".chk").prop("checked", true);
- }else{
- $(".chk").prop("checked", false);
- }
- }
- </script>
|