1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {extend name='admin@main'}
- {block name="button"}
- <button class="layui-btn layui-btn-sm layui-btn-primary" type='button' onclick="javascript:history.back()">返回</button>
- {/block}
- {block name="content"}
- <div class="think-box-shadow">
- {include file='approve_info_log/index_search'}
- <table class="layui-table margin-top-10" lay-skin="line">
- {notempty name='list'}
- <thead>
- <tr>
- <th class='text-left nowrap'>审批人</th>
- <th class='text-left nowrap'>修改时间</th>
- <th class="text-center">操作</th>
- </tr>
- </thead>
- {/notempty}
- <tbody>
- {foreach $list as $key=>$vo}
- <tr>
- <td class='text-left nowrap'>
- <p>用户姓名:{$vo.user.name|default='--'}</p>
- <p class="color-desc">手机号码:{$vo.user.mobile|default="--"}</p>
- </td>
- <td class='text-left nowrap'>
- {$vo.create_at|default="--"}
- </td>
- <td class='text-center nowrap'>
- <a class="layui-btn layui-btn-xs" data-open="{:url('edit')}?id={$vo.id}">详情</a>
- </td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- {empty name='list'}<span class="notdata">没 有 记 录 哦!</span>{else}{$pagehtml|raw|default=''}{/empty}
- </div>
- {/block}
|