|
|
@@ -100,7 +100,7 @@
|
|
100
|
100
|
:caseFlowNumber="caseFlowNumber">
|
|
101
|
101
|
</mediationCaseDetails>
|
|
102
|
102
|
<!-- 案件日志 -->
|
|
103
|
|
- <mediationCaseLog :showcaseLog="showcaseLog" @cancelcaseLog="cancelcaseLog"></mediationCaseLog>
|
|
|
103
|
+ <mediationCaseLog :showcaseLog="showcaseLog" @cancelcaseLog="cancelcaseLog" :caselogDataArr="caselogDataArr" :flagLoading="flagLoading"></mediationCaseLog>
|
|
104
|
104
|
<!-- 证据修改 -->
|
|
105
|
105
|
<evidenceDialog :evidenceVisable="evidenceVisable" @cancelEvidence="cancelEvidence" :evidenceData="evidenceData">
|
|
106
|
106
|
</evidenceDialog>
|
|
|
@@ -133,7 +133,7 @@
|
|
133
|
133
|
</template>
|
|
134
|
134
|
|
|
135
|
135
|
<script>
|
|
136
|
|
-import { caseApplicationList, caseApplicationSelectById, submitCaseApply, selectPaymentDetail, sealApply, selectSealUrl } from '@/api/caseManagement/caseManagement.js'
|
|
|
136
|
+import { caseApplicationList, caseApplicationSelectById,submitCaseApply,selectPaymentDetail,sealApply,selectSealUrl,listCaseLogRecord} from '@/api/caseManagement/caseManagement.js'
|
|
137
|
137
|
import { listDept } from '@/api/system/dept.js'
|
|
138
|
138
|
import { queryCaseFlowInfo } from '@/api/caseprocessManagement/caseprocessManagement.js'
|
|
139
|
139
|
import moment from "moment";
|
|
|
@@ -194,17 +194,19 @@ export default {
|
|
194
|
194
|
openDialog: false,//确认缴费和缴费详情
|
|
195
|
195
|
detailform: {}, //缴费详情数据
|
|
196
|
196
|
evidenceVisable: false,//证据修改弹窗
|
|
197
|
|
- payTitle: "",//缴费标题
|
|
198
|
|
- paymentConfirma: {},//缴费确认
|
|
199
|
|
- showAcceptance: false,//案件受理弹框
|
|
200
|
|
- caseAcceptanceData: {},//案件受理数据
|
|
201
|
|
- mediatorVisable: false,//选择调解员弹窗
|
|
202
|
|
- timeVisable: false,//预约时间弹窗
|
|
203
|
|
- confirmVisable: false,//确认时间/调解员
|
|
204
|
197
|
mediationVisable:false,//待调解弹窗
|
|
205
|
|
- caseFlowNumber: {},//案件流程数据
|
|
206
|
|
- mediatorData: {},
|
|
207
|
198
|
mediationData:{},
|
|
|
199
|
+ payTitle:"",//缴费标题
|
|
|
200
|
+ paymentConfirma:{},//缴费确认
|
|
|
201
|
+ showAcceptance:false,//案件受理弹框
|
|
|
202
|
+ caseAcceptanceData:{},//案件受理数据
|
|
|
203
|
+ mediatorVisable:false,//选择调解员弹窗
|
|
|
204
|
+ timeVisable:false,//预约时间弹窗
|
|
|
205
|
+ confirmVisable:false,//确认时间/调解员
|
|
|
206
|
+ caseFlowNumber:{},//案件流程数据
|
|
|
207
|
+ caselogDataArr:[],//案件日志数据
|
|
|
208
|
+ flagLoading: true, //案件日志弹框loading
|
|
|
209
|
+ mediatorData:{},
|
|
208
|
210
|
flag: null,
|
|
209
|
211
|
caseData: {},
|
|
210
|
212
|
evidenceData: {},
|
|
|
@@ -530,8 +532,14 @@ export default {
|
|
530
|
532
|
this.processVisable = false
|
|
531
|
533
|
},
|
|
532
|
534
|
//案件日志
|
|
533
|
|
- caseLog() {
|
|
|
535
|
+ caseLog(row) {
|
|
|
536
|
+ this.caseLogNumber = row
|
|
534
|
537
|
this.showcaseLog = true
|
|
|
538
|
+ this.flagLoading = true;
|
|
|
539
|
+ listCaseLogRecord({caseId:row.id}).then(res=>{
|
|
|
540
|
+ this.caselogDataArr = res.data
|
|
|
541
|
+ this.flagLoading = false;
|
|
|
542
|
+ })
|
|
535
|
543
|
},
|
|
536
|
544
|
cancelcaseLog() {
|
|
537
|
545
|
this.showcaseLog = false
|