作者 sgj
1 个管道 的构建 通过 耗费 3 秒

进修前台页面完成

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