diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/EducationalAdministration/StuInfoFresh/RegisterQRCode/RegisterQRCode.js b/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/EducationalAdministration/StuInfoFresh/RegisterQRCode/RegisterQRCode.js
index e3f6fd188..9f396dc54 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/EducationalAdministration/StuInfoFresh/RegisterQRCode/RegisterQRCode.js
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/EducationalAdministration/StuInfoFresh/RegisterQRCode/RegisterQRCode.js
@@ -12,6 +12,10 @@
learun.layer.loading(true, '获取数据中');
learun.httpget(config.webapi + "StuInfoFresh/stuInfoFreshEntity", userinfo.baseinfo.account, (data) => {
if (data) {
+ //辅导员
+ $('.sQrText span').eq(2).html(data.StuInfoFreshEntity.ClassDiredctorName != null ? data.StuInfoFreshEntity.ClassDiredctorName.slice(0, 1) + "老师" : "");
+ $('.sQrText span').eq(3).html(data.StuInfoFreshEntity.ClassDiredctorMobile);
+
//判断是否显示报到二维码:未确认报到,且已完善信息,且缴费三有一;
var entity = data["StuInfoFreshEntity"];
if (entity.RegisterStatus == "1") {
@@ -50,9 +54,7 @@
//班主任
// $('.sQrText span').eq(0).html(data.StuInfoFreshEntity.ClassDiredctorName != null ? data.StuInfoFreshEntity.ClassDiredctorName.slice(0, 1) + "老师" : "");
// $('.sQrText span').eq(1).html(data.StuInfoFreshEntity.ClassDiredctorMobile);
- //辅导员
- $('.sQrText span').eq(2).html(data.StuInfoFreshEntity.ClassTutorName != null ? data.StuInfoFreshEntity.ClassTutorName.slice(0, 1) + "老师" : "");
- $('.sQrText span').eq(3).html(data.StuInfoFreshEntity.ClassTutorMobile);
+
//二维码
learun.code.encode({ id: 'lr_mycode_qrcode', text: data.StuInfoFreshEntity.StuNo });
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/notice/notice.html b/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/notice/notice.html
index 0299d65aa..02ef97191 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/notice/notice.html
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/notice/notice.html
@@ -21,10 +21,10 @@
班级:
- 辅导员:
+ 辅导员:
- 电话:
+ 电话:
宿舍:
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/notice/notice.js b/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/notice/notice.js
index c989d93cd..9574e05a9 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/notice/notice.js
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/notice/notice.js
@@ -16,8 +16,8 @@
$('#DeptNo').html(entity.DeptNo);
$('#MajorNo').html(entity.MajorNo);
$('#ClassNo').html(entity.ClassNo);
- $('#ClassTutorName').html(entity.ClassTutorName);
- $('#ClassTutorMobile').html(entity.ClassTutorMobile);
+ $('#ClassDiredctorName').html(entity.ClassDiredctorName);
+ $('#ClassDiredctorMobile').html(entity.ClassDiredctorMobile);
$('#PayFeeStatus').html(entity.PayFeeStatus == "1" ? "已缴费" : "未缴费");
$('#CollectFileStatus').html(entity.CollectFileStatus == "1" ? "已提交" : "未提交");
$('#GetKeyStatus').html(entity.GetKeyStatus == "1" ? "已领取" : "未领取");
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Controllers/StuInfoFreshController.cs b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Controllers/StuInfoFreshController.cs
index c1f64a959..593a5d8b6 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Controllers/StuInfoFreshController.cs
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Controllers/StuInfoFreshController.cs
@@ -55,7 +55,7 @@ namespace Learun.Application.Web.Areas.EducationalAdministration.Controllers
{
return View("Index");
}
-
+
[HttpGet]
public ActionResult IndexDC()
{
@@ -286,6 +286,13 @@ namespace Learun.Application.Web.Areas.EducationalAdministration.Controllers
#region 获取数据
+ [HttpPost]
+ [AjaxOnly]
+ public void SynchronousList()
+ {
+ stuInfoFreshIBLL.SynchronousList();
+ }
+
///
/// 获取列表数据
///
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuInfoFresh/PayFeeIndex.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuInfoFresh/PayFeeIndex.cshtml
index d5b69f515..54c4b777e 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuInfoFresh/PayFeeIndex.cshtml
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuInfoFresh/PayFeeIndex.cshtml
@@ -11,6 +11,7 @@