// 加入购物车
export default function addToCart(itemId: string): string
{
    return `gc+${itemId}`;
}