|
|
|
@ -85,6 +85,9 @@
|
|
|
|
|
table.render({
|
|
|
|
|
elem: '#data-table',
|
|
|
|
|
url: '/QingLong/teacherYd/getTeacherTransferEchoList',
|
|
|
|
|
where: {
|
|
|
|
|
person_name: $("#personName").val()
|
|
|
|
|
},
|
|
|
|
|
height: 'full-135',
|
|
|
|
|
page: {
|
|
|
|
|
limit: 15
|
|
|
|
@ -95,8 +98,9 @@
|
|
|
|
|
cols: [[
|
|
|
|
|
{ title: '序号', align: 'center', width: "5%", type: 'numbers' },
|
|
|
|
|
{ title: '姓名', field: 'person_name', align: 'center', width: "15%" },
|
|
|
|
|
{ title: '转出学校', field: 'source_bureau_name', align: 'center', width: "25%" },
|
|
|
|
|
{ title: '转出学校', field: 'source_bureau_name', align: 'center', width: "20%" },
|
|
|
|
|
{ title: '调转说明', field: 'apply_message', align: 'center' },
|
|
|
|
|
{ title: '状态', field: 'status_name', align: 'center', width: "5%" },
|
|
|
|
|
{ title: '操作', toolbar: '#table-bar', align: 'center', width: "10%" }
|
|
|
|
|
]],
|
|
|
|
|
skin: 'line',
|
|
|
|
@ -157,6 +161,15 @@
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
form.on('submit(user-query)', function () {
|
|
|
|
|
|
|
|
|
|
tableRender();
|
|
|
|
|
|
|
|
|
|
// 阻止表单的默认提交行为
|
|
|
|
|
return false;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
window.refresh = function (param) {
|
|
|
|
|
table.reload('data-table');
|
|
|
|
|
}
|
|
|
|
|