From a4d873761dd03a74950d05f204171255509bd5fb Mon Sep 17 00:00:00 2001
From: zhibing.pu <393733352@qq.com>
Date: 星期一, 17 六月 2024 16:03:35 +0800
Subject: [PATCH] 修改 bug

---
 cloud-server-management/src/main/webapp/static/modular/system/bodySideAppointment/tBodySideAppointment_edit.js |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/cloud-server-management/src/main/webapp/static/modular/system/bodySideAppointment/tBodySideAppointment_edit.js b/cloud-server-management/src/main/webapp/static/modular/system/bodySideAppointment/tBodySideAppointment_edit.js
index 7e19457..5a8d5ed 100644
--- a/cloud-server-management/src/main/webapp/static/modular/system/bodySideAppointment/tBodySideAppointment_edit.js
+++ b/cloud-server-management/src/main/webapp/static/modular/system/bodySideAppointment/tBodySideAppointment_edit.js
@@ -14,7 +14,7 @@
 TQuestion.initColumn = function () {
     return [
         {field: 'selectItem', checkbox: true},
-        {title: '序号', field: 'id', visible: true, align: 'center', valign: 'middle'},
+        {title: '序号', field: 'benefitsVideosId', visible: true, align: 'center', valign: 'middle'},
         {title: '视频类型', field: 'type', visible: true, align: 'center', valign: 'middle',
             formatter:function (data) {
                 return {1:"课后练习",2:"运动教学视频",3:"器材教学视频"}[data]
@@ -147,7 +147,7 @@
         state:null
     };
     selected.forEach(function(obj) {
-        var id = obj.id;
+        var id = obj.benefitsVideosId;
         data1.ids.push(id);
     });
     data1.state = 1;
@@ -183,7 +183,7 @@
             state:null
         };
         selected.forEach(function(obj) {
-            var id = obj.id;
+            var id = obj.benefitsVideosId;
             data1.ids.push(id);
         });
         data1.state = 2;
@@ -262,7 +262,7 @@
             state:null
         };
         selected.forEach(function(obj) {
-            var id = obj.id;
+            var id = obj.benefitsVideosId;
             data1.ids.push(id);
         });
         data1.state = 3;

--
Gitblit v1.7.1