Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Education
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄奎
Education
Commits
a310383b
Commit
a310383b
authored
Sep 22, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
84304040
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
49 additions
and
2 deletions
+49
-2
QuestionCategoryEnum.cs
Edu.Common/Enum/Course/QuestionCategoryEnum.cs
+5
-0
PaperModule.cs
Edu.Module.Exam/PaperModule.cs
+44
-2
No files found.
Edu.Common/Enum/Course/QuestionCategoryEnum.cs
View file @
a310383b
...
...
@@ -61,5 +61,10 @@ namespace Edu.Common.Enum.Course
[
EnumField
(
"阅读选择"
)]
ReadingChoose
=
8
,
/// <summary>
/// 听力
/// </summary>
[
EnumField
(
"听力"
)]
Listening
=
9
,
}
}
\ No newline at end of file
Edu.Module.Exam/PaperModule.cs
View file @
a310383b
...
...
@@ -550,15 +550,57 @@ namespace Edu.Module.Exam
IsMutex
=
qItem
.
IsMutex
,
Category
=
qItem
.
Category
,
LevelType
=
qItem
.
LevelType
,
Score
=
item
.
QuestionScore
/
subTempQuestionList
.
Count
()
};
detailsModel
.
Score
=
item
.
QuestionScore
/
subTempQuestionList
.
Count
();
//听力题、完型填空、阅读理解
if
(
qItem
.
QuestionTypeKey
==
"cloze"
)
{
List
<
colzeItem
>
clozeList
=
JsonHelper
.
DeserializeObject
<
List
<
colzeItem
>>(
qItem
.
QuestionContent
);
decimal
tempCScore
=
0
;
int
cIndex
=
0
;
var
sScore
=
Math
.
Floor
(
detailsModel
.
Score
/
clozeList
.
Count
*
100
)
/
100
;
foreach
(
var
cItem
in
clozeList
)
{
if
(
cIndex
!=
clozeList
.
Count
-
1
)
{
tempCScore
+=
sScore
;
cItem
.
SubScore
=
sScore
;
}
else
{
cItem
.
SubScore
=
detailsModel
.
Score
-
tempCScore
;
}
cIndex
++;
}
detailsModel
.
QuestionContent
=
JsonHelper
.
Serialize
(
clozeList
);
}
else
if
(
qItem
.
QuestionTypeKey
==
"listening"
||
qItem
.
QuestionTypeKey
==
"reading-comprehensio"
)
{
List
<
readingComprehensioItem
>
readingList
=
JsonHelper
.
DeserializeObject
<
List
<
readingComprehensioItem
>>(
qItem
.
QuestionContent
);
decimal
tempRScore
=
0
;
int
rIndex
=
0
;
var
rScore
=
Math
.
Floor
(
detailsModel
.
Score
/
readingList
.
Count
*
100
)
/
100
;
foreach
(
var
rItem
in
readingList
)
{
if
(
rIndex
!=
readingList
.
Count
-
1
)
{
tempRScore
+=
rScore
;
rItem
.
SubScore
=
rScore
;
}
else
{
rItem
.
SubScore
=
detailsModel
.
Score
-
tempRScore
;
}
rIndex
++;
}
detailsModel
.
QuestionContent
=
JsonHelper
.
Serialize
(
readingList
);
}
string
msg
=
analysisQuestion
.
CheckQuestion
(
detailsModel
.
QuestionTypeKey
,
detailsModel
.
QuestionContent
,
detailsModel
.
Answer
,
out
string
newAnswer
,
IsRequire
:
false
);
if
(!
string
.
IsNullOrEmpty
(
newAnswer
))
{
detailsModel
.
Answer
=
newAnswer
;
}
Q_SortNum
++;
var
newDetailsId
=
examination_DetailsRepository
.
Insert
(
detailsModel
);
detailsModel
.
Id
=
newDetailsId
;
flag
=
newDetailsId
>
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment