chenhao 4 rokov pred
rodič
commit
bda0d5d587
1 zmenil súbory, kde vykonal 89 pridanie a 0 odobranie
  1. 89 0
      app/admin/view/based/based_in3334.html

+ 89 - 0
app/admin/view/based/based_in3334.html

@@ -0,0 +1,89 @@
+{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='&#45;&#45;'}-->
+<!--            </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}