From bd922cffd5e59a41d2f6e1602a5917f131ebc5a6 Mon Sep 17 00:00:00 2001 From: Huangzhe Date: Mon, 26 May 2025 17:15:05 +0800 Subject: [PATCH] =?UTF-8?q?refactor(Survey):=20=E4=BC=98=E5=8C=96=E4=BA=8C?= =?UTF-8?q?=E7=BB=B4=E7=A0=81=E4=B8=8B=E8=BD=BD=E6=8F=90=E7=A4=BA=E4=BF=A1?= =?UTF-8?q?=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修改了二维码下载成功后的提示信息,使其更加准确和通顺 - 将"请打系统相册查看"改为"请打开系统相册查看" --- src/views/Survey/views/Publish/Index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Survey/views/Publish/Index.vue b/src/views/Survey/views/Publish/Index.vue index 512203a..a523b38 100644 --- a/src/views/Survey/views/Publish/Index.vue +++ b/src/views/Survey/views/Publish/Index.vue @@ -143,7 +143,7 @@ function downLoadImg() { const { title, url } = publishInfo.value.download_url; if (appBridge.isInReactNative()) { appBridge.save2Album(url, () => { - showToast('二维码下载成功,请打系统相册查看'); + showToast('二维码下载成功,请打开系统相册查看'); }); } else { const link = document.createElement('a');