refactor(Survey): 优化二维码下载提示信息

- 修改了二维码下载成功后的提示信息,使其更加准确和通顺
- 将"请打系统相册查看"改为"请打开系统相册查看"
This commit is contained in:
Huangzhe
2025-05-26 17:15:05 +08:00
parent c5e424b256
commit bd922cffd5

View File

@@ -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');