三级审核全部通过时才可以分配考场。
This commit is contained in:
parent
7864428956
commit
589f9de387
@ -191,6 +191,8 @@
|
|||||||
var common = layui.common;
|
var common = layui.common;
|
||||||
var resizeTimeout = null;
|
var resizeTimeout = null;
|
||||||
var tableUrl = 'api/examapply/listpage';
|
var tableUrl = 'api/examapply/listpage';
|
||||||
|
var point;
|
||||||
|
var checkStatus;
|
||||||
|
|
||||||
// 初始化表格
|
// 初始化表格
|
||||||
function initTable() {
|
function initTable() {
|
||||||
@ -213,6 +215,8 @@
|
|||||||
{field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '<span>{{d.LAY_INDEX}}</span>'},
|
{field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '<span>{{d.LAY_INDEX}}</span>'},
|
||||||
{field: 'planName', width: 180, title: '计划名称', align:'center',
|
{field: 'planName', width: 180, title: '计划名称', align:'center',
|
||||||
templet: function(row) {
|
templet: function(row) {
|
||||||
|
point = row['point'];
|
||||||
|
checkStatus = row['checkStatus'];
|
||||||
var rowData = row.classPlanDTO[this.field];
|
var rowData = row.classPlanDTO[this.field];
|
||||||
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
||||||
return '-';
|
return '-';
|
||||||
@ -388,7 +392,9 @@
|
|||||||
yes: function (index) {
|
yes: function (index) {
|
||||||
top.dialog.close(index);
|
top.dialog.close(index);
|
||||||
// 审核
|
// 审核
|
||||||
sentExamMsg(planIds);
|
if('分管领导' == point && '1' == checkStatus) {
|
||||||
|
sentExamMsg(planIds);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
btn2: function(index) {
|
btn2: function(index) {
|
||||||
top.dialog.close(index);
|
top.dialog.close(index);
|
||||||
|
Loading…
Reference in New Issue
Block a user