fix: gretting page

This commit is contained in:
zzc
2026-02-03 11:17:58 +08:00
parent ad40704642
commit e664356a5f
3 changed files with 54 additions and 43 deletions

View File

@@ -1,7 +1,5 @@
<template>
<view
class="wallpaper-page"
>
<view class="wallpaper-page">
<NavBar title="精美壁纸" />
<!-- Category Tabs -->
@@ -37,7 +35,7 @@
:key="index"
>
<image
:src="getThumbUrl(item.imageUrl)"
:src="getThumbUrl(item.imageUrl)"
mode="aspectFill"
class="wallpaper-img"
@tap="previewImage(index)"
@@ -122,6 +120,8 @@ onShareAppMessage(async (options) => {
return {
title: "新春祝福",
path: `/pages/index/index?shareToken=${shareTokenRes.shareToken}`,
imageUrl:
"https://file.lihailezzc.com/resource/cfed2edbfa19250b836a87a4bbf0d5ad.png",
};
}
});
@@ -131,7 +131,7 @@ onMounted(async () => {
});
const getThumbUrl = (url) => {
return `${url}?imageView2/1/w/340/h/600/q/80`;
return `${url}?imageView2/1/w/340/h/600/q/80`;
};
const fetchCategories = async () => {