修改 bug

This commit is contained in:
liuxi 2025-02-07 18:11:28 +08:00
parent 5307840bc9
commit 1fe3a8de7a
9 changed files with 17 additions and 12 deletions

View File

@ -331,15 +331,17 @@ import apipack from "@/services/casePackageManagement";
return false
}
// console.log(this.caseAllocationDialog.choosecaseIds,'datadatadatadata')
this.$refs.ruleForm.validate((valid) => {
if(valid) {
let data = {
id:this.caseAllocationDialog.ObjectInfo.id,
caseIds:this.caseAllocationDialog.choosecaseIds,
dispatchType:this.queryParam.dispatchType,
userList:chooseUser
}
apipack.postpkgdispatchCase(data).then(res => {
this.$message({
showClose: true,

View File

@ -193,6 +193,8 @@ import apipk from "@/services/casePackageManagement";
apipk.CasePkgimport(data).then(res => {
this.handleClose()
this.$parent.getCaseInfoList(1)
this.$message.success("批量导入案件成功,导入错误案件请在错误修复里面进行查看!");
})
}

View File

@ -164,6 +164,7 @@ import apipk from "@/services/casePackageManagement";
apipk.CasePkgimport(data).then(res => {
this.handleClose()
this.$parent.getCaseInfoList(1)
this.$message.success("批量导入案件成功,导入错误案件请在错误修复里面进行查看!");
})
}

View File

@ -122,7 +122,7 @@ export default {
if(!this.$clickThrottle()) { return }//
let caseIdList = this.eventTraDialog.caseids;
caseManagement.smsBatchSend({...this.ObjectInfo, caseIdList: caseIdList}).then(res => {
this.$parent.getCaseInfoList(1)
this.$parent.getCaseInfoList(this.eventTraDialog.current)
this.handleClose()
this.$message.success("发送成功");
})

View File

@ -86,7 +86,7 @@ export default {
if(!this.$clickThrottle()) { return }//
let caseIdList = this.eventTraDialog.caseids;
caseManagement.traceServedBatchCreate({...this.ObjectInfo, caseIdList: caseIdList}).then(res => {
this.$parent.getCaseInfoList(1)
this.$parent.getCaseInfoList(this.eventTraDialog.current)
this.handleClose()
this.$message.success("发送成功");
})

View File

@ -95,7 +95,7 @@ export default {
...this.ObjectInfo,
}
caseManagement.traceGenerateBatchCreate(dataJson).then(res => {
this.$parent.getCaseInfoList(1)
this.$parent.getCaseInfoList(this.eventTraDialog.current)
this.handleClose()
this.$message.success("成功");
})

View File

@ -67,7 +67,7 @@ import api from "@/services/caseManagement";
methods: {
handleSubmit(){
api.traceSeal_launch(this.ObjectInfo).then((res) => {
this.$parent.getCaseInfoList(1)
this.$parent.getCaseInfoList(this.eventTraDialog.current)
this.handleClose()
this.$message.success("发起批量签章成功");
});

View File

@ -114,7 +114,7 @@ import api from "@/services/caseManagement";
api.traceSignBatchCreate(this.ObjectInfo).then((res) => {
this.$message.success("批量发起签字成功");
this.handleClose()
this.$parent.getCaseInfoList()
this.$parent.getCaseInfoList(this.eventTraDialog.current)
});
},

View File

@ -517,35 +517,35 @@ import { values } from "lodash";
this.$message.warning(`请至少选中一个调解案件!`)
return
}
this.officeDeliveryIdsDialog={titile:'批量文书送达',caseids:this.selectionData}
this.officeDeliveryIdsDialog={titile:'批量文书送达',caseids:this.selectionData,current:this.queryParam.current}
},
handleOfficeSeal(){
if(this.selectionData.length == 0 ){
this.$message.warning(`请至少选中一个调解案件!`)
return
}
this.officeSealIdsDialog={titile:'批量文书签章',caseids:this.selectionData}
this.officeSealIdsDialog={titile:'批量文书签章',caseids:this.selectionData,current:this.queryParam.current}
},
handleOfficeWrite(){
if(this.selectionData.length == 0 ){
this.$message.warning(`请至少选中一个调解案件!`)
return
}
this.officeWriteIdsDialog={titile:'批量文书签字',caseids:this.selectionData}
this.officeWriteIdsDialog={titile:'批量文书签字',caseids:this.selectionData,current:this.queryParam.current}
},
handleOffice(){
if(this.selectionData.length == 0 ){
this.$message.warning(`请至少选中一个调解案件!`)
return
}
this.officeIdsDialog={titile:'批量文书生成',caseids:this.selectionData}
this.officeIdsDialog={titile:'批量文书生成',caseids:this.selectionData,current:this.queryParam.current}
},
handleSMSSend(){
if(this.selectionData.length == 0 ){
this.$message.warning(`请至少选中一个调解案件!`)
return
}
this.smsIdsDialog={titile:'批量发送短信',caseids:this.selectionData}
this.smsIdsDialog={titile:'批量发送短信',caseids:this.selectionData,current:this.queryParam.current}
},
// tab
handleTabClick(tab){