Browse Source

补全管理报告日志显示

master
yzj 3 years ago
parent
commit
dc54541a6a
  1. 16
      src/views/project/infoShow/queryList.vue

16
src/views/project/infoShow/queryList.vue

@ -1161,12 +1161,16 @@ @@ -1161,12 +1161,16 @@
return isLt200M;
},
//
handleProjectFileSuccess(response, file, fileList) {
this.uploadProject.open = false;
this.uploadProject.isUploading = false;
this.$refs.uploadProject.clearFiles();
this.$alert(response.msg, "导入结果", { dangerouslyUseHTMLString: true });
this.getList();
handleProjectFileSuccess: function(response, file, fileList) {
this.uploadProject.open = false
this.uploadProject.isUploading = false
this.$refs.uploadProject.clearFiles()
let msg=''
response.msg.split(';').forEach( item=>{
msg +=item +`<br/>`
})
this.$alert(msg, '导入结果', { dangerouslyUseHTMLString: true })
this.getList()
},
//
submitFileForm() {

Loading…
Cancel
Save