上传文件大小限制 50Mb 修改 供应商选比材料数字校验

master
Harry Yang 2023-01-05 16:50:37 +08:00
parent f5760efc34
commit 2290d5f963
3 changed files with 6 additions and 6 deletions

View File

@ -30,10 +30,10 @@ spring.freemarker.allow-request-override=true
spring.freemarker.allow-session-override=true
spring.freemarker.settings.template_exception_handler=ignore
multipart.maxFileSize=20Mb
multipart.maxRequestSize=20Mb
spring.http.multipart.maxFileSize=20Mb
spring.http.multipart.maxRequestSize=20Mb
multipart.maxFileSize=50Mb
multipart.maxRequestSize=50Mb
spring.http.multipart.maxFileSize=50Mb
spring.http.multipart.maxRequestSize=50Mb
spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
spring.data.rest.page-param-name=page

View File

@ -903,7 +903,7 @@
else if (value instanceof Array) {
return value.length === 0
}
return value != null || value !== undefined
return value == null || value === undefined
}
const containsEmpty = detail => {

View File

@ -1059,7 +1059,7 @@
else if (value instanceof Array) {
return value.length === 0
}
return value != null || value !== undefined
return value == null || value === undefined
}
const containsEmpty = detail => {