import request from "@/utils/request"; export const getPromotions = (position = "home_banner") => request({ url: "/promotions/", method: "GET", data: { position } }); export const recordClick = (promotionId) => request({ url: "/promotions/click", method: "POST", data: { promotion_id: promotionId } });