修改 bug
This commit is contained in:
parent
5307840bc9
commit
1fe3a8de7a
@ -331,11 +331,13 @@ import apipack from "@/services/casePackageManagement";
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// console.log(this.caseAllocationDialog.choosecaseIds,'datadatadatadata')
|
||||||
|
|
||||||
this.$refs.ruleForm.validate((valid) => {
|
this.$refs.ruleForm.validate((valid) => {
|
||||||
if(valid) {
|
if(valid) {
|
||||||
|
|
||||||
let data = {
|
let data = {
|
||||||
id:this.caseAllocationDialog.ObjectInfo.id,
|
caseIds:this.caseAllocationDialog.choosecaseIds,
|
||||||
dispatchType:this.queryParam.dispatchType,
|
dispatchType:this.queryParam.dispatchType,
|
||||||
userList:chooseUser
|
userList:chooseUser
|
||||||
}
|
}
|
||||||
|
|||||||
@ -193,6 +193,8 @@ import apipk from "@/services/casePackageManagement";
|
|||||||
apipk.CasePkgimport(data).then(res => {
|
apipk.CasePkgimport(data).then(res => {
|
||||||
this.handleClose()
|
this.handleClose()
|
||||||
this.$parent.getCaseInfoList(1)
|
this.$parent.getCaseInfoList(1)
|
||||||
|
|
||||||
|
this.$message.success("批量导入案件成功,导入错误案件请在错误修复里面进行查看!");
|
||||||
})
|
})
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -164,6 +164,7 @@ import apipk from "@/services/casePackageManagement";
|
|||||||
apipk.CasePkgimport(data).then(res => {
|
apipk.CasePkgimport(data).then(res => {
|
||||||
this.handleClose()
|
this.handleClose()
|
||||||
this.$parent.getCaseInfoList(1)
|
this.$parent.getCaseInfoList(1)
|
||||||
|
this.$message.success("批量导入案件成功,导入错误案件请在错误修复里面进行查看!");
|
||||||
})
|
})
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -122,7 +122,7 @@ export default {
|
|||||||
if(!this.$clickThrottle()) { return }//防止重复点击
|
if(!this.$clickThrottle()) { return }//防止重复点击
|
||||||
let caseIdList = this.eventTraDialog.caseids;
|
let caseIdList = this.eventTraDialog.caseids;
|
||||||
caseManagement.smsBatchSend({...this.ObjectInfo, caseIdList: caseIdList}).then(res => {
|
caseManagement.smsBatchSend({...this.ObjectInfo, caseIdList: caseIdList}).then(res => {
|
||||||
this.$parent.getCaseInfoList(1)
|
this.$parent.getCaseInfoList(this.eventTraDialog.current)
|
||||||
this.handleClose()
|
this.handleClose()
|
||||||
this.$message.success("发送成功");
|
this.$message.success("发送成功");
|
||||||
})
|
})
|
||||||
|
|||||||
@ -86,7 +86,7 @@ export default {
|
|||||||
if(!this.$clickThrottle()) { return }//防止重复点击
|
if(!this.$clickThrottle()) { return }//防止重复点击
|
||||||
let caseIdList = this.eventTraDialog.caseids;
|
let caseIdList = this.eventTraDialog.caseids;
|
||||||
caseManagement.traceServedBatchCreate({...this.ObjectInfo, caseIdList: caseIdList}).then(res => {
|
caseManagement.traceServedBatchCreate({...this.ObjectInfo, caseIdList: caseIdList}).then(res => {
|
||||||
this.$parent.getCaseInfoList(1)
|
this.$parent.getCaseInfoList(this.eventTraDialog.current)
|
||||||
this.handleClose()
|
this.handleClose()
|
||||||
this.$message.success("发送成功");
|
this.$message.success("发送成功");
|
||||||
})
|
})
|
||||||
|
|||||||
@ -95,7 +95,7 @@ export default {
|
|||||||
...this.ObjectInfo,
|
...this.ObjectInfo,
|
||||||
}
|
}
|
||||||
caseManagement.traceGenerateBatchCreate(dataJson).then(res => {
|
caseManagement.traceGenerateBatchCreate(dataJson).then(res => {
|
||||||
this.$parent.getCaseInfoList(1)
|
this.$parent.getCaseInfoList(this.eventTraDialog.current)
|
||||||
this.handleClose()
|
this.handleClose()
|
||||||
this.$message.success("成功");
|
this.$message.success("成功");
|
||||||
})
|
})
|
||||||
|
|||||||
@ -67,7 +67,7 @@ import api from "@/services/caseManagement";
|
|||||||
methods: {
|
methods: {
|
||||||
handleSubmit(){
|
handleSubmit(){
|
||||||
api.traceSeal_launch(this.ObjectInfo).then((res) => {
|
api.traceSeal_launch(this.ObjectInfo).then((res) => {
|
||||||
this.$parent.getCaseInfoList(1)
|
this.$parent.getCaseInfoList(this.eventTraDialog.current)
|
||||||
this.handleClose()
|
this.handleClose()
|
||||||
this.$message.success("发起批量签章成功");
|
this.$message.success("发起批量签章成功");
|
||||||
});
|
});
|
||||||
|
|||||||
@ -114,7 +114,7 @@ import api from "@/services/caseManagement";
|
|||||||
api.traceSignBatchCreate(this.ObjectInfo).then((res) => {
|
api.traceSignBatchCreate(this.ObjectInfo).then((res) => {
|
||||||
this.$message.success("批量发起签字成功");
|
this.$message.success("批量发起签字成功");
|
||||||
this.handleClose()
|
this.handleClose()
|
||||||
this.$parent.getCaseInfoList()
|
this.$parent.getCaseInfoList(this.eventTraDialog.current)
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@ -517,35 +517,35 @@ import { values } from "lodash";
|
|||||||
this.$message.warning(`请至少选中一个调解案件!`)
|
this.$message.warning(`请至少选中一个调解案件!`)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
this.officeDeliveryIdsDialog={titile:'批量文书送达',caseids:this.selectionData}
|
this.officeDeliveryIdsDialog={titile:'批量文书送达',caseids:this.selectionData,current:this.queryParam.current}
|
||||||
},
|
},
|
||||||
handleOfficeSeal(){
|
handleOfficeSeal(){
|
||||||
if(this.selectionData.length == 0 ){
|
if(this.selectionData.length == 0 ){
|
||||||
this.$message.warning(`请至少选中一个调解案件!`)
|
this.$message.warning(`请至少选中一个调解案件!`)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
this.officeSealIdsDialog={titile:'批量文书签章',caseids:this.selectionData}
|
this.officeSealIdsDialog={titile:'批量文书签章',caseids:this.selectionData,current:this.queryParam.current}
|
||||||
},
|
},
|
||||||
handleOfficeWrite(){
|
handleOfficeWrite(){
|
||||||
if(this.selectionData.length == 0 ){
|
if(this.selectionData.length == 0 ){
|
||||||
this.$message.warning(`请至少选中一个调解案件!`)
|
this.$message.warning(`请至少选中一个调解案件!`)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
this.officeWriteIdsDialog={titile:'批量文书签字',caseids:this.selectionData}
|
this.officeWriteIdsDialog={titile:'批量文书签字',caseids:this.selectionData,current:this.queryParam.current}
|
||||||
},
|
},
|
||||||
handleOffice(){
|
handleOffice(){
|
||||||
if(this.selectionData.length == 0 ){
|
if(this.selectionData.length == 0 ){
|
||||||
this.$message.warning(`请至少选中一个调解案件!`)
|
this.$message.warning(`请至少选中一个调解案件!`)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
this.officeIdsDialog={titile:'批量文书生成',caseids:this.selectionData}
|
this.officeIdsDialog={titile:'批量文书生成',caseids:this.selectionData,current:this.queryParam.current}
|
||||||
},
|
},
|
||||||
handleSMSSend(){
|
handleSMSSend(){
|
||||||
if(this.selectionData.length == 0 ){
|
if(this.selectionData.length == 0 ){
|
||||||
this.$message.warning(`请至少选中一个调解案件!`)
|
this.$message.warning(`请至少选中一个调解案件!`)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
this.smsIdsDialog={titile:'批量发送短信',caseids:this.selectionData}
|
this.smsIdsDialog={titile:'批量发送短信',caseids:this.selectionData,current:this.queryParam.current}
|
||||||
},
|
},
|
||||||
// tab切换
|
// tab切换
|
||||||
handleTabClick(tab){
|
handleTabClick(tab){
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user