From 8630ac2438d85e3d9f7412fefddf65fc0e7ea595 Mon Sep 17 00:00:00 2001
From: liuxi <357439530@qq.com>
Date: Fri, 17 Jan 2025 11:19:19 +0800
Subject: [PATCH 1/3] =?UTF-8?q?=E8=B0=83=E8=A7=A3=E6=97=A5=E5=BF=97?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/pages/case-management/detail/index.vue | 24 +++++++++----------
.../mediation-page/components/SidebarTool.vue | 23 +++++++++++-------
src/services/caseManagement.js | 4 ++++
3 files changed, 31 insertions(+), 20 deletions(-)
diff --git a/src/pages/case-management/detail/index.vue b/src/pages/case-management/detail/index.vue
index c7258b3..debac37 100644
--- a/src/pages/case-management/detail/index.vue
+++ b/src/pages/case-management/detail/index.vue
@@ -381,19 +381,9 @@
-
+
- 王小虎 提交于 2018/4/12 20:46
-
-
-
-
- 王小虎 提交于 2018/4/3 20:46
-
-
-
-
- 王小虎 提交于 2018/4/2 20:46
+ {{ item.createAt | formaDate("hh:mm:ss") }} {{item.processContent}}
@@ -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
+ }
+ })
+ },
}
}
diff --git a/src/pages/mediation-page/components/SidebarTool.vue b/src/pages/mediation-page/components/SidebarTool.vue
index 51f5f96..0012718 100644
--- a/src/pages/mediation-page/components/SidebarTool.vue
+++ b/src/pages/mediation-page/components/SidebarTool.vue
@@ -174,15 +174,9 @@
调解日志
-
+
- 09:36 刘二向被申请人李四发送了短信。发送状态:发送中;短信类型:还款计划通知
- 09:33 刘二向被申请人李四发送了短信。发送状态:发送中;短信类型:调解通知
-
-
-
-
- 09:27 刘二向被申请人李四发送了短信。发送状态:发送中;短信类型:还款计划通知
+ {{ item.createAt | formaDate("hh:mm:ss") }} {{item.processContent}}
@@ -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
+ }
+ })
+ },
}
}
diff --git a/src/services/caseManagement.js b/src/services/caseManagement.js
index 87bb9b2..51ac167 100644
--- a/src/services/caseManagement.js
+++ b/src/services/caseManagement.js
@@ -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})
+ },
// 共债案件查询
From 8f3571198ebaf0c1af4490438c3d95856f15bb67 Mon Sep 17 00:00:00 2001
From: tdg930622 <51816549+tdg930622@users.noreply.github.com>
Date: Fri, 17 Jan 2025 14:12:45 +0800
Subject: [PATCH 2/3] =?UTF-8?q?=E5=91=BC=E5=85=A5=E3=80=81=E6=9F=A5?=
=?UTF-8?q?=E8=AF=A2=E5=88=97=E8=A1=A8=E3=80=81=E5=85=B3=E8=81=94=E8=B7=B3?=
=?UTF-8?q?=E8=BD=AC=E7=9B=B8=E5=85=B3=E6=8E=A5=E5=8F=A3=E8=81=94=E8=B0=83?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/components/VoiceCallDialog.vue | 23 ++++++++++++++---------
src/pages/login/index.vue | 2 +-
2 files changed, 15 insertions(+), 10 deletions(-)
diff --git a/src/components/VoiceCallDialog.vue b/src/components/VoiceCallDialog.vue
index 73abe1f..7de527d 100644
--- a/src/components/VoiceCallDialog.vue
+++ b/src/components/VoiceCallDialog.vue
@@ -13,7 +13,7 @@