From c3e721e655916daab2fb5b702d97e855e9d22fdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=98=AF=E5=B0=8F=E7=8E=8B=E5=91=80=5C24601?= <819653817@qq.com> Date: Tue, 21 Jan 2025 15:20:52 +0800 Subject: [PATCH 1/5] =?UTF-8?q?=E7=B3=BB=E7=BB=9F=E9=AB=98=E7=BA=A7?= =?UTF-8?q?=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../event/cpts/process-form-complete.vue | 20 +++++++++------- .../modules/workSys/sysConfigure/index.vue | 23 +++++++++++++++++-- 2 files changed, 33 insertions(+), 10 deletions(-) diff --git a/src/views/modules/shequzhili/event/cpts/process-form-complete.vue b/src/views/modules/shequzhili/event/cpts/process-form-complete.vue index 899917701..9258d6020 100644 --- a/src/views/modules/shequzhili/event/cpts/process-form-complete.vue +++ b/src/views/modules/shequzhili/event/cpts/process-form-complete.vue @@ -399,6 +399,7 @@ function iniFmData() { export default { data() { return { + hotlineSpecialTeamReplyFlag:false, binaryOptionList, nonComplianceType, satisfactionType, @@ -498,6 +499,7 @@ showHotline:false, }, props: { + eventId: { type: String, default: "", @@ -565,16 +567,18 @@ showHotline:false, if (this.sysAdvancedList.hotlineSpecialTeamFlag==1) { this.showHotline=true } + if (this.sysAdvancedList.hotlineSpecialTeamReplyFlag==0) { + let keysToDelete=['respondent','respondentPhone','verified','solveState'] + keysToDelete.forEach(key => { + this.$delete(this.dataRule, key); + }); + } console.log(this.dataRule,"dskldsklfj"); if (this.sysAdvancedList.columnsIgnore) { - console.log(this.dataRule,"dskldsklfj"); - this.dataRule={} - this.dataRule = { - content: [ - { required: true, message: "办理情况不能为空", trigger: "blur" }, - ], - } - console.log(this.dataRule,"dskldsklfj"); + let keysToDelete=['returnVisitor','returnTime','loseContact','putThrough','visitComments','cooperate','satisfaction'] + keysToDelete.forEach(key => { + this.$delete(this.dataRule, key); + }); } diff --git a/src/views/modules/workSys/sysConfigure/index.vue b/src/views/modules/workSys/sysConfigure/index.vue index 0aa1d62dd..ec29a893f 100644 --- a/src/views/modules/workSys/sysConfigure/index.vue +++ b/src/views/modules/workSys/sysConfigure/index.vue @@ -164,12 +164,31 @@
- 是否需要开启答复情况、回访情况选项 + 是否需要开启答复情况选项
- 若开启答复情况、回访情况选项,事件办结时需要填写相应的答复、回访信息。 + 若开启答复情况选项,事件办结时需要填写相应的答复信息。 +
+ + + + +
+
+
+
+
+ 是否需要开启回访情况选项 +
+
+
+ 若开启回访情况选项,事件办结时需要填写相应的回访信息。
Date: Wed, 5 Feb 2025 14:54:15 +0800 Subject: [PATCH 2/5] =?UTF-8?q?=E4=B8=8D=E5=90=88=E8=A7=84=E8=AF=89?= =?UTF-8?q?=E6=B1=82=E7=B1=BB=E5=9E=8B=E4=B8=8D=E8=83=BD=E4=B8=BA=E7=A9=BA?= =?UTF-8?q?,=E9=AB=98=E7=BA=A7=E9=85=8D=E7=BD=AE=E4=B8=8D=E8=AE=A9?= =?UTF-8?q?=E4=BB=96=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../shequzhili/event/cpts/process-form-complete.vue | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/views/modules/shequzhili/event/cpts/process-form-complete.vue b/src/views/modules/shequzhili/event/cpts/process-form-complete.vue index 9258d6020..e747c5008 100644 --- a/src/views/modules/shequzhili/event/cpts/process-form-complete.vue +++ b/src/views/modules/shequzhili/event/cpts/process-form-complete.vue @@ -56,7 +56,8 @@ -
+ +
@@ -154,8 +155,8 @@
- -
+ +
@@ -240,7 +241,7 @@
- +
@@ -452,6 +453,9 @@ showHotline:false, nonComplianceType: [ { required: true, message: "不合规诉求类型不能为空", trigger: "blur" }, ], + nonComplianceNotesText: [ + { required: true, message: "不合规诉求类型不能为空", trigger: "blur" }, + ], solveState: [ { required: true, message: "问题解决情况不能为空", trigger: "blur" }, ], From 6d95c7028ed46a1013808253dbdc5bf3051f1f4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=98=AF=E5=B0=8F=E7=8E=8B=E5=91=80=5C24601?= <819653817@qq.com> Date: Wed, 5 Feb 2025 17:09:58 +0800 Subject: [PATCH 3/5] =?UTF-8?q?12345=E4=B8=AD=E7=9A=84=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/shequzhili/analysis/formList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/modules/shequzhili/analysis/formList.vue b/src/views/modules/shequzhili/analysis/formList.vue index a3cf85f84..1fa3b54ee 100644 --- a/src/views/modules/shequzhili/analysis/formList.vue +++ b/src/views/modules/shequzhili/analysis/formList.vue @@ -134,7 +134,7 @@ export default { this.formData.agencyId = this.communityId; } if(this.address){ - this.formData.content = this.address; + this.formData.eventContent = this.address; } if(this.mobile){ this.formData.mobile = this.mobile; From 02de7d7d7eee8fefee71f3e3e86d6dba76b42faa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=98=AF=E5=B0=8F=E7=8E=8B=E5=91=80=5C24601?= <819653817@qq.com> Date: Wed, 5 Feb 2025 17:58:49 +0800 Subject: [PATCH 4/5] =?UTF-8?q?=E4=BA=8B=E4=BB=B6=E5=88=86=E6=9E=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/shequzhili/analysis/formList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/modules/shequzhili/analysis/formList.vue b/src/views/modules/shequzhili/analysis/formList.vue index 1fa3b54ee..7a4635db2 100644 --- a/src/views/modules/shequzhili/analysis/formList.vue +++ b/src/views/modules/shequzhili/analysis/formList.vue @@ -125,7 +125,7 @@ export default { try { const url = "/governance/dwdEvent/list"; if(this.recId){ - this.formData.secondIdList = [this.recId]; + this.formData.firstIdList = [this.recId]; } if(this.departId){ this.formData.departId = this.departId; From a165d602d4f5b7795cf59709ea540fdae4fc9258 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=98=AF=E5=B0=8F=E7=8E=8B=E5=91=80=5C24601?= <819653817@qq.com> Date: Sat, 8 Feb 2025 16:49:50 +0800 Subject: [PATCH 5/5] =?UTF-8?q?12345=E6=B7=BB=E5=8A=A0=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E6=9D=A1=E4=BB=B6=E3=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/shequzhili/Delivery/index.vue | 81 +++++++++++++++++++ .../event/cpts/process-form-contact.vue | 5 +- .../event/cpts/process-form-process.vue | 3 + 3 files changed, 88 insertions(+), 1 deletion(-) diff --git a/src/views/modules/shequzhili/Delivery/index.vue b/src/views/modules/shequzhili/Delivery/index.vue index 8c8836d51..7b5b6c616 100644 --- a/src/views/modules/shequzhili/Delivery/index.vue +++ b/src/views/modules/shequzhili/Delivery/index.vue @@ -61,6 +61,20 @@ value-format="yyyy-MM-dd HH:mm:ss" value="yyyy-MM-dd" placeholder="结束时间"> + + + + + + + + + + + + + + @@ -237,6 +254,20 @@ export default { label: "未指派", }, ], + nonComplianceList:[ + { + value: 0, + label: "否", + }, + { + value: 1, + label: "是", + }, + { + value: 2, + label: "不限", + }, + ], handleList: [ { value: "8", @@ -258,6 +289,10 @@ export default { value: "12", label: "已审核归档", }, + { + value: "13", + label: "退件 ", + }, ], tableData: [], statusArray: [ @@ -288,6 +323,52 @@ export default { label: "超出服务范围", }, ], + sourceList: [ + { + value: "来电", + label: "来电", + }, + { + value: "信箱", + label: "信箱", + }, + { + value: "青岛来电", + label: "青岛来电", + }, + { + value: "青岛短信", + label: "青岛短信", + }, + { + value: "青岛信箱", + label: "青岛信箱", + }, + { + value: "青岛网站", + label: "青岛网站", + }, + { + value: "青岛微信", + label: "青岛微信", + }, + { + value: "青岛手机APP", + label: "青岛手机APP", + }, + { + value: "青岛网络舆情", + label: "青岛网络舆情", + }, + { + value: "青岛人民网", + label: "青岛人民网", + }, + { + value: "青岛人民来信", + label: "青岛人民来信", + }, + ], qudaoArray: [ { value: "3", diff --git a/src/views/modules/shequzhili/event/cpts/process-form-contact.vue b/src/views/modules/shequzhili/event/cpts/process-form-contact.vue index 13f5a49bd..7029dfe08 100644 --- a/src/views/modules/shequzhili/event/cpts/process-form-contact.vue +++ b/src/views/modules/shequzhili/event/cpts/process-form-contact.vue @@ -101,7 +101,7 @@
+ prop="nonComplianceNotesText">
@@ -156,6 +156,9 @@ export default { uploadUlr: window.SITE_CONFIG["apiURL"] + "/oss/file/uploadvariedfile", selectList: [{ label: '属实', value: 0 }, { label: '不属实', value: 1 }], dataRule: { + nonComplianceNotesText: [ + { required: true, message: "不合规诉求类型不能为空", trigger: "blur" }, + ], content: [ { required: true, message: '办理情况不能为空', trigger: 'blur' } ], diff --git a/src/views/modules/shequzhili/event/cpts/process-form-process.vue b/src/views/modules/shequzhili/event/cpts/process-form-process.vue index b5072c8f4..56db6f631 100644 --- a/src/views/modules/shequzhili/event/cpts/process-form-process.vue +++ b/src/views/modules/shequzhili/event/cpts/process-form-process.vue @@ -154,6 +154,9 @@ export default { uploadUlr: window.SITE_CONFIG["apiURL"] + "/oss/file/uploadvariedfile", dataRule: { + nonComplianceNotesText: [ + { required: true, message: "不合规诉求类型不能为空", trigger: "blur" }, + ], content: [ { required: true, message: "办理情况不能为空", trigger: "blur" }, ],