修改提醒次数

This commit is contained in:
何童崇 2022-07-08 15:49:21 +08:00
parent cb71e44a3a
commit bd3328d3d5
4 changed files with 245 additions and 240 deletions

474
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -105,7 +105,7 @@
"redux": "^4.0.5",
"redux-thunk": "2.3.0",
"rsuite": "^4.3.4",
"sass-loader": "7.3.1",
"sass-loader": "^7.3.1",
"save-dev": "0.0.1-security",
"scroll-into-view": "^1.14.2",
"showdown": "^1.9.1",

View File

@ -172,7 +172,7 @@ function Introduce({ form, showNotification, match, history, enrollStatus, curre
cancelText=""
>
<div className="tips mb10"><i className="iconfont icon-shanchu_tc_icon1 font-24 mr10" style={{ color: '#ffa13a' }}></i><span className="tipTitle font-16">确定提交作品</span></div>
<span>可重复提交每天最多可提交次作品!</span>
<span>可重复提交每天最多可提交 <span className="refer-times">{qzDetail&&qzDetail.api_score_times}</span> 次作品!</span>
</Modal>
</div>
)

View File

@ -148,4 +148,9 @@
background-image: url("../image/rank_bg1.png");
background-size: 100% 100%;
}
}
}
.refer-times{
font-size: 1.5em;
color: #0b1929;
}