import { request } from "@/utils/request.js"; export const getWallpaperList = async (categoryId, page = 1) => { return request({ url: `/api/blessing/wallpaper/list?categoryId=${categoryId}&page=${page}`, method: "GET", }); }; export const getWallpaperCategoryList = async () => { return request({ url: `/api/blessing/wallpaper/category/list`, method: "GET", }); }; export const getWallpaperRecommendList = async () => { return request({ url: `/api/blessing/wallpaper/recommend/list`, method: "get", }); };