

$('#add_sends').click(function () {
var checkStatus = table.checkStatus('te');
var ids = [];
$(checkStatus.data).each(function (i, o) {//o即为表格中一行的数据
ids.push(o.student_id);
});
if (ids.length < 1) {
layer.msg('无选中项');
return false;
}
ids = ids.join(",");
layer.confirm('您确定要分发该课程吗?', function (index) {
$.get("{:url('add_sends')}", {ids: ids, courseId: "{$courseId}"}, function (res) {
if (res.code == 1) {
layer.msg(res.msg, {time: 1000, icon: 1});
tableIn.reload();
} else {
layer.msg(res.msg, {time: 1000, icon: 2});
}
});
layer.close(index);
});
});