解决办法:
前端文件路径: src\views\customer\list\components\file 第158行 修改成 下面这段代码
getTableData() {
this.fileParams.eid = this.formInfo.data.eid
this.where.cid = this.formInfo.data.cid
this.where.eid = this.formInfo.data.eid
clientFileListApi(this.where).then((res) => {
this.fileData = res.data.list
this.fileParams.eid = this.formInfo.data.eid
this.total = res.data.count
if (this.fileData.length > 0) {
this.fileData.map((value) => {
if (this.fileIsImage(value.att_type)) {
this.srcList.push(value.att_dir)
}
})
}
})
}