feat: Wallpaper page

This commit is contained in:
zzc
2026-01-26 18:37:32 +08:00
parent 3bb5127d8f
commit ee4f1b85c9
4 changed files with 378 additions and 1 deletions

View File

@@ -213,7 +213,7 @@ const features = ref([
title: "精美壁纸",
subtitle: "获取精美壁纸",
icon: "/static/icon/bizhi.png",
type: "video",
type: "wallpaper",
},
]);
@@ -270,6 +270,10 @@ const onFeatureTap = (item) => {
uni.navigateTo({ url: "/pages/avatar/index" });
return;
}
if (item.type === "wallpaper") {
uni.navigateTo({ url: "/pages/wallpaper/index" });
return;
}
uni.showToast({ title: `进入:${item.title}`, icon: "none" });
};