diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Controllers/StuVolunteerController.cs b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Controllers/StuVolunteerController.cs
index f573ba020..3ef093f68 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Controllers/StuVolunteerController.cs
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Controllers/StuVolunteerController.cs
@@ -19,9 +19,6 @@ namespace Learun.Application.Web.Areas.EducationalAdministration.Controllers
public class StuVolunteerController : MvcControllerBase
{
private StuVolunteerIBLL stuVolunteerIBLL = new StuVolunteerBLL();
- private UserIBLL userIBLL = new UserBLL();
- private StuInfoBasicIBLL stuInfoBasicIBLL = new StuInfoBasicBLL();
-
#region 视图功能
@@ -131,6 +128,25 @@ namespace Learun.Application.Web.Areas.EducationalAdministration.Controllers
return View();
}
+ ///
+ /// 专业注册
+ ///
+ ///
+ [HttpGet]
+ public ActionResult IndexMajor()
+ {
+ return View();
+ }
+ ///
+ ///
+ ///
+ ///
+ [HttpGet]
+ public ActionResult FormMajor()
+ {
+ return View();
+ }
+
#endregion
#region 获取数据
@@ -356,24 +372,30 @@ namespace Learun.Application.Web.Areas.EducationalAdministration.Controllers
return Success("提交成功!");
}
+ ///
+ /// 专业:审核/去审核
+ ///
+ ///
+ ///
+ public ActionResult MajorForm(string keyValue ,int MajorStatus)
+ {
+ stuVolunteerIBLL.MajorForm(keyValue,MajorStatus);
+ return Success("录取成功!");
+ }
- //public ActionResult Search(string CardNo, string txtPass)
- //{
- // var StuVolunteerData = stuVolunteerIBLL.IsEnrollByCard(CardNo);
- // if (StuVolunteerData != null)
- // {
- // var jsonData = new
- // {
- // StuVolunteer = StuVolunteerData,
- // };
- // return Success(jsonData);
- // }
- // else
- // {
- // return Success(null);
- // }
- //}
-
+ ///
+ /// 注册专业
+ ///
+ /// 主键
+ /// 审核状态
+ ///
+ [HttpPost]
+ [AjaxOnly]
+ public ActionResult SaveMajorForm(string keyValue, string MajorNo)
+ {
+ stuVolunteerIBLL.SaveMajorForm(keyValue, MajorNo);
+ return Success("注册成功!");
+ }
#endregion
}
}
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/ClassForm.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/ClassForm.js
index 5acba0529..8ca3077b5 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/ClassForm.js
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/ClassForm.js
@@ -6,6 +6,7 @@
*/
var acceptClick;
var keyValue = request('keyValue');
+var MajorNo = request('MajorNo');
var bootstrap = function ($, learun) {
"use strict";
var page = {
@@ -15,14 +16,24 @@ var bootstrap = function ($, learun) {
page.initData();
},
bind: function () {
- $('#ClassNo').lrDataSourceSelect({ code: 'bjsj', value: 'classno', text: 'classname' });
+ if (MajorNo != null && MajorNo != "" && MajorNo != undefined) {
+ console.log(MajorNo,321);
+ $('#ClassNo').lrselect({
+ url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=bjsj',
+ param: { strWhere: " 1=1 and MajorNo = '" + MajorNo + "'" },
+ value: "classno",
+ text: "classname",
+ maxHeight: 200
+ });
+ }
+ $("#ClassNo").lrselect();
},
initData: function () {
if (!!keyValue) {
$.lrSetForm(top.$.rootUrl + '/EducationalAdministration/StuVolunteer/GetFormData?keyValue=' + keyValue, function (data) {
for (var id in data) {
if (!!data[id].length && data[id].length > 0) {
- $('#' + id ).jfGridSet('refreshdata', data[id]);
+ $('#' + id).jfGridSet('refreshdata', data[id]);
}
else {
$('[data-table="' + id + '"]').lrSetFormData(data[id]);
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/Form.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/Form.cshtml
index e152d88d3..c7e58b257 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/Form.cshtml
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/Form.cshtml
@@ -29,7 +29,7 @@
身份证号*
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/FormGenerate.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/FormGenerate.js
index 4d5bfd422..2ba63add3 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/FormGenerate.js
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/FormGenerate.js
@@ -19,11 +19,36 @@ var bootstrap = function ($, learun) {
$('#IsPlan').lrDataItemSelect({ code: 'YesOrNoBit' });
$('#Sex').lrDataItemSelect({ code: 'usersex' });
- $('#MajorOne').lrDataSourceSelect({ code: 'CdMajorInfo', value: 'id', text: 'majorname' });
- $('#MajorThree').lrDataSourceSelect({ code: 'CdMajorInfo', value: 'id', text: 'majorname' });
- $('#MajorTwo').lrDataSourceSelect({ code: 'CdMajorInfo', value: 'id', text: 'majorname' });
- $('#MajorNo').lrDataSourceSelect({ code: 'CdMajorInfo', value: 'majorno', text: 'majorname' });
- $('#ClassNo').lrDataSourceSelect({ code: 'bjsj', value: 'classno', text: 'classname' });
+ //$('#MajorOne').lrDataSourceSelect({ code: 'CdMajorInfo', value: 'id', text: 'majorname' });
+ //$('#MajorThree').lrDataSourceSelect({ code: 'CdMajorInfo', value: 'id', text: 'majorname' });
+ //$('#MajorTwo').lrDataSourceSelect({ code: 'CdMajorInfo', value: 'id', text: 'majorname' });
+ $('#MajorNo').lrselect({
+ url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=' + 'CdMajorInfo',
+ value: 'majorno',
+ text: 'majorname',
+ maxHeight: 200,
+ select: function (item) {
+ var classNo = $("#MajorNo").lrselectGet();
+ if (classNo != null && classNo != "" && classNo != undefined) {
+ $('#ClassNo').lrselectRefresh({
+ url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=bjsj',
+ param: { strWhere: " 1=1 and majorno in (" + classNo + ")" },
+ value: "classno",
+ text: "classname",
+ maxHeight: 200
+ });
+ } else {
+ $('#ClassNo').lrselectRefresh({
+ url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=bjsj',
+ param: { strWhere: " 1=1 and majorno ='' " },
+ value: "classno",
+ text: "classname",
+ maxHeight: 200
+ });
+ }
+ }
+ })
+ $("#ClassNo").lrselect();
},
initData: function () {
if (!!keyValue) {
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/FormMajor.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/FormMajor.cshtml
new file mode 100644
index 000000000..2fa36e15c
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/FormMajor.cshtml
@@ -0,0 +1,11 @@
+@{
+ ViewBag.Title = "分班";
+ Layout = "~/Views/Shared/_Form.cshtml";
+}
+
+@Html.AppendJsFile("/Areas/EducationalAdministration/Views/StuVolunteer/FormMajor.js")
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/FormMajor.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/FormMajor.js
new file mode 100644
index 000000000..5133e33f7
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/FormMajor.js
@@ -0,0 +1,52 @@
+/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
+ * Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ * 创建人:超级管理员
+ * 日 期:2021-12-16 10:14
+ * 描 述:长阳迎新
+ */
+var acceptClick;
+var keyValue = request('keyValue');
+var bootstrap = function ($, learun) {
+ "use strict";
+ var page = {
+ init: function () {
+ $('.lr-form-wrap').lrscroll();
+ page.bind();
+ page.initData();
+ },
+ bind: function () {
+ $('#MajorNo').lrDataSourceSelect({ code: 'CdMajorInfo', value: 'majorno', text: 'majorname' });
+ },
+ initData: function () {
+ if (!!keyValue) {
+ $.lrSetForm(top.$.rootUrl + '/EducationalAdministration/StuVolunteer/GetFormData?keyValue=' + keyValue, function (data) {
+ for (var id in data) {
+ if (!!data[id].length && data[id].length > 0) {
+ $('#' + id ).jfGridSet('refreshdata', data[id]);
+ }
+ else {
+ $('[data-table="' + id + '"]').lrSetFormData(data[id]);
+ }
+ }
+ });
+ }
+ }
+ };
+ // 保存数据
+ acceptClick = function (callBack) {
+ if (!$('body').lrValidform()) {
+ return false;
+ }
+ var data = $('body').lrGetFormData();
+ var postData = {
+ MajorNo: data.MajorNo
+ };
+ $.lrSaveForm(top.$.rootUrl + '/EducationalAdministration/StuVolunteer/SaveMajorForm?keyValue=' + keyValue, postData, function (res) {
+ // 保存成功后才回调
+ if (!!callBack) {
+ callBack();
+ }
+ });
+ };
+ page.init();
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/Index.js
index 49e3b7533..9ed573a15 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/Index.js
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/Index.js
@@ -86,12 +86,12 @@ var bootstrap = function ($, learun) {
label: "性别", name: "Sex", width: 100, align: "left",
formatterAsync: function (callback, value, row, op, $cell) {
learun.clientdata.getAsync('dataItem', {
- key: value,
- code: 'usersex',
- callback: function (_data) {
- callback(_data.text);
- }
- });
+ key: value,
+ code: 'usersex',
+ callback: function (_data) {
+ callback(_data.text);
+ }
+ });
}
},
{
@@ -115,6 +115,7 @@ var bootstrap = function ($, learun) {
{ label: "备注", name: "Demo", width: 100, align: "left" },
],
mainId: 'ID',
+ sidx: 'UpdateTime desc',
isPage: true,
isMultiselect: true
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/IndexDivide.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/IndexDivide.cshtml
index 687099312..8bb23a38c 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/IndexDivide.cshtml
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/IndexDivide.cshtml
@@ -14,17 +14,21 @@
学生姓名
+ @*
+
+ *@
-
-
班级
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/IndexDivide.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/IndexDivide.js
index 54c1e3b24..808eea17e 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/IndexDivide.js
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/IndexDivide.js
@@ -17,10 +17,36 @@ var bootstrap = function ($, learun) {
page.search(queryJson);
}, 220, 400);
$('#Sex').lrDataItemSelect({ code: 'usersex' });
- $('#MajorOne').lrDataSourceSelect({ code: 'CdMajorInfo', value: 'id', text: 'majorname' });
- $('#MajorTwo').lrDataSourceSelect({ code: 'CdMajorInfo', value: 'id', text: 'majorname' });
- $('#MajorThree').lrDataSourceSelect({ code: 'CdMajorInfo', value: 'id', text: 'majorname' });
- $('#ClassNo').lrDataSourceSelect({ code: 'bjsj', value: 'classno', text: 'classname' });
+ //$('#MajorOne').lrDataSourceSelect({ code: 'CdMajorInfo', value: 'id', text: 'majorname' });
+ //$('#MajorTwo').lrDataSourceSelect({ code: 'CdMajorInfo', value: 'id', text: 'majorname' });
+ //$('#MajorThree').lrDataSourceSelect({ code: 'CdMajorInfo', value: 'id', text: 'majorname' });
+ $('#MajorNo').lrselect({
+ url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=' + 'CdMajorInfo',
+ value: 'majorno',
+ text: 'majorname',
+ maxHeight: 200,
+ select: function (item) {
+ var classNo = $("#MajorNo").lrselectGet();
+ if (classNo != null && classNo != "" && classNo != undefined) {
+ $('#ClassNo').lrselectRefresh({
+ url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=bjsj',
+ param: { strWhere: " 1=1 and majorno in (" + classNo + ")" },
+ value: "classno",
+ text: "classname",
+ maxHeight: 200
+ });
+ } else {
+ $('#ClassNo').lrselectRefresh({
+ url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=bjsj',
+ param: { strWhere: " 1=1 and majorno ='' " },
+ value: "classno",
+ text: "classname",
+ maxHeight: 200
+ });
+ }
+ }
+ })
+ $("#ClassNo").lrselect();
// 刷新
$('#lr_refresh').on('click', function () {
location.reload();
@@ -36,18 +62,33 @@ var bootstrap = function ($, learun) {
learun.alert.warning("选中记录包含审核通过的数据!");
return;
}
- learun.layerForm({
- id: 'classform',
- title: '选择班级',
- url: top.$.rootUrl + '/EducationalAdministration/StuVolunteer/ClassForm?keyValue=' + keyValue,
- width: 400,
- height: 300,
- callBack: function (id) {
- return top[id].acceptClick(refreshGirdData);
- }
- });
+ var MajorNos = $('#gridtable').jfGridValue('MajorNo');
+ var arrayList = MajorNos.split(',');
+ var res = true;
+ for (var i = 0; i < arrayList.length; i++) {
+ if (arrayList[0] == arrayList[i]) {
+ MajorNos = arrayList[0];
+ res = true;
+ } else {
+ res = false;
+ }
+ }
+ if (res) {
+ learun.layerForm({
+ id: 'classform',
+ title: '选择班级',
+ url: top.$.rootUrl + '/EducationalAdministration/StuVolunteer/ClassForm?keyValue=' + keyValue + '&MajorNo=' + MajorNos,
+ width: 400,
+ height: 300,
+ callBack: function (id) {
+ return top[id].acceptClick(refreshGirdData);
+ }
+ });
+ } else {
+ learun.alert.warning("请选择相同专业学生进行分班!");
+ return;
+ }
});
-
},
// 初始化列表
initGird: function () {
@@ -69,13 +110,52 @@ var bootstrap = function ($, learun) {
},
{ label: "中考总分", name: "StuScore", width: 100, align: "left" },
{ label: "身份证号", name: "CardNo", width: 150, align: "left" },
+ //{
+ // label: "第一意向", name: "MajorOne", width: 100, align: "left",
+ // formatterAsync: function (callback, value, row, op, $cell) {
+ // learun.clientdata.getAsync('custmerData', {
+ // url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'CdMajorInfo',
+ // key: value,
+ // keyId: 'id',
+ // callback: function (_data) {
+ // callback(_data['majorname']);
+ // }
+ // });
+ // }
+ //},
+ //{
+ // label: "第二意向", name: "MajorTwo", width: 100, align: "left",
+ // formatterAsync: function (callback, value, row, op, $cell) {
+ // learun.clientdata.getAsync('custmerData', {
+ // url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'CdMajorInfo',
+ // key: value,
+ // keyId: 'id',
+ // callback: function (_data) {
+ // callback(_data['majorname']);
+ // }
+ // });
+ // }
+ //},
+ //{
+ // label: "第三意向", name: "MajorThree", width: 100, align: "left",
+ // formatterAsync: function (callback, value, row, op, $cell) {
+ // learun.clientdata.getAsync('custmerData', {
+ // url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'CdMajorInfo',
+ // key: value,
+ // keyId: 'id',
+ // callback: function (_data) {
+ // callback(_data['majorname']);
+ // }
+ // });
+ // }
+ //},
{
- label: "第一意向", name: "MajorOne", width: 100, align: "left",
+ label: "注册专业", name: "MajorNo", width: 150, align: "left",
formatterAsync: function (callback, value, row, op, $cell) {
learun.clientdata.getAsync('custmerData', {
url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'CdMajorInfo',
key: value,
- keyId: 'id',
+ keyId: 'majorno',
callback: function (_data) {
callback(_data['majorname']);
}
@@ -83,29 +163,11 @@ var bootstrap = function ($, learun) {
}
},
{
- label: "第二意向", name: "MajorTwo", width: 100, align: "left",
- formatterAsync: function (callback, value, row, op, $cell) {
- learun.clientdata.getAsync('custmerData', {
- url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'CdMajorInfo',
- key: value,
- keyId: 'id',
- callback: function (_data) {
- callback(_data['majorname']);
- }
- });
- }
- },
- {
- label: "第三意向", name: "MajorThree", width: 100, align: "left",
- formatterAsync: function (callback, value, row, op, $cell) {
- learun.clientdata.getAsync('custmerData', {
- url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'CdMajorInfo',
- key: value,
- keyId: 'id',
- callback: function (_data) {
- callback(_data['majorname']);
- }
- });
+ label: "专业审核", name: "MajorStatus", width: 100, align: "left",
+ formatter: function (cellvalue) {
+ return cellvalue == 1
+ ? "
已审核"
+ : "
未审核";
}
},
{
@@ -139,7 +201,7 @@ var bootstrap = function ($, learun) {
},
search: function (param) {
param = param || {};
- param.SqlParameter = " and IsEnroll=1 and EnrollStatus=1";
+ param.SqlParameter = " and IsEnroll=1 and EnrollStatus=1 and MajorStatus=1";
$('#gridtable').jfGridSet('reload', { queryJson: JSON.stringify(param) });
}
};
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/IndexEnroll.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/IndexEnroll.cshtml
index aa9538b9d..a9d10789f 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/IndexEnroll.cshtml
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/IndexEnroll.cshtml
@@ -26,6 +26,11 @@
性别
+
+
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/IndexEnroll.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/IndexEnroll.js
index 68cf882c1..5213a81a0 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/IndexEnroll.js
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/IndexEnroll.js
@@ -7,6 +7,7 @@
var refreshGirdData;
var bootstrap = function ($, learun) {
"use strict";
+ var strsql = '';
var page = {
init: function () {
page.initGird();
@@ -17,11 +18,25 @@ var bootstrap = function ($, learun) {
page.search(queryJson);
}, 220, 400);
$('#Sex').lrDataItemSelect({ code: 'usersex' });
+ $('#StuScore').lrDataItemSelect({
+ code: 'EnrollScore',
+ select: function (item) {
+ if (item != undefined) {
+ switch (item.id) {
+ case item.id:
+ strsql = " and t.StuScore " + item.id + "";
+ break;
+ default:
+ break;
+ }
+ }
+ }
+ });
// 刷新
$('#lr_refresh').on('click', function () {
location.reload();
});
- //// 录取
+ // 录取
$('#lr_enroll').on('click', function () {
var keyValue = $('#gridtable').jfGridValue('ID');
if (learun.checkrow(keyValue)) {
@@ -106,6 +121,7 @@ var bootstrap = function ($, learun) {
},
search: function (param) {
param = param || {};
+ param.SqlParameter = strsql + " and MajorOne is null and IsCYSchool = 'True' ";
$('#gridtable').jfGridSet('reload', { queryJson: JSON.stringify(param) });
}
};
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/IndexGenerate.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/IndexGenerate.cshtml
index 96e4e53f3..5c76d9e23 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/IndexGenerate.cshtml
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuVolunteer/IndexGenerate.cshtml
@@ -30,7 +30,7 @@
班级
-