Toggle navigation
Toggle navigation
This project
Loading...
Sign in
monitor_v3
/
hg-monitor-web
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
王涛
2022-03-11 10:59:07 +0800
Commit
648640bd441a2d73f1ff852fb55cac77062d06df
2 parents
8be6a0b9
e7981cdb
Merge branch 'master-500-dev-xwx' into 'master-500-dev'
文档上传名称不能包含空格 See merge request
!453
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
hg-monitor-web-base/src/main/resources/static/vue3/src/components/common/upload/index.js
hg-monitor-web-base/src/main/resources/static/vue3/src/components/common/upload/index.js
View file @
648640b
...
...
@@ -121,6 +121,13 @@ export default {
docNo
:
props
.
docNo
}
// xwx 文档上传名称不能包含空字符串
if
(
fileObj
.
name
.
indexOf
(
" "
)
>=
0
){
proxy
.
$global
.
showMsg
(
"文档名称不能存在空格!"
,
"warning"
);
return
;
}
/*文件大小限制更改为200M
* lu 20211206
*/
...
...
Please
register
or
login
to post a comment