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
鲁尚清
3 years ago
Commit
6d0c6c51f793b270d2a33cd7c8c2e24d38e6d4c8
1 parent
5739d0e1
文档管理上传文件成功后弹出授权框
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 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 @
6d0c6c5
...
...
@@ -681,6 +681,19 @@ export default {
if
(
document
.
category
.
toUpperCase
()
==
document
.
category
){
props
.
fileIds
.
push
(
document
.
id
);
}
// Start 上传成功后弹出授权弹框 LSQ 2022/1/12
setTimeout
(
function
(){
if
(
dataList
.
value
&&
dataList
.
value
.
length
>
0
){
dataList
.
value
.
map
(
v
=>
{
if
(
v
.
id
==
document
.
id
){
v
.
checked
=
true
;
}
})
showUserDialog
(
true
);
}
},
1500
)
//End LSQ 2022/1/12
// 执行回调
emit
(
'callback'
,
{
document
,
fileInfo
});
}
...
...
Please
register
or
login
to post a comment