|
|
@@ -683,7 +683,7 @@ export default {
|
|
|
} else {
|
|
|
return `${item.subjectName}(${item.score})`
|
|
|
}}).join('、')
|
|
|
- if(data?.fullScore){
|
|
|
+ if(data?.fullScore && data?.fullScore!='-'){
|
|
|
const scoreText = data?.studentOpenness == 1 || data?.studentOpenness == 2 ? '总分' : '总分标准分为'
|
|
|
const unit = data?.studentOpenness == 1 || data?.studentOpenness == 2 ? '分' : '';
|
|
|
this.suggestionHtml = `${data?.studentName || ''}同学,本次考试${scoreText}<span style="color: #2e64fa">${data?.fullScore}</span>${unit},整体处于${data?.summarySuggestionLevel},`;
|
|
|
@@ -693,6 +693,8 @@ export default {
|
|
|
if(downSubjectData){
|
|
|
this.suggestionHtml += `<span style="color: #f56c6c">${downSubjectData}</span>是你的劣势学科,建议先加强学习,熟练掌握薄弱知识点的基础,然后通过提分练习进行巩固和强化,争取下次考试获得更优异的成绩!`;
|
|
|
}
|
|
|
+ }else{
|
|
|
+ this.suggestionHtml = null
|
|
|
}
|
|
|
} else {
|
|
|
this.suggestionHtml = null
|