Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
thinkApp
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
游洁
thinkApp
Commits
56ab1b4a
Commit
56ab1b4a
authored
May 27, 2022
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
82384fac
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
12 deletions
+12
-12
penta.vue
src/components/charts/penta.vue
+2
-2
triangle.vue
src/components/charts/triangle.vue
+2
-2
allGraspTheSituation.vue
src/components/index/scoreDetails/allGraspTheSituation.vue
+2
-2
analysisTest.vue
src/components/index/scoreDetails/analysisTest.vue
+2
-2
graspTheSituation.vue
src/components/index/scoreDetails/graspTheSituation.vue
+2
-2
scoreDetails.vue
src/pages/index/scoreDetails.vue
+2
-2
No files found.
src/components/charts/penta.vue
View file @
56ab1b4a
...
...
@@ -57,8 +57,8 @@
let
avgRate
=
[];
//平均得分率
props
.
ModuleList
.
forEach
(
item
=>
{
cate
.
push
(
item
.
Module
);
grRate
.
push
(
item
.
ScoreRate
*
100
);
avgRate
.
push
(
item
.
AvgScoreRate
*
100
);
grRate
.
push
(
(
item
.
ScoreRate
*
100
).
toFixed
(
0
)
);
avgRate
.
push
(
(
item
.
AvgScoreRate
*
100
).
toFixed
(
0
)
);
});
let
res
=
{
categories
:
cate
,
...
...
src/components/charts/triangle.vue
View file @
56ab1b4a
...
...
@@ -59,8 +59,8 @@
let
avgScore
=
[];
props
.
DifficultyRateList
.
forEach
(
item
=>
{
cate
.
push
(
item
.
Difficulty
);
grScore
.
push
(
item
.
ScoreRate
*
100
);
avgScore
.
push
(
item
.
AvgScoreRate
*
100
);
grScore
.
push
(
(
item
.
ScoreRate
*
100
).
toFixed
(
0
)
);
avgScore
.
push
(
(
item
.
AvgScoreRate
*
100
).
toFixed
(
0
)
);
});
let
res
=
{
categories
:
cate
,
...
...
src/components/index/scoreDetails/allGraspTheSituation.vue
View file @
56ab1b4a
...
...
@@ -9,8 +9,8 @@
<text
class=
"Score"
>
{{
item
.
Score
}}
</text>
<text
class=
"ScoreRate"
:class=
"item.ScoreRate
<0
.
5
?'
failed
'
:
(
item
.
ScoreRate=
=1?'fullScore':'')"
>
{{
item
.
ScoreRate
*
100
}}
<text>
%
</text></text>
<text
class=
"AvgScoreRate"
>
{{
item
.
AvgScoreRate
*
100
}}
<text>
%
</text></text>
(
item
.
ScoreRate=
=1?'fullScore':'')"
>
{{
(
item
.
ScoreRate
*
100
).
toFixed
(
0
)
}}
<text>
%
</text></text>
<text
class=
"AvgScoreRate"
>
{{
(
item
.
AvgScoreRate
*
100
).
toFixed
(
0
)
}}
<text>
%
</text></text>
</view>
</view>
...
...
src/components/index/scoreDetails/analysisTest.vue
View file @
56ab1b4a
...
...
@@ -23,9 +23,9 @@
<view
class=
"analysisTest-KnowledgePoint"
>
{{
item
.
KnowledgePoint
}}
</view>
<view
class=
"analysisTest-ScoreOne"
>
{{
item
.
QScore
}}
</view>
<view
class=
"analysisTest-ScoreTwo"
>
{{
item
.
Score
}}
</view>
<view
class=
"analysisTest-scoringRate"
>
{{
item
.
ScoreRate
*
100
}}
%
</view>
<view
class=
"analysisTest-scoringRate"
>
{{
(
item
.
ScoreRate
*
100
).
toFixed
(
0
)
}}
%
</view>
<view
class=
"analysisTest-TheAverageAcore"
>
{{
item
.
AvgScore
}}
</view>
<view
class=
"analysisTest-averageScoringRate"
>
{{
item
.
AvgScoreRate
*
100
}}
%
</view>
<view
class=
"analysisTest-averageScoringRate"
>
{{
(
item
.
AvgScoreRate
*
100
).
toFixed
(
0
)
}}
%
</view>
</td>
</tr>
...
...
src/components/index/scoreDetails/graspTheSituation.vue
View file @
56ab1b4a
...
...
@@ -6,8 +6,8 @@
<view
class=
"graspTheSituation-content flex"
>
<view
class=
"graspTheSituation-num flex"
v-for=
"(item,index) in DifficultyRateList"
:key=
"index"
>
<text>
{{
item
.
Difficulty
}}
</text>
<text>
{{
item
.
ScoreRate
}}
<text>
%
</text></text>
<text>
{{
item
.
AvgScoreRate
}}
<text>
%
</text></text>
<text>
{{
(
item
.
ScoreRate
*
100
).
toFixed
(
0
)
}}
<text>
%
</text></text>
<text>
{{
(
item
.
AvgScoreRate
*
100
).
toFixed
(
0
)
}}
<text>
%
</text></text>
</view>
</view>
...
...
src/pages/index/scoreDetails.vue
View file @
56ab1b4a
...
...
@@ -35,7 +35,7 @@
<view
class=
"scoreDetails-Fraction-img activeTwo"
></view>
<view
class=
"scoreDetails-Fraction-num"
>
<view>
<text>
{{
ExamScore
.
ScoreRate
*
100
}}
</text>
%
<text>
{{
(
ExamScore
.
ScoreRate
*
100
).
toFixed
(
0
)
}}
</text>
%
</view>
<view>
得分率
</view>
</view>
...
...
@@ -44,7 +44,7 @@
<view
class=
"scoreDetails-Fraction-img activeThree"
></view>
<view
class=
"scoreDetails-Fraction-num"
>
<view>
<text>
{{
ExamScore
.
RankRate
*
100
}}
</text>
%
<text>
{{
(
ExamScore
.
RankRate
*
100
).
toFixed
(
0
)
}}
</text>
%
</view>
<view>
领先度
</view>
</view>
...
...
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