From 2ee121c3622673d7adaff2dca1d0df1497e83d3a Mon Sep 17 00:00:00 2001 From: liuxi <357439530@qq.com> Date: Mon, 13 Jan 2025 17:39:25 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=91=E9=80=81=E7=9F=AD=E4=BF=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dtraceDetail/smsDialogDetail.vue | 2 +- .../components/LayoutContentNew.vue | 68 +++------ .../components/contactPerson.vue | 22 ++- .../components/singlesmsPopover.vue | 130 ++++++++++++++++++ 4 files changed, 168 insertions(+), 54 deletions(-) create mode 100644 src/pages/mediation-page/components/singlesmsPopover.vue diff --git a/src/pages/event-tracing/dtraceDetail/smsDialogDetail.vue b/src/pages/event-tracing/dtraceDetail/smsDialogDetail.vue index 1284a24..9957666 100644 --- a/src/pages/event-tracing/dtraceDetail/smsDialogDetail.vue +++ b/src/pages/event-tracing/dtraceDetail/smsDialogDetail.vue @@ -135,7 +135,7 @@ export default { }; }, mounted() { - console.log(this.DialogDetail, 'this.DialogDetail.caseNo') + // console.log(this.DialogDetail, 'this.DialogDetail.caseNo') if (this.DialogDetail.caseNo != undefined && this.DialogDetail.caseNo != '') { this.queryParam.caseNo = this.DialogDetail.caseNo } diff --git a/src/pages/mediation-page/components/LayoutContentNew.vue b/src/pages/mediation-page/components/LayoutContentNew.vue index 59b57e2..8f740ff 100644 --- a/src/pages/mediation-page/components/LayoutContentNew.vue +++ b/src/pages/mediation-page/components/LayoutContentNew.vue @@ -122,10 +122,24 @@
呼叫被申请人
-
+ + + + +
+
发送短信
+
+
+ +
@@ -140,54 +154,6 @@
{{item.name}}:
{{item.fieldValue}}
- @@ -464,10 +430,12 @@ export default { singleofficeDeliveryPopover: () => import('./singleofficeDeliveryPopover.vue'),//发起送达 MediationRecordDialog: () => import('./MediationRecordDialog.vue'),//调解记录 singleJointlyPopover: () => import('./singleJointlyPopover.vue'),//案件协办 + singlesmsPopover: () => import('./singlesmsPopover.vue'),//发送短信 VideoRoom: () => import('./VideoRoom'), }, data() { return { + singlesmsvisible:false, singlejointlyvisible:false, visiblemediatRecord:false, visiblemediatRecordObj:null, diff --git a/src/pages/mediation-page/components/contactPerson.vue b/src/pages/mediation-page/components/contactPerson.vue index 02f0787..605968a 100644 --- a/src/pages/mediation-page/components/contactPerson.vue +++ b/src/pages/mediation-page/components/contactPerson.vue @@ -21,17 +21,31 @@
{{item.name}} {{item.phone}}
{{item.type}} - + 空号
编辑 - 删除 + 删除 + 删除
电话 - 短信 + + + + + 短信 + + + +
@@ -44,6 +58,7 @@ import contactPerson from "@/services/contactPerson"; export default { components: { + singlesmsPopover: () => import('./singlesmsPopover.vue'),// contactPersonDialog: () => import('./contactPersonDialog.vue'),//联系人弹窗 }, props: { @@ -56,6 +71,7 @@ export default { }, data() { return { + singlesmsvisible:false, personnelType: ['被申请人', '申请人', '申请人代理人'], personnelTypeActive: '被申请人', // 联系人 diff --git a/src/pages/mediation-page/components/singlesmsPopover.vue b/src/pages/mediation-page/components/singlesmsPopover.vue new file mode 100644 index 0000000..327575f --- /dev/null +++ b/src/pages/mediation-page/components/singlesmsPopover.vue @@ -0,0 +1,130 @@ + + + + \ No newline at end of file