refactor(Survey): 优化二维码下载提示信息
- 修改了二维码下载成功后的提示信息,使其更加准确和通顺 - 将"请打系统相册查看"改为"请打开系统相册查看"
This commit is contained in:
@@ -143,7 +143,7 @@ function downLoadImg() {
|
|||||||
const { title, url } = publishInfo.value.download_url;
|
const { title, url } = publishInfo.value.download_url;
|
||||||
if (appBridge.isInReactNative()) {
|
if (appBridge.isInReactNative()) {
|
||||||
appBridge.save2Album(url, () => {
|
appBridge.save2Album(url, () => {
|
||||||
showToast('二维码下载成功,请打系统相册查看');
|
showToast('二维码下载成功,请打开系统相册查看');
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
const link = document.createElement('a');
|
const link = document.createElement('a');
|
||||||
|
|||||||
Reference in New Issue
Block a user