From 1867c4a2d5288f3efcfb8ae8a8c93a8628a2f01d Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Mon, 24 Jul 2023 16:06:31 +0800 Subject: [PATCH] =?UTF-8?q?[update]=20=E4=BF=AE=E6=94=B9=E5=85=AC=E5=91=8A?= =?UTF-8?q?=E5=BC=B9=E6=A1=86=E4=B8=BA=E6=88=AA=E6=AD=A2=E6=97=B6=E9=97=B4?= =?UTF-8?q?=E4=B9=8B=E5=89=8D=E6=9C=AA=E8=AF=BB=E6=89=8D=E5=BC=B9=E6=A1=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/dashboard/Analysis.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/dashboard/Analysis.vue b/src/views/dashboard/Analysis.vue index de1ea72..9cf6c96 100644 --- a/src/views/dashboard/Analysis.vue +++ b/src/views/dashboard/Analysis.vue @@ -228,15 +228,15 @@ export default { this.loadData(1) }, mounted () { - // 2023-07变更:调接口看有没有超出消息提醒截止时间未读的,如果有则弹框提示 + // 2023-07变更:调接口看有没有没到提醒截止时间未读的,如果有则弹框提示 getAction(this.url.getUnreadMessage, {}).then(res => { if (res.success) { if (res.result && res.result.length > 0) { const messageArr = res.result.map(item => item.msgContent) const anntIds = res.result.map(item => item.anntId).join(',') - // 说明有超时未读的消息 + // 说明有未读的消息 this.$warning({ - title: '超时未读提醒', + title: '未读提醒', content: h => h( 'div', messageArr.map((item, index) => { return h('p', { key: index }, item)})