...
|
...
|
@@ -25,6 +25,7 @@ |
|
|
<th>进修单位</th>
|
|
|
<th>进修时长</th>
|
|
|
<th>提交时间</th>
|
|
|
<th>状态</th>
|
|
|
<th>操作</th>
|
|
|
</tr>
|
|
|
</thead>
|
...
|
...
|
@@ -37,6 +38,13 @@ |
|
|
<td>{$vo.hospital_name}</td>
|
|
|
<td>{$vo.duration}月</td>
|
|
|
<td>{:date('Y-m-d H:i:s',$vo.add_time)}</td>
|
|
|
<td>
|
|
|
<switch name="$vo.state">
|
|
|
<case value="0"><font color="#a52a2a">未审核</font></case>
|
|
|
<case value="1"><font color="#006400">已通过</font></case>
|
|
|
<case value="2"><font color="black">已驳回</font></case>
|
|
|
</switch>
|
|
|
</td>
|
|
|
<td>
|
|
|
<a href="{:url('engageDetail',['id'=>$vo.id])}">查看详情</a>
|
|
|
<a class="js-ajax-delete" href="{:url('engageDelete',['id'=>$vo.id])}">删除</a>
|
...
|
...
|
|