From d954784593cb24b0455529ea28588a317c5d766f Mon Sep 17 00:00:00 2001
From: luo <2855143437@qq.com>
Date: 星期二, 26 九月 2023 17:05:30 +0800
Subject: [PATCH] 9.26

---
 cloud-server-management/src/main/webapp/static/modular/system/coursePackage/registrationRecord.js |   58 ++++++++++++++++++++++++++++++++++++++++++++--------------
 1 files changed, 44 insertions(+), 14 deletions(-)

diff --git a/cloud-server-management/src/main/webapp/static/modular/system/coursePackage/registrationRecord.js b/cloud-server-management/src/main/webapp/static/modular/system/coursePackage/registrationRecord.js
index 991e711..11084e8 100644
--- a/cloud-server-management/src/main/webapp/static/modular/system/coursePackage/registrationRecord.js
+++ b/cloud-server-management/src/main/webapp/static/modular/system/coursePackage/registrationRecord.js
@@ -20,25 +20,42 @@
         {title: '购课学员', field: 'studentName', align: 'center', valign: 'middle'},
         {title: '报名时间', field: 'insertTime', align: 'center', valign: 'middle'},
         {title: '总课时数', field: 'totalClassHours', align: 'center', valign: 'middle'},
-        {title: '剩余课时数', field: 'laveClassHours', align: 'center', valign: 'middle',rowStyle: function(row, index) {
-                // 参数说明:
-                //row, 行,row.xxx,能获取某个字段的值
-                //index,索引,第几行
-
-                // 逻辑判断
-                // .....
-                return  {"background-color":'rgba(208,9,9,0.7)'};
+        {
+            title: '剩余课时数',
+            field: 'laveClassHours',
+            align: 'center',
+            valign: 'middle',
+            formatter: function (value, row) {
+                if (value < 3) {
+                    return '<div style="color: red;">' + value + '</div>';
+                } else {
+                    return value;
+                }
             }
         },
         {title: '已上课时数', field: 'already', align: 'center', valign: 'middle'},
         {title: '请假次数', field: 'absencesNumber', align: 'center', valign: 'middle'},
-        {title: '状态', field: 'status', align: 'center', valign: 'middle',
+        {
+            title: '状态',
+            field: 'status',
+            align: 'center',
+            valign: 'middle',
             formatter: function (v) {
                 switch (v) {
                     case 1:
                         return '正常';
                     case 2:
-                        return '<a href="#" onclick="">已退课-查看凭证</a>';
+                        return '已退课';
+                    case 3:
+                        return '换课中';
+                    case 4:
+                        return '申请退费中';
+                    case 5:
+                        return '已转移';
+                    case 6:
+                        return '已赠课';
+                    default:
+                        return '';
                 }
             }
         }
@@ -51,8 +68,21 @@
  */
 RegistrationRecord.check = function () {
     let selected = $('#' + this.id).bootstrapTable('getSelections');
+    if (selected.length > 1) {
+        Feng.info("只能选中表格中的一条记录!");
+        return false;
+    } else {
+        RegistrationRecord.seItem = selected[0];
+        RegistrationRecord.seItem1 = selected;
+
+        return true;
+    }
+};
+
+RegistrationRecord.check1 = function () {
+    let selected = $('#' + this.id).bootstrapTable('getSelections');
     if (selected.length == 0) {
-        Feng.info("请先选中表格中的某一记录!");
+        Feng.info("必须选中表格中的某一记录!");
         return false;
     } else {
         RegistrationRecord.seItem = selected[0];
@@ -79,7 +109,7 @@
 
 
 RegistrationRecord.holiClass = function () {
-    if (this.check()) {
+    if (this.check1()) {
         var ids = RegistrationRecord.seItem1.map(function(item) {
             return item.id;
         }).join(",");
@@ -215,8 +245,8 @@
 RegistrationRecord.makeUpMissedLessons = function () {
     if (this.check()) {
         let operation = function(){
-            let ajax = new $ax(Feng.ctxPath + "/coursePackage/makeUpMissedLessons", function () {
-                Feng.success("补课成功!");
+            let ajax = new $ax(Feng.ctxPath + "/coursePackage/makeUpMissedLessons", function (data) {
+                Feng.success(data.msg);
                 RegistrationRecord.table.refresh();
             }, function (data) {
                 Feng.error("补课失败!" + data.responseJSON.message + "!");

--
Gitblit v1.7.1