Commit d6892e63 authored by 黄奎's avatar 黄奎

页面修改

parent 6e85b35e
......@@ -166,5 +166,25 @@ namespace Edu.Model.Entity.Customer
/// 审核时间
/// </summary>
public DateTime ApproveTime { get; set; }
/// <summary>
/// 微信用户OpenId
/// </summary>
public string OpenId { get; set; }
/// <summary>
/// 微信用户UnionId
/// </summary>
public string UnionId { get; set; }
/// <summary>
/// 微信昵称
/// </summary>
public string WeChatName { get; set; }
/// <summary>
/// 头像
/// </summary>
public string WeChatPhoto { get; set; }
}
}
\ No newline at end of file
......@@ -1569,7 +1569,6 @@ namespace Edu.Module.Course
#endregion
#region 小程序商品
public int SetMallGoods(RB_Course_ViewModel model)
{
......@@ -1744,7 +1743,8 @@ namespace Edu.Module.Course
}
}
else
{ //修改
{
//修改
Dictionary<string, object> keyValues = new Dictionary<string, object>() {
{ nameof(RB_Goods.Name),demodel.Name},
{ nameof(RB_Goods.CarouselImage),demodel.CarouselImage},
......@@ -2122,5 +2122,43 @@ namespace Edu.Module.Course
}
#endregion
#region 甲鹤同业小程序
/// <summary>
/// 小程序获取分类鹤课程列表
/// </summary>
/// <returns></returns>
public object App_GetCateAndCourseListModule(int Group_Id)
{
var data= GetCourseListModule(new RB_Course_ViewModel() { Group_Id= Group_Id });
List<object> courseSubjects = new List<object>();
List<object> cateResultList = new List<object>();
if (data != null && data.Count > 0)
{
foreach (var item in data.GroupBy(qitem => qitem.CourseSubject)?.ToList())
{
courseSubjects.Add(new
{
SubjectKey= item.Key,
SubjectName= item.Key.ToName()
});
}
var cateList = data.GroupBy(qitem => new { qitem.CateId, qitem.CateName }).Select(qitem => new { qitem.Key.CateId, qitem.Key.CateName });
foreach (var item in cateList)
{
cateResultList.Add(new
{
item.CateId,
item.CateName,
CourseList = data.Where(qitem => qitem.CateId == item.CateId)?.ToList()
});
}
}
return new { courseSubjects , cateList= cateResultList };
}
#endregion
}
}
\ No newline at end of file
......@@ -92,7 +92,5 @@ namespace Edu.WebApi.Controllers
AppStudentLoginError userInfo = AppStudentReidsCache.GetStudentErrorLogin(Id);
return userInfo;
}
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment