v0408
parent
a07704fd30
commit
949eddd5ca
@ -0,0 +1,160 @@ |
|||||||
|
{extend name="public/container"} |
||||||
|
{block name="content"} |
||||||
|
<div class="layui-fluid"> |
||||||
|
<div class="layui-row layui-col-space15"> |
||||||
|
<div class="layui-col-md12"> |
||||||
|
<div class="layui-card"> |
||||||
|
<div class="layui-card-header">搜索条件</div> |
||||||
|
<div class="layui-card-body"> |
||||||
|
<div class="layui-form layui-form-pane"> |
||||||
|
<div class="layui-form-item"> |
||||||
|
<div class="layui-inline"> |
||||||
|
<label class="layui-form-label">试卷名称</label> |
||||||
|
<div class="layui-input-inline"> |
||||||
|
<input type="text" name="title" id="demoReload" placeholder="请输入试卷名称" autocomplete="off" class="layui-input"> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<div class="layui-inline"> |
||||||
|
<button type="button" class="layui-btn layui-btn-normal layui-btn-sm" data-type="reload">搜索</button> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<!--产品列表--> |
||||||
|
<div class="layui-col-md12"> |
||||||
|
<div class="layui-card"> |
||||||
|
<div class="layui-card-header">试卷列表</div> |
||||||
|
<div class="layui-card-body"> |
||||||
|
<div class="layui-btn-container"> |
||||||
|
<button class="layui-btn layui-btn-normal layui-btn-sm" onclick="window.location.reload()"><i class="layui-icon layui-icon-refresh"></i> 刷新</button> |
||||||
|
</div> |
||||||
|
<table class="layui-hide" id="List" lay-filter="List"></table> |
||||||
|
<script type="text/html" id="image"> |
||||||
|
<img style="cursor: pointer;width: 80px;height: 40px;" lay-event='open_image' src="{{d.image}}"> |
||||||
|
</script> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<script src="{__ADMIN_PATH}js/layuiList.js"></script> |
||||||
|
{/block} |
||||||
|
{block name="script"} |
||||||
|
<script> |
||||||
|
var table_date=new Array();//用于保存当前页数据 |
||||||
|
var ids=new Array(); //用于保存选中的数据 |
||||||
|
var id={$id} |
||||||
|
//实例化form |
||||||
|
layList.form.render(); |
||||||
|
var table = layui.table; |
||||||
|
table.render({ |
||||||
|
elem: '#List' |
||||||
|
,url:"{:Url('questions.test_paper/getTestQuestionsList')}?question_type=5"+'&id='+id |
||||||
|
,cols: [[ |
||||||
|
{type: 'checkbox'}, |
||||||
|
{field: 'id', title: '编号',align: 'center'}, |
||||||
|
{field: 'title', title: '试卷名称', align: 'center'}, |
||||||
|
{field: 'cate', title: '分类',align: 'center'}, |
||||||
|
]] |
||||||
|
,id: 'testReload' |
||||||
|
,page: { |
||||||
|
theme: '#0092dc' |
||||||
|
} |
||||||
|
,limit:10 |
||||||
|
,done:function (res,curr,count) { |
||||||
|
table_date=res.data; |
||||||
|
for(var i=0;i< res.data.length;i++){ |
||||||
|
if(ids.length>0){ |
||||||
|
for (var j = 0; j < ids.length; j++) { |
||||||
|
if(res.data[i].id == ids[j].id) { |
||||||
|
res.data[i]["LAY_CHECKED"]='true';/*设置勾选*/ |
||||||
|
/*找到对应数据改变勾选样式*/ |
||||||
|
var index= res.data[i]['LAY_TABLE_INDEX']; |
||||||
|
$('tr[data-index=' + index + '] input[type="checkbox"]').prop('checked', true); |
||||||
|
$('tr[data-index=' + index + '] input[type="checkbox"]').next().addClass('layui-form-checked'); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
var checkStatus = table.checkStatus('List');/*获得选中的值 和判断是否是全选 isAll true全选 isAlL false 没有全选*/ |
||||||
|
if(checkStatus.isAll){ |
||||||
|
$('.layui-table-header th[data-field="0"] input[type="checkbox"]').prop('checked', true); |
||||||
|
$('.layui-table-header th[data-field="0"] div[class="layui-unselect layui-form-checkbox"]').addClass('layui-form-checked'); |
||||||
|
} |
||||||
|
removeArrayRepElement(ids); |
||||||
|
$("#check_questions_tmp_"+question_type,window.parent.document).val(JSON.stringify(ids)); |
||||||
|
} |
||||||
|
}); |
||||||
|
var $ = layui.$, active = { |
||||||
|
reload: function(){ |
||||||
|
var demoReload = $('#demoReload'); |
||||||
|
//执行重载 |
||||||
|
table.reload('testReload', { |
||||||
|
page: { |
||||||
|
curr: 1 //重新从第 1 页开始 |
||||||
|
} |
||||||
|
,where: { |
||||||
|
title: demoReload.val(), |
||||||
|
pid:$('#pids option:selected').val(), |
||||||
|
} |
||||||
|
}, 'data'); |
||||||
|
} |
||||||
|
}; |
||||||
|
$('.layui-btn').on('click', function(){ |
||||||
|
var type = $(this).data('type'); |
||||||
|
active[type] ? active[type].call(this) : ''; |
||||||
|
}); |
||||||
|
//删除重复 |
||||||
|
function removeArrayRepElement(arr) { |
||||||
|
for (var i = 0; i < arr.length; i++) { |
||||||
|
for (var j = 0; j < arr.length; j++) { |
||||||
|
if (arr[i].id == arr[j].id && i != j) { |
||||||
|
arr.splice(j, 1); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
return arr; |
||||||
|
} |
||||||
|
table.on('checkbox(List)', function (obj) { |
||||||
|
if(obj.checked==true){ |
||||||
|
if(obj.type=='one'){ |
||||||
|
ids.push(obj.data); |
||||||
|
}else{ |
||||||
|
for(var i=0;i<table_date.length;i++){ |
||||||
|
ids.push(table_date[i]); |
||||||
|
} |
||||||
|
} |
||||||
|
ids=removeArrayRepElement(ids); |
||||||
|
}else{ |
||||||
|
if(obj.type=='one'){ |
||||||
|
for(var i=0;i<ids.length;i++){ |
||||||
|
if(ids[i].id==obj.data.id){ |
||||||
|
ids.remove(i); |
||||||
|
} |
||||||
|
} |
||||||
|
}else{ |
||||||
|
for(var i=0;i<ids.length;i++){ |
||||||
|
for(var j=0;j<table_date.length;j++){ |
||||||
|
if(ids[i].id==table_date[j].id){ |
||||||
|
ids.remove(i); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
$("#check_questions_tmp_"+question_type,window.parent.document).val(JSON.stringify(ids)); |
||||||
|
}); |
||||||
|
Array.prototype.remove=function(dx){ |
||||||
|
if(isNaN(dx)||dx>this.length){return false;} |
||||||
|
for(var i=0,n=0;i<this.length;i++) |
||||||
|
{ |
||||||
|
if(this[i]!=this[dx]){ |
||||||
|
this[n++]=this[i]; |
||||||
|
} |
||||||
|
} |
||||||
|
this.length-=1; |
||||||
|
}; |
||||||
|
</script> |
||||||
|
{/block} |
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue