Commit 85284206 authored by Chen Jiping's avatar Chen Jiping

feat:修改徽章判断条件

parent a6f01a66
......@@ -845,12 +845,12 @@ function drawResult(data, text) {
let tips = "";
let fontColor = '';
if (score >= 80) {
if (score >= 90) {
imgSrc = "../lib/images/excellent.png";
tips = 'Excellent!'
fontColor = 'excellent';
}
else if (score >= 60) {
else if (score >= 76) {
imgSrc = "../lib/images/great.png";
tips = 'Great!'
fontColor = 'great';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment