修改测试项目管理 测试分类得分

This commit is contained in:
shidongli 2022-08-25 15:00:03 +08:00
parent d2df9716ae
commit feac7a95d5
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ VUE_APP_TITLE = 幼儿园体质检测管理系统
ENV = 'development' ENV = 'development'
# 若依管理系统/开发环境 # 若依管理系统/开发环境
VUE_APP_BASE_API = 'http://192.168.16.81:8081' VUE_APP_BASE_API = 'http://192.168.16.64:8080'
#'/dev-api' #'/dev-api'
# 路由懒加载 # 路由懒加载

View File

@ -295,7 +295,7 @@ export default {
console.log(min, max); console.log(min, max);
if (Number(max) < Number(min)) { if (Number(max) < Number(min)) {
if(max!=="" && min!==""){ if(max && min && max < min){
callback(new Error("最高分必须大于最低分,请重新填写!")); callback(new Error("最高分必须大于最低分,请重新填写!"));
}else{ }else{
console.log(min, max); console.log(min, max);