diff --git a/src/views/caseManagement/components/caseCompressionPackage.vue b/src/views/caseManagement/components/caseCompressionPackage.vue index dcf12e8..806cce0 100644 --- a/src/views/caseManagement/components/caseCompressionPackage.vue +++ b/src/views/caseManagement/components/caseCompressionPackage.vue @@ -138,13 +138,24 @@ export default { this.$emit("cancelCompreess"); this.upload.isUploading = false; this.$refs.uploadZipBatch.clearFiles(); - this.$alert( + if(response.code ==200){ + this.$alert( "
" + response.msg + "
", "导入结果", { dangerouslyUseHTMLString: true } - ); + ) + }else{ + this.$alert( + "
" + + "导入压缩失败" + + "
", + "导入结果", + { dangerouslyUseHTMLString: true } + ) + } + this.getcaseApply(this.queryParams); }, },