优化题目难度的选择编辑和前台显示;修复时间限制不统一的问题

This commit is contained in:
virusdefender
2015-09-12 18:34:24 +08:00
parent 354bb0302a
commit ee9951abf1
5 changed files with 35 additions and 13 deletions

View File

@@ -13,6 +13,10 @@ require(["jquery", "avalon", "editor", "uploader", "bsAlert", "csrfToken", "tagE
bsAlert("题目描述不能为空!");
return false;
}
if (vm.timeLimit < 100 || vm.timeLimit > 5000) {
bsAlert("保证时间限制是一个100-5000的合法整数");
return false;
}
if (vm.samples.length == 0) {
bsAlert("请至少添加一组样例!");
return false;