diff --git a/components/share/DefaultSharePage.vue b/components/share/DefaultSharePage.vue index b37203d..f5488c4 100644 --- a/components/share/DefaultSharePage.vue +++ b/components/share/DefaultSharePage.vue @@ -1,14 +1,13 @@ @@ -154,16 +152,7 @@ export default { }) uni.hideLoading() - if (this.isWechat) { - // 微信环境:设置图片供长按保存 - this.generatedImageUrl = dataUrl - } else { - // 普通浏览器环境 - if (this.isSpecialScene) { - // 特殊场景:设置图片供长按保存(没有下载按钮) - this.generatedImageUrl = dataUrl - } - } + this.generatedImageUrl = dataUrl }, // 下载图片 @@ -240,4 +229,13 @@ export default { height: 80px !important; } } +.mask-loading { + position: absolute; + top: 0; + left: 0; + width: 100vw; + height: 100vh; + z-index: 1000; + background-color: #fff; +} diff --git a/static/images/share-bg.jpg b/static/images/share-bg.jpg index 962d4ea..5d2faed 100644 Binary files a/static/images/share-bg.jpg and b/static/images/share-bg.jpg differ