based_in3332.html 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {extend name="../../admin/view/main"}
  2. {block name="button"}
  3. {if auth("add")}
  4. {/if}
  5. <button data-title="导入" class='layui-btn layui-btn-sm layui-btn-primary' id="dr">导入</button>
  6. {/block}
  7. {block name='content'}
  8. <div class="think-box-shadow">
  9. <table class="layui-table margin-top-10" lay-skin="line">
  10. <input type="hidden" id="table" value="{$t}">
  11. <input type="hidden" id="num" value="{$n}">
  12. {notempty name='list'}
  13. <thead>
  14. <tr>
  15. <!-- <th class="text-left nowrap">学校代码</th>-->
  16. <th class="text-left nowrap">名称</th>
  17. <th class="text-left nowrap">合计</th>
  18. <th class="text-left nowrap">城区</th>
  19. <th class="text-left nowrap">镇区</th>
  20. <th class="text-left nowrap">乡村</th>
  21. <th></th>
  22. </tr>
  23. </thead>
  24. {/notempty}
  25. <tbody>
  26. {foreach $list as $key=>$vo}
  27. <tr>
  28. <!-- <td class="text-left nowrap relative">-->
  29. <!-- {$vo.A|default='&#45;&#45;'}-->
  30. <!-- </td>-->
  31. <td class='text-left nowrap'>
  32. {$vo.B|default='--'}
  33. </td>
  34. <td class='text-left nowrap'>
  35. {$vo.D|default='--'}
  36. </td>
  37. <td class='text-left nowrap'>
  38. {$vo.E|default='--'}
  39. </td>
  40. <td class='text-left nowrap'>
  41. {$vo.F|default='--'}
  42. </td>
  43. <td class='text-left nowrap'>
  44. {$vo.G|default='--'}
  45. </td>
  46. </tr>
  47. {/foreach}
  48. </tbody>
  49. </table>
  50. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  51. </div>
  52. <script>
  53. layui.use('upload', function(){
  54. var upload = layui.upload;
  55. //执行实例
  56. var uploadInst = upload.render({
  57. elem: '#dr' //绑定元素
  58. ,url: '/admin/Excel/upExcel'
  59. ,accept: 'file' //普通文件,
  60. ,data:{
  61. table:function () {
  62. return $('#table').val();
  63. },
  64. num:function () {
  65. return $('#num').val();
  66. },
  67. }
  68. ,before: function(obj){ //obj参数包含的信息,跟 choose回调完全一致,可参见上文。
  69. layer.load(); //上传loading
  70. }
  71. ,done: function(res){
  72. layer.closeAll('loading'); //关闭loading
  73. layer.msg('上传成功');
  74. }
  75. ,error: function(){
  76. layer.msg('上传失败');
  77. }
  78. });
  79. });
  80. </script>
  81. {/block}