123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {include file='approve_info/index_search_8'}
- <table class="layui-table margin-top-10" lay-skin="line">
- {notempty name='list'}
- <thead>
- <tr>
- <th class='text-left nowrap'>申请ID</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>
- <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-center nowrap">操作</th>
- </tr>
- </thead>
- {/notempty}
- <tbody>
- {foreach $list as $key=>$vo}
- <tr>
- <td class='text-left nowrap'>{$vo.id}</td>
- <td class='text-left nowrap'>
- <p>用户姓名:{$vo.create_user.name|default='--'}</p>
- <p class="color-desc">手机号码:{$vo.create_user.mobile|default="--"}</p>
- </td>
- <td class='text-left nowrap'><strong>{$get_approve_status_list[$vo.status]}</strong></td>
- <td class='text-left nowrap'>{$vo.create_at}</td>
- <td class='text-left nowrap'>{$vo.order_no}</td>
- <td class='text-left nowrap'>{$vo.apply_date}</td>
- <td class='text-left nowrap'>{$vo.reason}</td>
- <td class='text-left nowrap'>{$get_type_list[$vo.type]}</td>
- <td class='text-left nowrap'>{$vo.desc}</td>
- <td class='text-center nowrap'>
- <a class="layui-btn layui-btn-xs layui-bg-blue" data-open="{:url('approve_info_log/index')}?info_id={$vo.id}">审批人修改记录</a>
- <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}
|