From 22d50fb944c6ed7fed4c273b102d3c55e5881e84 Mon Sep 17 00:00:00 2001 From: "liu.huiying@ebiz-digits.com" Date: Fri, 21 Mar 2025 16:49:18 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E8=B0=83=E6=95=B4=E6=8F=90=E7=A4=BA?= =?UTF-8?q?=E8=AF=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Survey/views/Publish/Index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/Survey/views/Publish/Index.vue b/src/views/Survey/views/Publish/Index.vue index 0a4914c..677dab1 100644 --- a/src/views/Survey/views/Publish/Index.vue +++ b/src/views/Survey/views/Publish/Index.vue @@ -115,7 +115,7 @@ function copyLink() { input.select(); document.execCommand('Copy'); document.body.removeChild(input); - showToast('复制成功'); + showToast('链接复制成功'); } // 分享链接 function shareLink() { @@ -140,9 +140,9 @@ function shareLink() { // 下载二维码 function downLoadImg() { const { title, url } = publishInfo.value.download_url; - if (utils.getSessionStorage('xToken')) { + if (appBridge.isInReactNative()) { appBridge.save2Album(url, () => { - showToast('二维码已成功保存到相册'); + showToast('二维码下载成功,请打系统相册查看'); }); } else { const link = document.createElement('a');