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-01-12 12:04:18 +0800
Commit
b780f073e6f53139d5f1974d4cfce74d20f1fac5
2 parents
26b84418
623c6f3f
Merge branch 'master-v32-lushangqing' into 'master'
文档管理上传文件成功后弹出授权框 See merge request
!355
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 @
b780f07
...
...
@@ -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