From e5add20c37868c5c4ee1a535ae170924394e1d37 Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Mon, 24 Jul 2023 16:11:22 +0800 Subject: [PATCH] =?UTF-8?q?[update]=20=E4=BF=AE=E6=94=B9=E9=A6=96=E9=A1=B5?= =?UTF-8?q?=E5=85=AC=E5=91=8A=E6=8F=90=E9=86=92=E6=98=AF=E6=88=AA=E6=AD=A2?= =?UTF-8?q?=E6=97=B6=E9=97=B4=E4=B9=8B=E5=89=8D=E7=9A=84=E6=89=8D=E5=BC=B9?= =?UTF-8?q?=E6=A1=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/home/home.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/home/home.js b/pages/home/home.js index 426c5ca..94a8e10 100644 --- a/pages/home/home.js +++ b/pages/home/home.js @@ -478,19 +478,19 @@ Page({ } }) - // 2023-07变更:调接口看有没有超出消息提醒截止时间未读的,如果有则弹框提示 + // 2023-07变更:调接口看有没有没到消息提醒截止时间未读的,如果有则弹框提示 UserApi.messageOverTimeUnreadList().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(',') wx.showModal({ - title: '超时未读提醒', + title: '未读提醒', content: messageArr.join('\n'), showCancel: false, confirmText: '知道了', success: () => { - // 点击知道了把这些超时未读消息变成已读 + // 点击知道了把这些未读消息变成已读 UserApi.messageOverTimeToRead({anntIds: anntIds}).then(res => { if (res.success) { this.messageDetail({currentTarget: {dataset: {message: {readFlag: 0, anntId: ''}}}})