Commit f51bceca authored by 黄奎's avatar 黄奎

页面修改

parent 28b2ddb2
...@@ -28,7 +28,7 @@ namespace Edu.Model.ViewModel.Exam ...@@ -28,7 +28,7 @@ namespace Edu.Model.ViewModel.Exam
/// <summary> /// <summary>
/// 难易程度(1-易,2-中,3-难) /// 难易程度(1-易,2-中,3-难)
/// </summary> /// </summary>
public DifficultyTypeEnum DifficultyType { get; set; } public string DifficultyTypeName { get; set; }
/// <summary> /// <summary>
/// 创建人 /// 创建人
......
...@@ -19,5 +19,10 @@ namespace Edu.Model.ViewModel.Exam ...@@ -19,5 +19,10 @@ namespace Edu.Model.ViewModel.Exam
/// 显示标题 /// 显示标题
/// </summary> /// </summary>
public string ShowTitle { get; set; } public string ShowTitle { get; set; }
/// <summary>
/// 选项
/// </summary>
public object QuestionContentObj { get; set; }
} }
} }
...@@ -167,24 +167,7 @@ namespace Edu.Module.Course ...@@ -167,24 +167,7 @@ namespace Edu.Module.Course
/// 日志仓储对象 /// 日志仓储对象
/// </summary> /// </summary>
private readonly RB_User_ChangeLogRepository user_ChangeLogRepository = new RB_User_ChangeLogRepository(); private readonly RB_User_ChangeLogRepository user_ChangeLogRepository = new RB_User_ChangeLogRepository();
/// <summary>
/// 小程序对应的商品仓储对象
/// </summary>
private readonly Repository.Mall.RB_GoodsRepository mallGoodsRepository = new Repository.Mall.RB_GoodsRepository();
/// <summary>
/// 小程序对应的商品分类仓储对象
/// </summary>
private readonly Repository.Mall.RB_Goods_CategoryRepository MallGoodsCategoryRepository = new Repository.Mall.RB_Goods_CategoryRepository();
/// <summary>
/// 小程序对应的商品优惠仓储对象
/// </summary>
private readonly Repository.Mall.RB_Goods_PreferentialRepository MallGoodsPreferentialRepository = new Repository.Mall.RB_Goods_PreferentialRepository();
/// <summary> /// <summary>
/// 商品规格 /// 商品规格
/// </summary> /// </summary>
...@@ -203,11 +186,6 @@ namespace Edu.Module.Course ...@@ -203,11 +186,6 @@ namespace Edu.Module.Course
/// </summary> /// </summary>
private readonly RB_AccountRepository accountRepository = new RB_AccountRepository(); private readonly RB_AccountRepository accountRepository = new RB_AccountRepository();
/// <summary>
/// 课程章节仓储层对象
/// </summary>
private readonly RB_Course_ChapterRepository chapterRepository = new RB_Course_ChapterRepository();
/// <summary> /// <summary>
/// 获取班级列表 /// 获取班级列表
/// </summary> /// </summary>
...@@ -4370,19 +4348,23 @@ namespace Edu.Module.Course ...@@ -4370,19 +4348,23 @@ namespace Edu.Module.Course
{ {
if (courseModel.SalePlatList != null && courseModel.SalePlatList.Any(x => x == 4) && model.ClassStatus == ClassStatusEnum.NonOpenClass)//课程关联到了小程序 if (courseModel.SalePlatList != null && courseModel.SalePlatList.Any(x => x == 4) && model.ClassStatus == ClassStatusEnum.NonOpenClass)//课程关联到了小程序
{ {
Model.ViewModel.Mall.RB_Goods_Extend demodel = new Model.ViewModel.Mall.RB_Goods_Extend(); RB_Goods_Extend demodel = new RB_Goods_Extend
demodel.MallBaseId = Convert.ToInt32(Config.JHMallBaseId); {
demodel.TenantId = Convert.ToInt32(Config.JHTenantId); MallBaseId = Convert.ToInt32(Config.JHMallBaseId),
demodel.SpecificationList = new List<RB_Goods_Specification_Extend>(); TenantId = Convert.ToInt32(Config.JHTenantId),
demodel.SpecificationPriceList = new List<RB_Goods_SpecificationPrice_Extend>(); SpecificationList = new List<RB_Goods_Specification_Extend>(),
demodel.Id = courseModel.MallGoodsId; SpecificationPriceList = new List<RB_Goods_SpecificationPrice_Extend>(),
demodel.CreateDate = System.DateTime.Now; Id = courseModel.MallGoodsId,
RB_Goods_Specification_Extend modelSpecification = new RB_Goods_Specification_Extend(); CreateDate = DateTime.Now
modelSpecification.Id = 0;//暂定 };
modelSpecification.EnabledImage = 2; RB_Goods_Specification_Extend modelSpecification = new RB_Goods_Specification_Extend
modelSpecification.Name = "开班日期"; {
modelSpecification.Sort = 1; Id = 0,//暂定
modelSpecification.SpecificationValueList = new List<RB_Goods_SpecificationValue_Extend>(); EnabledImage = 2,
Name = "开班日期",
Sort = 1,
SpecificationValueList = new List<RB_Goods_SpecificationValue_Extend>()
};
//查询课程对应班级开课时间大于今天的班级 //查询课程对应班级开课时间大于今天的班级
var classList = classRepository.GetClassAndCourseListRepository(new RB_Class_ViewModel { CouseId = model.CouseId, StartTime = System.DateTime.Now.ToString("yyyy-MM-dd") }).Where(x => x.ClassStatus == Common.Enum.Course.ClassStatusEnum.NonOpenClass && x.OpenTime > System.DateTime.Now).ToList(); var classList = classRepository.GetClassAndCourseListRepository(new RB_Class_ViewModel { CouseId = model.CouseId, StartTime = System.DateTime.Now.ToString("yyyy-MM-dd") }).Where(x => x.ClassStatus == Common.Enum.Course.ClassStatusEnum.NonOpenClass && x.OpenTime > System.DateTime.Now).ToList();
if (classList != null && classList.Any()) if (classList != null && classList.Any())
...@@ -4390,15 +4372,16 @@ namespace Edu.Module.Course ...@@ -4390,15 +4372,16 @@ namespace Edu.Module.Course
int Sort = 1; int Sort = 1;
foreach (var item in classList) foreach (var item in classList)
{ {
RB_Goods_SpecificationValue_Extend modelSpecificationValue = new RB_Goods_SpecificationValue_Extend(); RB_Goods_SpecificationValue_Extend modelSpecificationValue = new RB_Goods_SpecificationValue_Extend
modelSpecificationValue.Id = 0; {
modelSpecificationValue.Image = ""; Id = 0,
modelSpecificationValue.ImagePath = ""; Image = "",
modelSpecificationValue.Name = item.OpenTime.ToString("MM月dd日"); ImagePath = "",
modelSpecificationValue.Sort = Sort;///暂定1 Name = item.OpenTime.ToString("MM月dd日"),
modelSpecificationValue.ClassId = item.ClassId; Sort = Sort,///暂定1
ClassId = item.ClassId
};
modelSpecification.SpecificationValueList.Add(modelSpecificationValue); modelSpecification.SpecificationValueList.Add(modelSpecificationValue);
RB_Goods_SpecificationPrice_Extend pModel = new RB_Goods_SpecificationPrice_Extend() RB_Goods_SpecificationPrice_Extend pModel = new RB_Goods_SpecificationPrice_Extend()
{ {
Commission = 0, Commission = 0,
......
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
<ProjectReference Include="..\Edu.Cache\Edu.Cache.csproj" /> <ProjectReference Include="..\Edu.Cache\Edu.Cache.csproj" />
<ProjectReference Include="..\Edu.Common\Edu.Common.csproj" /> <ProjectReference Include="..\Edu.Common\Edu.Common.csproj" />
<ProjectReference Include="..\Edu.Model\Edu.Model.csproj" /> <ProjectReference Include="..\Edu.Model\Edu.Model.csproj" />
<ProjectReference Include="..\Edu.Module.Question\Edu.Module.Question.csproj" />
<ProjectReference Include="..\Edu.Repository\Edu.Repository.csproj" /> <ProjectReference Include="..\Edu.Repository\Edu.Repository.csproj" />
</ItemGroup> </ItemGroup>
......
...@@ -7,6 +7,8 @@ using VT.FW.DB; ...@@ -7,6 +7,8 @@ using VT.FW.DB;
using System.Linq; using System.Linq;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using Edu.Cache.User; using Edu.Cache.User;
using Edu.Common.Plugin;
using Edu.Module.Question;
namespace Edu.Module.Exam namespace Edu.Module.Exam
{ {
...@@ -30,6 +32,11 @@ namespace Edu.Module.Exam ...@@ -30,6 +32,11 @@ namespace Edu.Module.Exam
/// </summary> /// </summary>
private readonly RB_Examination_GroupRepository examination_GroupRepository = new RB_Examination_GroupRepository(); private readonly RB_Examination_GroupRepository examination_GroupRepository = new RB_Examination_GroupRepository();
/// <summary>
/// 问题解析处理类
/// </summary>
private readonly AnalysisQuestionTypeModule analysisQuestion = new AnalysisQuestionTypeModule();
/// <summary> /// <summary>
/// 获取试卷分页列表 /// 获取试卷分页列表
/// </summary> /// </summary>
...@@ -57,7 +64,7 @@ namespace Edu.Module.Exam ...@@ -57,7 +64,7 @@ namespace Edu.Module.Exam
PaperId = item.PaperId, PaperId = item.PaperId,
PaperName = item.PaperName, PaperName = item.PaperName,
QuestionBandIds = item.QuestionBandIds, QuestionBandIds = item.QuestionBandIds,
DifficultyType = item.DifficultyType, DifficultyTypeName = item.DifficultyType.ToName(),
CreateTimeStr = Common.ConvertHelper.FormatTime(item.CreateTime), CreateTimeStr = Common.ConvertHelper.FormatTime(item.CreateTime),
CreateByName = UserReidsCache.GetUserLoginInfo(item.CreateBy)?.AccountName??"", CreateByName = UserReidsCache.GetUserLoginInfo(item.CreateBy)?.AccountName??"",
PublishCount = item.PublishCount, PublishCount = item.PublishCount,
...@@ -96,7 +103,7 @@ namespace Edu.Module.Exam ...@@ -96,7 +103,7 @@ namespace Edu.Module.Exam
PaperId = childItem.PaperId, PaperId = childItem.PaperId,
PaperName = childItem.PaperName, PaperName = childItem.PaperName,
QuestionBandIds = childItem.QuestionBandIds, QuestionBandIds = childItem.QuestionBandIds,
DifficultyType = childItem.DifficultyType, DifficultyTypeName = childItem.DifficultyType.ToName(),
CreateTimeStr = Common.ConvertHelper.FormatTime(childItem.CreateTime), CreateTimeStr = Common.ConvertHelper.FormatTime(childItem.CreateTime),
CreateByName = UserReidsCache.GetUserLoginInfo(childItem.CreateBy)?.AccountName ?? "", CreateByName = UserReidsCache.GetUserLoginInfo(childItem.CreateBy)?.AccountName ?? "",
PublishCount = childItem.PublishCount, PublishCount = childItem.PublishCount,
...@@ -134,8 +141,6 @@ namespace Edu.Module.Exam ...@@ -134,8 +141,6 @@ namespace Edu.Module.Exam
return examination_DetailsRepository.GetExaminationDetailsListRepository(query); return examination_DetailsRepository.GetExaminationDetailsListRepository(query);
} }
/// <summary> /// <summary>
/// 新增/修改试卷 /// 新增/修改试卷
/// </summary> /// </summary>
...@@ -284,6 +289,7 @@ namespace Edu.Module.Exam ...@@ -284,6 +289,7 @@ namespace Edu.Module.Exam
{ {
foreach (var sItem in gItem.DetailsList) foreach (var sItem in gItem.DetailsList)
{ {
sItem.QuestionContentObj = analysisQuestion.ParsingQuestion(sItem.QuestionTypeKey, sItem.QuestionContent);
string newTitle = sItem.Title; string newTitle = sItem.Title;
try try
{ {
......
...@@ -57,6 +57,7 @@ namespace Edu.WebApi.Controllers.Exam ...@@ -57,6 +57,7 @@ namespace Edu.WebApi.Controllers.Exam
item.QuestionCount, item.QuestionCount,
item.ParentId, item.ParentId,
item.PaperType, item.PaperType,
item.DifficultyTypeName,
item.ChildList, item.ChildList,
}); });
} }
......
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