Commit 1e99c872 authored by 黄奎's avatar 黄奎

页面修改

parent 3d120144
...@@ -205,12 +205,11 @@ namespace Edu.Module.Question ...@@ -205,12 +205,11 @@ namespace Edu.Module.Question
{ {
var item = new optionItem() var item = new optionItem()
{ {
Name = isSingleNum ? (i + 1).ToString() : tempList[i].Name, Name = tempList[i].Name,
ShowName = tempList[i].ShowName,
Content = tempList[i].Content, Content = tempList[i].Content,
IsAnswer = tempList[i].IsAnswer IsAnswer = tempList[i].IsAnswer
}; };
item.ShowName = LetterArray[i]; item.ShowName = isSingleNum? (i + 1).ToString() : LetterArray[i];
newList.Add(item); newList.Add(item);
} }
} }
......
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