diff --git a/src/views/caseManagement/caseList.vue b/src/views/caseManagement/caseList.vue index f5ef13d..3c5123d 100644 --- a/src/views/caseManagement/caseList.vue +++ b/src/views/caseManagement/caseList.vue @@ -47,6 +47,7 @@ 案件录入 案件压缩包导入 案件批量导入 @@ -789,6 +790,7 @@ export default { } }); this.caseAttachList = res.data.caseAttachList; + console.log(this.caseAttachList,"caseAttachList") this.form.requestRule = res.data.requestRule; this.form.properPreser = res.data.properPreser; }); diff --git a/src/views/caseManagement/components/caseentryDialog.vue b/src/views/caseManagement/components/caseentryDialog.vue index bab14cf..9d492c0 100644 --- a/src/views/caseManagement/components/caseentryDialog.vue +++ b/src/views/caseManagement/components/caseentryDialog.vue @@ -16,8 +16,9 @@ + - + @@ -877,6 +878,10 @@ export default { return this.$confirm(`确定移除 ${file.name}?`); }, handleRemove(file, fileList) { + console.log(file) + console.log(fileList) + console.log(this.caseAttachListArr) + this.caseAttachListArr = this.caseAttachListArr.filter(item => item.annexId != file.annexId) // (this.caseAttachListArr = []), // fileList.forEach((item) => { // this.caseAttachListArr.push( item.response.data ); diff --git a/src/views/caseManagement/components/formateCourtDialog.vue b/src/views/caseManagement/components/formateCourtDialog.vue index 11e6c37..d1a8551 100644 --- a/src/views/caseManagement/components/formateCourtDialog.vue +++ b/src/views/caseManagement/components/formateCourtDialog.vue @@ -16,7 +16,7 @@ label-position="left" > - + 是 否 @@ -161,9 +161,12 @@ export default { this.$refs["formateCourtform"].validate((valid) => { if (valid) { pendTralCheck(this.paramsdata).then((res) => { + this.cancel(); this.$modal.msgSuccess("组庭成功"); this.$emit("getcaseApply", this.queryParams); + // 初始化页面 + this.formateCourtform={} }); } }); @@ -173,6 +176,13 @@ export default { this.$emit("cancelcourtDialog"); this.arbitrators = []; }, + radioValue(val){ + if(val==1){ + this.formateCourtform={} + }else if(val==0){ + this.formateCourtform={} + } + } }, }; diff --git a/src/views/caseManagement/components/operateDialog.vue b/src/views/caseManagement/components/operateDialog.vue index 47aa785..19ee660 100644 --- a/src/views/caseManagement/components/operateDialog.vue +++ b/src/views/caseManagement/components/operateDialog.vue @@ -21,9 +21,9 @@ {{ item.caseResName }} - {{ +
diff --git a/src/views/caseManagement/components/viewprocessDialog.vue b/src/views/caseManagement/components/viewprocessDialog.vue index c0d5407..2d342d6 100644 --- a/src/views/caseManagement/components/viewprocessDialog.vue +++ b/src/views/caseManagement/components/viewprocessDialog.vue @@ -2,7 +2,7 @@
- + @@ -21,7 +21,8 @@ export default { data() { return { processId:null, - pageData:{} + pageData:{}, + caseStatus:0 }; }, watch: { @@ -38,8 +39,13 @@ export default { }, selectCaseProgressFn(data){ selectCaseProgress(data).then(res=>{ - console.log(res,"请求成功"); - this.pageData = res.data.data; + this.pageData = res.data.data; + let allCasenode = res.data.data.allCasenode; + allCasenode.forEach((item,index) => { + if(item.caseNode==res.data.data.caseStatus){ + this.caseStatus = index + } + }); }) } },