You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
3.0 KiB
70 lines
3.0 KiB
{php include wl_template('common/header');}
|
|
<ul class="nav nav-tabs">
|
|
<li class="active"><a href="{php echo web_url('setting/rights/useRightsIndex',array('level' => $rightsUse['rightsid']));}">{$rights['rights_type']}</a></li>
|
|
</ul>
|
|
<div class="app-content">
|
|
<div class="app-filter">
|
|
<div class="filter-list">
|
|
<span>商户名称:{$store['storename']}</span>
|
|
{if $graduated_school || $experience}
|
|
<div class="alert alert-warning">
|
|
{if $graduated_school}
|
|
注意毕业院校:{$graduated_school}<br />
|
|
{/if}
|
|
{if $experience}
|
|
注意优先选项:{$experience}!<br />
|
|
{/if}
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
<div class="app-table-list">
|
|
<div class="table-responsive">
|
|
<table class="table table-responsive">
|
|
<thead>
|
|
<tr>
|
|
<th style="width: 10%;">微信用户ID</th>
|
|
<th style="width: 10%;">微信用户昵称</th>
|
|
<th style="width: 10%;">推送状态</th>
|
|
<th style="width: 10%;text-align: right;">操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{loop $recruit_resume $row}
|
|
<tr>
|
|
<td style="overflow: visible">{$row['mid']}</td>
|
|
<td style="overflow: visible">
|
|
<img class="scrollLoading" src="{$row['avatar']}" data-url="{php echo $row['avatar'];}" height="50" width="50"/>
|
|
{$row['nickname']}
|
|
</td>
|
|
<td style="overflow: visible">
|
|
{if $row['is_push']}
|
|
<span class="label label-info">已推送</span>
|
|
{else}
|
|
<span class="label label-warning" style="display: inline-block;margin-top: 5px;">未推送</span>
|
|
{/if}
|
|
</td>
|
|
<td style="overflow: visible;text-align: right;">
|
|
<a href="{php echo web_url('recruit/recruitment/resumeSee',['id'=>$row['id']])}" target="_blank" class="btn btn-info btn-sm">查看简历</a>
|
|
{if $rightsUse['status'] != 2 && !$row['is_push']}
|
|
<a class="btn btn-primary btn-sm" href="{php echo web_url('setting/rights/pushRecruit',array('id' => $row['id'],'recruit_id' => $recruit['id'],'rights_use_id' => $rightsUse['id']));}" id="show-audit-{php echo $row['id'];}" title="">推送简历</a>
|
|
{/if}
|
|
</td>
|
|
</tr>
|
|
{/loop}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="app-table-foot clearfix">
|
|
<div class="pull-left">
|
|
|
|
</div>
|
|
<div class="pull-right">
|
|
{$pager}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
</script>
|
|
{php include wl_template('common/footer');}
|