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.
 
 
 
 
 
 

74 lines
2.8 KiB

{template nheader.html}
<div class="page-bar">
<ul class="page-breadcrumb mylink">
{$menu.link}
</ul>
<ul class="page-breadcrumb myname">
{$menu.name}
</ul>
<div class="page-toolbar">
<div class="btn-group pull-right">
<button type="button" class="btn green btn-sm btn-outline dropdown-toggle" data-toggle="dropdown" aria-expanded="false" data-hover="dropdown"> {fc_lang('操作菜单')}
<i class="fa fa-angle-down"></i>
</button>
<ul class="dropdown-menu pull-right" role="menu">
{loop $menu.quick $t}
<li>
<a href="{$t.url}">{$t.icon} {$t.name}</a>
</li>
{/loop}
<li class="divider"> </li>
<li>
<a href="javascript:window.location.reload();">
<i class="icon-refresh"></i> {fc_lang('刷新页面')}</a>
</li>
</ul>
</div>
</div>
</div>
<h3 class="page-title">
<small>{fc_lang('将文档审核分配给不同的管理组会员进行审核')}</small>
</h3>
<form action="" method="post" name="myform" id="myform">
<div class="portlet mylistbody">
<div class="portlet-body">
<div class="table-scrollable">
<table class="mytable table table-striped table-bordered table-hover table-checkable dataTable">
<thead>
<tr>
<th width="20" align="right"></th>
<th width="40">Id</th>
<th>{fc_lang('名称')}</th>
<th>{fc_lang('审核次数')}</th>
<th class="dr_option">{fc_lang('操作')}</th>
</tr>
</thead>
<tbody>
{loop $list $t}
<tr id="dr_row_{$t['uid']}">
<td align="right"><input name="ids[]" type="checkbox" class="dr_select toggle md-check" value="{$t['id']}" /></td>
<td>{$t['id']}</td>
<td>{$t['name']}</td>
<td>{$t['num']}</td>
<td class="dr_option">
<a class="ago" href="javascript:;" onclick="dr_dialog_show('{fc_lang('审核流程')}', '{dr_url('verify/show', array('num'=>$t['num']))}')"> <i class="fa fa-search"></i> {fc_lang('审核流程')}</a>{if $this->ci->is_auth('admin/verify/edit')}<a class="aedit" href="{dr_dialog_url(dr_url('verify/edit',array('id'=>$t['id'])), 'edit')}"> <i class="fa fa-edit"></i> {fc_lang('修改')}</a>{/if}
{if $this->ci->is_auth('admin/verify/del')}<a class="adel" href="javascript:;" onClick="return dr_dialog_del('{fc_lang('您确定要这样操作吗?')}','{dr_url('verify/del',array('id'=>$t['id']))}');"> <i class="fa fa-trash"></i> {fc_lang('删除')}</a>{/if}
</td>
</tr>
{/loop}
<tr class="mtable_bottom">
<th width="20" ><input name="dr_select" class="toggle md-check" id="dr_select" type="checkbox" onClick="dr_selected()" />&nbsp;</th>
<td colspan="8" >
{if $this->ci->is_auth('admin/verify/del')}<button type="button" class="btn red btn-sm" name="option" onClick="dr_confirm_set_all('{fc_lang('您确定要这样操作吗?')}')"><i class="fa fa-trash"></i> {fc_lang('删除')}</button>{/if}
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</form>
{template nfooter.html}