修改bug

This commit is contained in:
liuxi 2025-02-13 16:42:04 +08:00
parent a53a3bb921
commit b3ccdec6da

View File

@ -388,6 +388,7 @@ import { values } from "lodash";
queryParam: { queryParam: {
mediateRecordStatus:[], mediateRecordStatus:[],
pkgId:'', pkgId:'',
pkgName:'',
financialOrgName:'',// financialOrgName:'',//
caseNo: '',// caseNo: '',//
productTypeId: '',//id productTypeId: '',//id
@ -483,12 +484,11 @@ import { values } from "lodash";
// this.selectionData = value ? this.enabledDataList.map(el=>el.id) : []; // this.selectionData = value ? this.enabledDataList.map(el=>el.id) : [];
// this.indeterminate = false; // this.indeterminate = false;
let chooseData = this.enabledDataList.filter(el=>(el.caseStatus == 0 || el.caseStatus == 1)) let chooseData = this.enabledDataList.filter(el=>(el.caseStatus == 0 || el.caseStatus == 1))
console.log(chooseData,'chooseData') // console.log(chooseData,'chooseData')
this.selectionData = value ? chooseData.map(el=>el.id) : []; this.selectionData = value ? chooseData.map(el=>el.id) : [];
this.indeterminate = false; this.indeterminate = false;
}, },
// //
handleImport(){ handleImport(){
this.importCaseDialog={ this.importCaseDialog={
@ -535,12 +535,6 @@ import { values } from "lodash";
}); });
}).catch(() => {}); }).catch(() => {});
}, },
//
// handleAddForm(){
// this.addCaseDialog={
// title:'',
// }
// },
handleConclude() { handleConclude() {
// //
if (this.selectionData.length == 0) { if (this.selectionData.length == 0) {
@ -590,6 +584,7 @@ import { values } from "lodash";
this.checkedCheckAll = false this.checkedCheckAll = false
this.queryParam.current = val this.queryParam.current = val
this.queryParam.allCase = true//
api.getCaseInfoList(this.queryParam).then(res => { api.getCaseInfoList(this.queryParam).then(res => {
if (!res.code) { if (!res.code) {
this.tableData = res.records; this.tableData = res.records;