|
@@ -0,0 +1,37 @@
|
|
|
+{block name="content"}
|
|
|
+<div class="think-box-shadow">
|
|
|
+ <table class="layui-table margin-top-20" lay-skin="line">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th class='text-left nowrap'>审批人</th>
|
|
|
+ <th class='text-left nowrap'>审批状态</th>
|
|
|
+ <th class='text-left nowrap'>审批时间</th>
|
|
|
+ <th class='text-left nowrap'>审批备注</th>
|
|
|
+ <th class='text-left nowrap'>审批时长</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+ {foreach $list as $key=>$vo}
|
|
|
+ <tr>
|
|
|
+ <td class='text-left nowrap'>{$vo.name}</td>
|
|
|
+ <td class='text-left nowrap'>
|
|
|
+ {eq name ='vo.status' value='0'}待审批{/eq}
|
|
|
+ {eq name ='vo.status' value='1'}审批中{/eq}
|
|
|
+ {eq name ='vo.status' value='2'}审批通过{/eq}
|
|
|
+ {eq name ='vo.status' value='3'}审批拒绝{/eq}
|
|
|
+ </td>
|
|
|
+ <td class='text-left nowrap'>{$vo.approve_time|default='--}</td>
|
|
|
+ <td class='text-left nowrap'>{$vo.remark|default='--}</td>
|
|
|
+ <td class='text-left nowrap'>{$vo.time|default='--'}</td>
|
|
|
+
|
|
|
+ </tr>
|
|
|
+ {/foreach}
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
|
|
|
+</div>
|
|
|
+
|
|
|
+{/block}
|
|
|
+
|
|
|
+
|
|
|
+
|