Authored by 王涛

Merge branch 'master-v32-lushangqing' into 'master'

文档管理上传文件成功后弹出授权框



See merge request !355
@@ -681,6 +681,19 @@ export default { @@ -681,6 +681,19 @@ export default {
681 if (document.category.toUpperCase() == document.category){ 681 if (document.category.toUpperCase() == document.category){
682 props.fileIds.push(document.id); 682 props.fileIds.push(document.id);
683 } 683 }
  684 + // Start 上传成功后弹出授权弹框 LSQ 2022/1/12
  685 + setTimeout(function (){
  686 + if(dataList.value && dataList.value.length>0){
  687 + dataList.value.map(v=>{
  688 + if(v.id==document.id){
  689 + v.checked=true;
  690 + }
  691 + })
  692 + showUserDialog(true);
  693 + }
  694 +
  695 + },1500)
  696 + //End LSQ 2022/1/12
684 // 执行回调 697 // 执行回调
685 emit('callback', {document, fileInfo}); 698 emit('callback', {document, fileInfo});
686 } 699 }