Merge branch 'master' of e.coding.net:tsteam/btsaqscksfwpt/system-examination-signup

This commit is contained in:
wans 2021-05-12 15:20:48 +08:00
commit 536a619b12
2 changed files with 38 additions and 29 deletions

View File

@ -73,6 +73,7 @@
theory_exam_end_time, theory_exam_end_time,
payment_voucher, payment_voucher,
payment_voucher_num, payment_voucher_num,
exam_apply_num,
status, status,
user_status, user_status,
check_status, check_status,
@ -92,6 +93,7 @@
#{theoryExamEndTime}, #{theoryExamEndTime},
#{paymentVoucher}, #{paymentVoucher},
#{paymentVoucherNum}, #{paymentVoucherNum},
#{examApplyNum},
#{status}, #{status},
#{userStatus}, #{userStatus},
#{checkStatus}, #{checkStatus},

View File

@ -262,39 +262,46 @@
// 提交表单 // 提交表单
form.on('submit(submitForm)', function(formData) { form.on('submit(submitForm)', function(formData) {
if(3 == formData.field.checkStatus) { layer.confirm('审核一旦通过,将无法进行修改', {
if(null == formData.field.reason || '' == formData.field.reason || typeof(formData.field.reason) == "undefined") { btn: ['确定','取消'] //按钮
top.dialog.msg('退回原因必填'); }, function(){
return false; if(3 == formData.field.checkStatus) {
if(null == formData.field.reason || '' == formData.field.reason || typeof(formData.field.reason) == "undefined") {
top.dialog.msg('退回原因必填');
return false;
}
} }
} formData.field.examId = classPlanId;
formData.field.examId = classPlanId; formData.field.planName = $('#planName').val();
formData.field.planName = $('#planName').val(); formData.field.planPersonNum = $('#planPersonNum').val();
formData.field.planPersonNum = $('#planPersonNum').val(); top.dialog.confirm(top.dataMessage.commit, function(index) {
top.dialog.confirm(top.dataMessage.commit, function(index) { top.dialog.close(index);
top.dialog.close(index); var loadLayerIndex;
var loadLayerIndex; top.restAjax.put(top.restAjax.path('api/examapply/update/{examApplyId}', [examApplyId]), formData.field, null, function(code, data) {
top.restAjax.put(top.restAjax.path('api/examapply/update/{examApplyId}', [examApplyId]), formData.field, null, function(code, data) { var layerIndex = top.dialog.msg(top.dataMessage.updateSuccess, {
var layerIndex = top.dialog.msg(top.dataMessage.updateSuccess, { time: 0,
time: 0, btn: [top.dataMessage.button.yes, top.dataMessage.button.no],
btn: [top.dataMessage.button.yes, top.dataMessage.button.no], shade: 0.3,
shade: 0.3, yes: function(index) {
yes: function(index) { top.dialog.close(index);
top.dialog.close(index); window.location.reload();
window.location.reload(); },
}, btn2: function() {
btn2: function() { closeBox();
closeBox(); }
} });
}, function(code, data) {
top.dialog.msg(data.msg);
}, function() {
loadLayerIndex = top.dialog.msg(top.dataMessage.committing, {icon: 16, time: 0, shade: 0.3});
}, function() {
top.dialog.close(loadLayerIndex);
}); });
}, function(code, data) {
top.dialog.msg(data.msg);
}, function() {
loadLayerIndex = top.dialog.msg(top.dataMessage.committing, {icon: 16, time: 0, shade: 0.3});
}, function() {
top.dialog.close(loadLayerIndex);
}); });
}, function(){
return false;
}); });
return false; return false;
}); });