You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
information-system/webht/third_party/workflow/views/index/unverify.php

32 lines
1.3 KiB
PHP

<table class="table table-striped work-list">
<tr>
<th class="hidden-xs">序号</th>
<th>事务名称</th>
<th>提交时间</th>
<th>状态</th>
<th>操作</th>
</tr>
<?php foreach ($list as $key => $v) { ?>
<tr>
<td class="hidden-xs" scope="row"><?php echo ($key+1); ?></td>
<td><?php echo $v->wt_name.'('.$v->OPI_Name.')'; ?></td>
<td><?php echo date('Y-m-d H:i:s',$v->wf_time); ?></td>
<td><?php $status=$v->wf_status==0? ($v->isverify!=1?'还没处理':'处理中'):'已审核';echo $status; ?></td>
<td>
<a href="<?php echo site_url('apps/workflow/index/verify/'.$v->wf_sn.'/'.$v->wf_status.'/'.$nav_type); ?>"><?php $navename='审核';if($nav_type=='userlist' || $nav_type=='rata_list' || $wv_status==1) $navename='查看';echo $navename; ?></a>
<?php if($v->wf_status==0 && $v->isverify!=1 && $nav_type=='userlist'){ ?>
<a href="javascript:void(0);" class="ajax-link" data-href="<?php echo site_url('apps/workflow/index/dalete_work_flow/'.$v->wf_sn); ?>">删除</a>
<?php } ?>
</td>
</tr>
<?php } ?>
</tbody>
</table>
<div class="col-xs-24">
<nav>
<ul class="pager pull-left">
<?php echo $pageinfo['htmls']; ?>
</ul>
</nav>
</div>