Commit 680ba1fc authored by liudong1993's avatar liudong1993

Merge branch 'master' of http://gitlab.oytour.com/Kui2/education

parents d34a8b37 e43fea97
......@@ -65,6 +65,14 @@ namespace Edu.Module.Question
case "matching":
obj = Common.Plugin.JsonHelper.DeserializeObject<List<List<matchingItem>>>(data);
break;
//排序题
case "sorting-problem":
obj = Common.Plugin.JsonHelper.DeserializeObject<List<List<matchingItem>>>(data);
break;
//完型填空
case "cloze":
obj = Common.Plugin.JsonHelper.DeserializeObject<List<List<optionItem>>>(data);
break;
}
return obj;
}
......
......@@ -87,6 +87,7 @@ namespace Edu.WebApi.Controllers.Course
/// </summary>
/// <returns></returns>
[HttpPost]
[HttpGet]
public ApiResult GetDifficultyType()
{
var list = Common.Plugin.EnumHelper.EnumToList(typeof(DifficultyTypeEnum));
......
......@@ -1410,5 +1410,10 @@ namespace Edu.WebApi.Controllers.OKR
#endregion
#region 数据看板
#endregion
}
}
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