|
@@ -0,0 +1,75 @@
|
|
|
+{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></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>
|
|
|
+
|
|
|
+ </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}
|