From db3e6f6d5a8f29a5dc576aba2eab76a8133ce03c Mon Sep 17 00:00:00 2001 From: 44323 <443237572@qq.com> Date: 星期五, 08 三月 2024 21:46:10 +0800 Subject: [PATCH] 11.27,9 --- cloud-server-management/src/main/webapp/static/modular/system/coursePackage/coursePackageStudent.js | 15 +++------------ 1 files changed, 3 insertions(+), 12 deletions(-) diff --git a/cloud-server-management/src/main/webapp/static/modular/system/coursePackage/coursePackageStudent.js b/cloud-server-management/src/main/webapp/static/modular/system/coursePackage/coursePackageStudent.js index a018859..0ca98b7 100644 --- a/cloud-server-management/src/main/webapp/static/modular/system/coursePackage/coursePackageStudent.js +++ b/cloud-server-management/src/main/webapp/static/modular/system/coursePackage/coursePackageStudent.js @@ -42,16 +42,7 @@ } } } - }, - {title: '预定状态', field: 'reservationStatus', align: 'center', valign: 'middle',hidden:true, - formatter: function (v) { - if (v == 0) { - return '已取消'; - } else { - return '正常'; - } - } - }, + } ]; return columns; }; @@ -90,13 +81,13 @@ let operation = function(){ let ajax = new $ax(Feng.ctxPath + "/coursePackage/cancelReservation", function (res) { if(res.code == 200){ - Feng.success("取消成功!"); + Feng.success("请假成功!"); CoursePackageStudent.table.refresh(); }else{ Feng.error(res.msg); } }, function (data) { - Feng.error("取消失败!" + data.responseJSON.message + "!"); + Feng.error("请假失败!" + data.responseJSON.message + "!"); }); ajax.set("id", CoursePackageStudent.seItem.id); ajax.start(); -- Gitblit v1.7.1