From 1367c4e47986ea72ba877aa9a4f098a091d931d8 Mon Sep 17 00:00:00 2001
From: fengachen <373943794@qq.com>
Date: Fri, 17 Feb 2023 10:45:12 +0800
Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BF=AE=E6=94=B9=E3=80=91=E5=88=86?=
=?UTF-8?q?=E6=A0=87=E5=A7=94=20=E7=90=86=E4=BA=8B=E4=BC=9A=20=E4=BC=9A?=
=?UTF-8?q?=E8=AE=AE=E5=8F=91=E5=B8=83=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../projectManagement/AllMeetingList.vue | 340 ++++++++++++++++++
.../modules/PublishRemindModal.vue | 16 +-
2 files changed, 354 insertions(+), 2 deletions(-)
create mode 100644 src/views/projectManagement/AllMeetingList.vue
diff --git a/src/views/projectManagement/AllMeetingList.vue b/src/views/projectManagement/AllMeetingList.vue
new file mode 100644
index 0000000..040e11a
--- /dev/null
+++ b/src/views/projectManagement/AllMeetingList.vue
@@ -0,0 +1,340 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/projectManagement/modules/PublishRemindModal.vue b/src/views/projectManagement/modules/PublishRemindModal.vue
index 3b84ae1..c59145b 100644
--- a/src/views/projectManagement/modules/PublishRemindModal.vue
+++ b/src/views/projectManagement/modules/PublishRemindModal.vue
@@ -280,7 +280,13 @@ export default {
if(this.$route.query.meetingType === '5' ){
commitePublishRemind(param).then(res => {
if (res.success) {
- this.$message.success(res.message)
+ // this.$message.success(res.message)
+ if (Array.isArray(res.result) && res.result.length > 0) {
+ // msgWarn(this,res.result,0)
+ this.$refs.emailError.open()
+ this.$refs.emailError.msgList = res.result
+ console.log(this.$refs.emailError.msgList, 'this.$refs.emailError.msgList ')
+ }
this.$emit('ok')
this.confirmLoading = false
this.handleCancel()
@@ -296,7 +302,13 @@ export default {
// 理事会的用理事会的发布提醒
councilPublishRemind(param).then(res => {
if (res.success) {
- this.$message.success(res.message)
+ // this.$message.success(res.message)
+ if (Array.isArray(res.result) && res.result.length > 0) {
+ // msgWarn(this,res.result,0)
+ this.$refs.emailError.open()
+ this.$refs.emailError.msgList = res.result
+ console.log(this.$refs.emailError.msgList, 'this.$refs.emailError.msgList ')
+ }
this.$emit('ok')
this.confirmLoading = false
this.handleCancel()