调解日志
This commit is contained in:
parent
5a5c350ef7
commit
8630ac2438
@ -381,19 +381,9 @@
|
||||
<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">
|
||||
<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>
|
||||
<p>王小虎 提交于 2018/4/12 20:46</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>
|
||||
<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>
|
||||
@ -481,6 +471,7 @@ export default {
|
||||
// 文书列表
|
||||
OfficeList:[],
|
||||
communicationRecord: [],
|
||||
communicationLogRecord:[]
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
@ -497,6 +488,7 @@ export default {
|
||||
this.caseId = this.$route.query.caseId;
|
||||
this.getCaseInfoById();//获取详情
|
||||
this.getmediate_record()
|
||||
this.getCaseLogsList()
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
@ -671,6 +663,14 @@ export default {
|
||||
}
|
||||
})
|
||||
},
|
||||
// 获取调解日志
|
||||
getCaseLogsList() {
|
||||
api.mediate_record_log({id:this.caseId}).then(res => {
|
||||
if (!res.code) {
|
||||
this.communicationLogRecord = res
|
||||
}
|
||||
})
|
||||
},
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -174,15 +174,9 @@
|
||||
<div class="tab-content-title f16 f-weight600 pb-8">调解日志</div>
|
||||
<el-scrollbar :style="'height:'+`${contentHeight}`+'px'">
|
||||
<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">
|
||||
<div class="mb-8">09:36 刘二向被申请人李四发送了短信。发送状态:发送中;短信类型:还款计划通知</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>
|
||||
<div v-for="(item,index) in item.processList" :key="index" class="mb-8">{{ item.createAt | formaDate("hh:mm:ss") }} {{item.processContent}}</div>
|
||||
</el-card>
|
||||
</el-timeline-item>
|
||||
</el-timeline>
|
||||
@ -319,6 +313,7 @@ export default {
|
||||
mediatetraceRecord:[],
|
||||
communicationRecord: [],
|
||||
communicationvideoRecord:[],
|
||||
communicationLogRecord:[],
|
||||
smsRecord:[],
|
||||
WritRecord:[],
|
||||
}
|
||||
@ -356,6 +351,10 @@ export default {
|
||||
{
|
||||
this.getWritCaseList()
|
||||
}
|
||||
if(this.rightActive == 6)
|
||||
{
|
||||
this.getCaseLogsList()
|
||||
}
|
||||
},
|
||||
// 获取触达记录
|
||||
getmediatetrace_record(){
|
||||
@ -430,6 +429,14 @@ export default {
|
||||
}
|
||||
})
|
||||
},
|
||||
// 获取调解日志
|
||||
getCaseLogsList() {
|
||||
api.mediate_record_log({id:this.caseId}).then(res => {
|
||||
if (!res.code) {
|
||||
this.communicationLogRecord = res
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@ -287,6 +287,10 @@ const caseManagementApi = {
|
||||
traceRecord_list: data => {
|
||||
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})
|
||||
},
|
||||
|
||||
|
||||
// 共债案件查询
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user