修改bug

This commit is contained in:
liuxi 2025-02-12 10:22:32 +08:00
parent 0c7aa64dd7
commit eef3d25bda
5 changed files with 19 additions and 12 deletions

View File

@ -73,12 +73,14 @@
</el-table-column>
<el-table-column label="跟进情况" width="140">
<template slot-scope="scope">
{{$util.getTelephoneTypeData(scope.row.linkedSituation).label}}
{{scope.row.linkedSituation != null ? $util.getTelephoneTypeData(scope.row.linkedSituation).label :''}}
<!-- {{$util.getTelephoneTypeData(scope.row.linkedSituation).label}} -->
</template>
</el-table-column>
<el-table-column label="调解进度" width="140">
<template slot-scope="scope">
{{ materialTypeOptions.find(item => item.value == scope.row.mediateStatus).label }}
{{scope.row.mediateStatus != null ? materialTypeOptions.find(item => item.value == scope.row.mediateStatus).label : ''}}
<!-- {{ materialTypeOptions.find(item => item.value == scope.row.mediateStatus).label }} -->
</template>
</el-table-column>
<el-table-column label="沟通对象" width="350" show-overflow-tooltip>
@ -593,6 +595,7 @@ export default {
this.communicationRecord.push(item)
})
})
console.log(this.communicationRecord,'this.communicationRecord')
// this.communicationRecord = res
}
})

View File

@ -165,7 +165,6 @@ import apipk from "@/services/casePackageManagement";
handleSubmit(){
if(!this.$clickThrottle()) { return }//
this.$refs.ruleFormBase.validate((valid) => {
if (valid){
let data = {
@ -176,9 +175,7 @@ import apipk from "@/services/casePackageManagement";
this.$parent.getCaseInfoList(1)
this.$message.success("批量导入案件成功,导入错误案件请在错误修复里面进行查看!");
})
}
})
},

View File

@ -216,7 +216,13 @@ import caseapi from "@/services/caseManagement";
}).catch(() => {});
},
handleCaseShow(scope){
this.fileDialog = {showfile:{url:scope.row.proofUrl},filelist:[]}
//
this.$fetchApi.viewFullFile({path: scope.row.proofUrl}).then((res) => {
this.fileDialog = {showfile: {url: res}, filelist: []}
});
// this.fileDialog = {showfile:{url:scope.row.proofUrl},filelist:[]}
},
}
};

View File

@ -121,8 +121,8 @@
<div class="descriptions-t-item-l color-86909C">{{item.name}}:</div>
<div class="descriptions-t-item-r">{{item.fieldValue}}</div>
</div>
</div>
</div>
<!-- 共债 -->

View File

@ -361,10 +361,6 @@
}
})
},
getCaseInfoList(val){
this.getCaseapkList(2)
this.getCaseInfoList()
},
//
getCaseapkList(type =1){
workApi.getmy_case_pkg({size:100,current:1}).then(res => {
@ -385,7 +381,12 @@
})
},
//
getCaseInfoList(){
getCaseInfoList(val){
console.log(val,'getCaseInfoListgetCaseInfoListgetCaseInfoList')
if(val == 1){
this.getCaseapkList(2)
}
pkapi.getCasePkgQuery({current:1,size:100,pkgName:this.queryParamFP.pkgName}).then(res => {
if (!res.code) {
this.tableData = res.records;