fix bug
This commit is contained in:
@@ -4160,11 +4160,13 @@ export default {
|
||||
)}分`
|
||||
);
|
||||
this.calculateScore(this.currentScore);
|
||||
if (prop === 'reviewScore') this.logReviewScoreSummary();
|
||||
return;
|
||||
}
|
||||
}
|
||||
detail[prop] = normalized;
|
||||
this.calculateScore(this.currentScore);
|
||||
if (prop === 'reviewScore') this.logReviewScoreSummary();
|
||||
},
|
||||
handleScoreDecimalInput(prop, value) {
|
||||
const normalized = String(value || '')
|
||||
@@ -4217,6 +4219,15 @@ export default {
|
||||
return sum + this.getScoreItemFullScore(item);
|
||||
}, 0);
|
||||
},
|
||||
logReviewScoreSummary() {
|
||||
const details = this.currentScore.details || [];
|
||||
console.log('[评分详情] 复评评分结果', {
|
||||
复评总分: this.currentScore.reviewScore,
|
||||
总分: this.getScoreFullMark(details),
|
||||
得分率: `${this.currentScore.scoreRate}%`,
|
||||
匹配到的信用等级: this.currentScore.creditLevel || '',
|
||||
});
|
||||
},
|
||||
matchCreditStandard(score, scoreRate) {
|
||||
const standards = (score.standards || [])
|
||||
.filter(item => item && item.creditLevel)
|
||||
|
||||
Reference in New Issue
Block a user