调解日志

This commit is contained in:
liuxi 2025-01-17 11:19:19 +08:00
parent 5a5c350ef7
commit 8630ac2438
3 changed files with 31 additions and 20 deletions

View File

@ -381,19 +381,9 @@
<div v-if="navactive == 3 " class="layout-tabs-content-box flex-row padding-0 f14"> <div v-if="navactive == 3 " class="layout-tabs-content-box flex-row padding-0 f14">
<div class="pt-8 border-b-solid-lighter-1 background-color-fff border-radius-4 p-32 width100"> <div class="pt-8 border-b-solid-lighter-1 background-color-fff border-radius-4 p-32 width100">
<el-timeline> <el-timeline>
<el-timeline-item timestamp="2018/4/12" placement="top"> <el-timeline-item v-for="(item,index) in communicationLogRecord" :key="index" :timestamp="item.processDate" placement="top">
<el-card> <el-card>
<p>王小虎 提交于 2018/4/12 20:46</p> <p v-for="(item,index) in item.processList" :key="index">{{ item.createAt | formaDate("hh:mm:ss") }} {{item.processContent}}</p>
</el-card>
</el-timeline-item>
<el-timeline-item timestamp="2018/4/3" placement="top">
<el-card>
<p>王小虎 提交于 2018/4/3 20:46</p>
</el-card>
</el-timeline-item>
<el-timeline-item timestamp="2018/4/2" placement="top">
<el-card>
<p>王小虎 提交于 2018/4/2 20:46</p>
</el-card> </el-card>
</el-timeline-item> </el-timeline-item>
</el-timeline> </el-timeline>
@ -481,6 +471,7 @@ export default {
// //
OfficeList:[], OfficeList:[],
communicationRecord: [], communicationRecord: [],
communicationLogRecord:[]
} }
}, },
computed: { computed: {
@ -497,6 +488,7 @@ export default {
this.caseId = this.$route.query.caseId; this.caseId = this.$route.query.caseId;
this.getCaseInfoById();// this.getCaseInfoById();//
this.getmediate_record() this.getmediate_record()
this.getCaseLogsList()
} }
}, },
methods: { methods: {
@ -671,6 +663,14 @@ export default {
} }
}) })
}, },
//
getCaseLogsList() {
api.mediate_record_log({id:this.caseId}).then(res => {
if (!res.code) {
this.communicationLogRecord = res
}
})
},
} }
} }

View File

@ -174,15 +174,9 @@
<div class="tab-content-title f16 f-weight600 pb-8">调解日志</div> <div class="tab-content-title f16 f-weight600 pb-8">调解日志</div>
<el-scrollbar :style="'height:'+`${contentHeight}`+'px'"> <el-scrollbar :style="'height:'+`${contentHeight}`+'px'">
<el-timeline class="padding-2"> <el-timeline class="padding-2">
<el-timeline-item timestamp="2024-12-09" placement="top" type="primary"> <el-timeline-item v-for="(item,index) in communicationLogRecord" :key="index" :timestamp="item.processDate" placement="top" type="primary">
<el-card shadow="never"> <el-card shadow="never">
<div class="mb-8">09:36 刘二向被申请人李四发送了短信发送状态:发送中;短信类型:还款计划通知</div> <div v-for="(item,index) in item.processList" :key="index" class="mb-8">{{ item.createAt | formaDate("hh:mm:ss") }} {{item.processContent}}</div>
<div class="mb-8">09:33 刘二向被申请人李四发送了短信发送状态:发送中;短信类型:调解通知</div>
</el-card>
</el-timeline-item>
<el-timeline-item timestamp="2024-12-08" placement="top" type="primary">
<el-card shadow="never">
<div>09:27 刘二向被申请人李四发送了短信发送状态:发送中;短信类型:还款计划通知</div>
</el-card> </el-card>
</el-timeline-item> </el-timeline-item>
</el-timeline> </el-timeline>
@ -319,6 +313,7 @@ export default {
mediatetraceRecord:[], mediatetraceRecord:[],
communicationRecord: [], communicationRecord: [],
communicationvideoRecord:[], communicationvideoRecord:[],
communicationLogRecord:[],
smsRecord:[], smsRecord:[],
WritRecord:[], WritRecord:[],
} }
@ -356,6 +351,10 @@ export default {
{ {
this.getWritCaseList() this.getWritCaseList()
} }
if(this.rightActive == 6)
{
this.getCaseLogsList()
}
}, },
// //
getmediatetrace_record(){ getmediatetrace_record(){
@ -430,6 +429,14 @@ export default {
} }
}) })
}, },
//
getCaseLogsList() {
api.mediate_record_log({id:this.caseId}).then(res => {
if (!res.code) {
this.communicationLogRecord = res
}
})
},
} }
} }

View File

@ -287,6 +287,10 @@ const caseManagementApi = {
traceRecord_list: data => { traceRecord_list: data => {
return service.service.post(`${apiAdmin}api/trace/traceRecord/list`, data, {hideLoading:true}) return service.service.post(`${apiAdmin}api/trace/traceRecord/list`, data, {hideLoading:true})
}, },
// 案件日志记录
mediate_record_log: data => {
return service.service.post(`${apiAdmin}cases/process/log`, data, {hideLoading:true})
},
// 共债案件查询 // 共债案件查询