Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
EduSpider
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
viitto
EduSpider
Commits
3f0250e3
Commit
3f0250e3
authored
Jun 10, 2022
by
罗超
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/viitto/eduspider
# Conflicts: # EduSpider.WebApi/Startup.cs
parents
6eff924f
1b61f36e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
15 deletions
+12
-15
ExamService.cs
EduSpider.Services/ExamService.cs
+1
-1
Startup.cs
EduSpider.WebApi/Startup.cs
+10
-1
appsettings.json
EduSpider.WebApi/appsettings.json
+1
-13
No files found.
EduSpider.Services/ExamService.cs
View file @
3f0250e3
...
...
@@ -124,7 +124,7 @@ namespace EduSpider.Services
}),
ModuleList
=
sExamModel
?.
ScoreList
.
GroupBy
(
x
=>
new
{
x
.
KnowledgePoint
}).
Take
(
8
).
Select
(
x
=>
new
{
Module
=
x
.
Key
.
KnowledgePoint
,
Module
=
x
.
Key
.
KnowledgePoint
.
Length
>
5
?
x
.
Key
.
KnowledgePoint
.
Substring
(
0
,
6
)
+
".."
:
x
.
Key
.
KnowledgePoint
,
Score
=
x
.
Sum
(
y
=>
y
.
QScore
),
ScoreRate
=
Math
.
Round
(
x
.
Sum
(
y
=>
y
.
Score
)
/
x
.
Sum
(
y
=>
y
.
QScore
),
2
,
MidpointRounding
.
AwayFromZero
),
AvgScoreRate
=
Math
.
Round
(
x
.
Sum
(
y
=>
y
.
AvgScore
)
/
x
.
Sum
(
y
=>
y
.
QScore
),
2
,
MidpointRounding
.
AwayFromZero
),
...
...
EduSpider.WebApi/Startup.cs
View file @
3f0250e3
...
...
@@ -9,6 +9,7 @@ using Microsoft.Extensions.DependencyInjection;
using
Microsoft.Extensions.DependencyInjection.Extensions
;
using
Microsoft.Extensions.Hosting
;
using
System.Collections.Generic
;
using
System.Linq
;
using
VTX.FW.Config
;
using
VTX.FW.Filter
;
using
VTX.FW.Helper
;
...
...
@@ -69,7 +70,15 @@ namespace EduSpider.WebApi
var
ArrayStr
=
ConfigHelper
.
GetAppsettings
(
"corsArray"
);
if
(!
string
.
IsNullOrWhiteSpace
(
ArrayStr
))
{
corsArray
.
AddRange
(
JsonHelper
.
Deserialize
<
List
<
string
>>(
ArrayStr
));
var
accesslist
=
ArrayStr
.
Split
(
','
);
foreach
(
var
item
in
accesslist
)
{
if
(!
string
.
IsNullOrEmpty
(
item
))
{
corsArray
.
Add
(
item
);
}
}
corsArray
=
corsArray
.
Distinct
().
ToList
();
}
return
corsArray
;
}
...
...
EduSpider.WebApi/appsettings.json
View file @
3f0250e3
...
...
@@ -8,19 +8,7 @@
},
"AllowedHosts"
:
"*"
,
//
"corsArray"
:
[
"http://localhost"
,
"http://localhost:7100"
,
"http://192.168.10.214:7100"
,
"http://localhost:7200"
,
"http://192.168.10.214:7200"
,
"http://localhost:8081"
,
"http://localhost:8080"
,
"http://localhost:8181"
,
"http://localhost:8182"
,
"http://localhost:8082"
,
"http://localhost:7302"
],
"corsArray"
:
"https://edu.kookaku.com"
,
//ַ
"ConnectionStrings"
:
{
"DefaultConnection"
:
"server=192.168.10.214;user id=reborn;password=Reborn@2018;database=reborn_think;CharSet=utf8mb4; Convert Zero Datetime=true; "
,
...
...
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