1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- {extend name="../../admin/view/main"}
- {block name="button"}
- {if auth("add")}
- {/if}
- <button data-title="导入" class='layui-btn layui-btn-sm layui-btn-primary' id="dr">导入</button>
- {/block}
- {block name='content'}
- <div class="think-box-shadow">
- <table class="layui-table margin-top-10" lay-skin="line">
- <input type="hidden" id="table" value="{$t}">
- <input type="hidden" id="num" value="{$n}">
- {notempty name='list'}
- <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>
- <th class="text-left nowrap">乡村</th>
- <th></th>
- </tr>
- </thead>
- {/notempty}
- <tbody>
- {foreach $list as $key=>$vo}
- <tr>
- <!-- <td class="text-left nowrap relative">-->
- <!-- {$vo.A|default='--'}-->
- <!-- </td>-->
- <td class='text-left nowrap'>
- {$vo.B|default='--'}
- </td>
- <td class='text-left nowrap'>
- {$vo.D|default='--'}
- </td>
- <td class='text-left nowrap'>
- {$vo.E|default='--'}
- </td>
- <td class='text-left nowrap'>
- {$vo.F|default='--'}
- </td>
- <td class='text-left nowrap'>
- {$vo.G|default='--'}
- </td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
- </div>
- <script>
- layui.use('upload', function(){
- var upload = layui.upload;
- //执行实例
- var uploadInst = upload.render({
- elem: '#dr' //绑定元素
- ,url: '/admin/Excel/upExcel'
- ,accept: 'file' //普通文件,
- ,data:{
- table:function () {
- return $('#table').val();
- },
- num:function () {
- return $('#num').val();
- },
- }
- ,before: function(obj){ //obj参数包含的信息,跟 choose回调完全一致,可参见上文。
- layer.load(); //上传loading
- }
- ,done: function(res){
- layer.closeAll('loading'); //关闭loading
- layer.msg('上传成功');
- }
- ,error: function(){
- layer.msg('上传失败');
- }
- });
- });
- </script>
- {/block}
|