Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
mlaj
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2025-12-25 13:50:13 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
40a917aaff543246907da53d9b4984ad5b01898a
40a917aa
1 parent
214255ef
fix(PosterPage): 修复背景图片未定义时使用默认图片的逻辑
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
src/views/recall/PosterPage.vue
src/views/recall/PosterPage.vue
View file @
40a917a
<!--
* @Date: 2025-12-23 15:50:59
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-12-25 13:
07:01
* @LastEditTime: 2025-12-25 13:
22:42
* @FilePath: /mlaj/src/views/recall/PosterPage.vue
* @Description: 分享海报页面
-->
...
...
@@ -174,7 +174,7 @@ onMounted(async () => {
})
if (code) {
posterBg.value = data.background_image
+ '?imageMogr2/thumbnail/800x/strip/quality/80' ||
defaultBg
posterBg.value = data.background_image
? data.background_image + '?imageMogr2/thumbnail/800x/strip/quality/80' :
defaultBg
qrCodeUrl.value = data?.qrcode || ''
isReady.value = true
}
...
...
Please
register
or
login
to post a comment