修改文件上传问题

This commit is contained in:
张运江 2025-02-20 17:54:49 +08:00
parent 2c2404ef85
commit 06140239e9
2 changed files with 3 additions and 3 deletions

View File

@ -98,7 +98,7 @@ export default {
},
methods: {
handleUploadFile(fileList){
// console.log('',fileList)
console.log('获取上传文件信息',fileList)
fileList = JSON.parse(JSON.stringify(fileList))
this.fileList = fileList.map((item,i) => {
return {
@ -109,7 +109,7 @@ export default {
}
})
this.repaymentObj.name = this.fileList.length?this.fileList[0].objectName : '';
this.repaymentObj.url = this.fileList.length?this.fileList[0].fileName : '';
this.repaymentObj.url = this.fileList.length?this.fileList[0].url : '';
},
handleClose() {
this.$emit('update:eventDialog', null)

View File

@ -339,7 +339,7 @@ const caseManagementApi = {
// 视频快开提醒
videoCall: data => {
return service.service.get(`${apiAdmin}api/trace/video/videoCall`, data)
return service.service.get(`${apiAdmin}api/trace/video/videoCall`, data, {hideLoading:true})
},
//========================end::案件管理======================================