添加部门抄送
This commit is contained in:
parent
6c7367045b
commit
43b158e7b8
@ -301,6 +301,9 @@ public class ExamCheckServiceImpl extends DefaultBaseService implements IExamChe
|
|||||||
for(Map<String,Object> item : classPlanList){
|
for(Map<String,Object> item : classPlanList){
|
||||||
classPlanIdList.add(item.get("classPlanId").toString());
|
classPlanIdList.add(item.get("classPlanId").toString());
|
||||||
}
|
}
|
||||||
|
if(classPlanIdList.size() == 0){
|
||||||
|
return new SuccessResultList<>(new ArrayList<>(), 0, 0L);
|
||||||
|
}
|
||||||
page.getParams().put("classPlanIdList",classPlanIdList);
|
page.getParams().put("classPlanIdList",classPlanIdList);
|
||||||
if(page.getParams().get("checkStatusList") != null
|
if(page.getParams().get("checkStatusList") != null
|
||||||
&& page.getParams().get("checkStatusList").toString().length() > 0){
|
&& page.getParams().get("checkStatusList").toString().length() > 0){
|
||||||
|
@ -39,6 +39,7 @@
|
|||||||
var resizeTimeout = null;
|
var resizeTimeout = null;
|
||||||
var tableUrl = 'api/examapply/teacher-msg?classPlanId={classPlanId}';
|
var tableUrl = 'api/examapply/teacher-msg?classPlanId={classPlanId}';
|
||||||
var classPlanId = top.restAjax.params(window.location.href).classPlanId;
|
var classPlanId = top.restAjax.params(window.location.href).classPlanId;
|
||||||
|
$('.layui-card').height($win.height());
|
||||||
|
|
||||||
// 初始化表格
|
// 初始化表格
|
||||||
function initTable() {
|
function initTable() {
|
||||||
@ -47,7 +48,7 @@
|
|||||||
id: 'dataTable',
|
id: 'dataTable',
|
||||||
url: top.restAjax.path(tableUrl, [classPlanId]),
|
url: top.restAjax.path(tableUrl, [classPlanId]),
|
||||||
width: admin.screen() > 1 ? '100%' : '',
|
width: admin.screen() > 1 ? '100%' : '',
|
||||||
height: $win.height() - 90,
|
height: $win.height() - 30,
|
||||||
limit: 20,
|
limit: 20,
|
||||||
limits: [20, 40, 60, 80, 100, 200],
|
limits: [20, 40, 60, 80, 100, 200],
|
||||||
request: {
|
request: {
|
||||||
@ -108,7 +109,7 @@
|
|||||||
// 重载表格
|
// 重载表格
|
||||||
function reloadTable(currentPage) {
|
function reloadTable(currentPage) {
|
||||||
table.reload('dataTable', {
|
table.reload('dataTable', {
|
||||||
url: top.restAjax.path(tableUrl, []),
|
url: top.restAjax.path(tableUrl, [classPlanId]),
|
||||||
where: {
|
where: {
|
||||||
keywords: $('#keywords').val(),
|
keywords: $('#keywords').val(),
|
||||||
startTime: $('#startTime').val(),
|
startTime: $('#startTime').val(),
|
||||||
@ -121,6 +122,7 @@
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
initTable();
|
initTable();
|
||||||
|
|
||||||
// 事件 - 页面变化
|
// 事件 - 页面变化
|
||||||
$win.on('resize', function() {
|
$win.on('resize', function() {
|
||||||
clearTimeout(resizeTimeout);
|
clearTimeout(resizeTimeout);
|
||||||
|
@ -433,7 +433,7 @@
|
|||||||
type: 2,
|
type: 2,
|
||||||
title: '抄送',
|
title: '抄送',
|
||||||
closeBtn: 1,
|
closeBtn: 1,
|
||||||
area: ['30%', '50%'],
|
area: ['40%', '50%'],
|
||||||
shadeClose: false,
|
shadeClose: false,
|
||||||
anim: 2,
|
anim: 2,
|
||||||
content: top.restAjax.path('route/examcheck/save-send-dept.html?classPlanId={arg}',
|
content: top.restAjax.path('route/examcheck/save-send-dept.html?classPlanId={arg}',
|
||||||
|
@ -345,7 +345,7 @@
|
|||||||
type: 2,
|
type: 2,
|
||||||
title: '授课讲师',
|
title: '授课讲师',
|
||||||
closeBtn: 1,
|
closeBtn: 1,
|
||||||
area: ['60%', '80%'],
|
area: ['90%', '90%'],
|
||||||
shadeClose: false,
|
shadeClose: false,
|
||||||
anim: 2,
|
anim: 2,
|
||||||
content: top.restAjax.path('route/examapply/list-teacher.html?classPlanId={classPlanId}', [data.planId]),
|
content: top.restAjax.path('route/examapply/list-teacher.html?classPlanId={classPlanId}', [data.planId]),
|
||||||
|
@ -75,7 +75,7 @@
|
|||||||
async: {
|
async: {
|
||||||
enable: true,
|
enable: true,
|
||||||
type: 'get',
|
type: 'get',
|
||||||
url: top.restAjax.path('api/classplan/list-tree-org', []),
|
url: top.restAjax.path('api/classplan/list-tree-org-normal', []),
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
simpleData: {
|
simpleData: {
|
||||||
|
Loading…
Reference in New Issue
Block a user