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
Email Patches
Plain Diff
Browse Files
Authored by
xwx
3 years ago
Commit
ac77396035f01dc05692cd6489bb60df533b9f75
1 parent
1c7a2eae
文档管理新增文件夹长度限制50
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
hg-monitor-web-base/src/main/resources/static/vue3/src/components/common/document/index.js
hg-monitor-web-base/src/main/resources/static/vue3/src/components/common/document/index.js
View file @
ac77396
...
...
@@ -550,7 +550,7 @@ export default {
params
.
docNo
=
"user"
;
params
.
type
=
"user"
;
}
if
(
params
.
name
.
length
>
15
){
if
(
params
.
name
.
length
>
50
){
proxy
.
$global
.
showMsg
(
"文件名称超长!"
,
"warning"
);
return
;
}
...
...
@@ -785,7 +785,7 @@ export default {
proxy
.
$global
.
showMsg
(
"文件名称不能为空!"
,
"warning"
);
return
;
}
if
(
item
.
fileName
.
length
>
15
){
if
(
item
.
fileName
.
length
>
50
){
proxy
.
$global
.
showMsg
(
"文件名称超长!"
,
"warning"
);
return
;
}
...
...
Please
register
or
login
to post a comment