based_in3321.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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></th>-->
  18. </tr>
  19. </thead>
  20. {/notempty}
  21. <tbody>
  22. {foreach $list as $key=>$vo}
  23. <tr>
  24. <!-- <td class="text-left nowrap relative">-->
  25. <!-- {$vo.A|default='&#45;&#45;'}-->
  26. <!-- </td>-->
  27. <td class='text-left nowrap'>
  28. {$vo.B|default='--'}
  29. </td>
  30. </tr>
  31. {/foreach}
  32. </tbody>
  33. </table>
  34. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  35. </div>
  36. <script>
  37. layui.use('upload', function(){
  38. var upload = layui.upload;
  39. //执行实例
  40. var uploadInst = upload.render({
  41. elem: '#dr' //绑定元素
  42. ,url: '/admin/Excel/upExcel'
  43. ,accept: 'file' //普通文件,
  44. ,data:{
  45. table:function () {
  46. return $('#table').val();
  47. },
  48. num:function () {
  49. return $('#num').val();
  50. },
  51. }
  52. ,before: function(obj){ //obj参数包含的信息,跟 choose回调完全一致,可参见上文。
  53. layer.load(); //上传loading
  54. }
  55. ,done: function(res){
  56. layer.closeAll('loading'); //关闭loading
  57. layer.msg('上传成功');
  58. }
  59. ,error: function(){
  60. layer.msg('上传失败');
  61. }
  62. });
  63. });
  64. </script>
  65. {/block}