171 lines
3.7 KiB
JavaScript
171 lines
3.7 KiB
JavaScript
// 首页 mock 数据
|
|
// 设计稿尺寸: 390px 宽度,1px = 750/390 ≈ 1.923rpx
|
|
|
|
// Hero 区 4个指标
|
|
export const trustStats = [
|
|
{ value: '11国', label: '全球生产工厂' },
|
|
{ value: '24h', label: '极速发货' },
|
|
{ value: '1000w+', label: '订单履约' },
|
|
{ value: '800+', label: '产品SKU' }
|
|
]
|
|
|
|
// 4步流程
|
|
export const stepList = [
|
|
{
|
|
step: '01',
|
|
title: '选择产品',
|
|
desc: '海量爆款产品,满足多元化场景需求'
|
|
},
|
|
{
|
|
step: '02',
|
|
title: '上传设计',
|
|
desc: '可视化编辑器,轻松实现创意落地'
|
|
},
|
|
{
|
|
step: '03',
|
|
title: '自动生产',
|
|
desc: '智能分发工厂,高效品质管控'
|
|
},
|
|
{
|
|
step: '04',
|
|
title: '全球配送',
|
|
desc: '多国本地仓,7日极速达'
|
|
}
|
|
]
|
|
|
|
// 全球POD货盘 - 国家tab
|
|
export const countryTabs = [
|
|
{ id: 'us', name: '美国', flag: '🇺🇸' },
|
|
{ id: 'ca', name: '加拿大', flag: '🇨🇦' },
|
|
{ id: 'mx', name: '墨西哥', flag: '🇲🇽' },
|
|
{ id: 'br', name: '巴西', flag: '🇧🇷' },
|
|
{ id: 'ar', name: '阿根廷', flag: '🇦🇷' }
|
|
]
|
|
|
|
// 全球POD货盘 - 产品列表
|
|
export const podProducts = [
|
|
{
|
|
id: 1,
|
|
name: '女士短款露脐T恤',
|
|
price: '19.00',
|
|
image: '/static/images/home/Rectangle_181_1455_1450.png'
|
|
},
|
|
{
|
|
id: 2,
|
|
name: '女士短款露脐T恤',
|
|
price: '19.00',
|
|
image: '/static/images/home/Rectangle_181_1455_1456.png'
|
|
},
|
|
{
|
|
id: 3,
|
|
name: '女士短款露脐T恤',
|
|
price: '19.00',
|
|
image: '/static/images/home/Rectangle_63_1446_1437.png'
|
|
},
|
|
{
|
|
id: 4,
|
|
name: '女士短款露脐T恤',
|
|
price: '19.00',
|
|
image: '/static/images/home/Rectangle_63_1455_1461.png'
|
|
}
|
|
]
|
|
|
|
// 平台功能卡片
|
|
export const featureList = [
|
|
{
|
|
id: 1,
|
|
title: '在线设计工具',
|
|
desc: '可视化编辑器,支持图片文字自由创作',
|
|
icon: '/static/icons/home/Vector_1460_1460.svg',
|
|
bgColor: '#FFF0E5'
|
|
},
|
|
{
|
|
id: 2,
|
|
title: '自动化履约',
|
|
desc: '订单自动分配工厂生产发货',
|
|
icon: '/static/icons/home/Vector_1461_1461.svg',
|
|
bgColor: '#E5F5FF'
|
|
},
|
|
{
|
|
id: 3,
|
|
title: '全球配送',
|
|
desc: '多国本地仓7日达',
|
|
icon: '/static/icons/home/Vector_1462_1462.svg',
|
|
bgColor: '#F0FFE5'
|
|
},
|
|
{
|
|
id: 4,
|
|
title: '店铺集成',
|
|
desc: '对接主流电商平台',
|
|
icon: '/static/icons/home/Vector_1463_1463.svg',
|
|
bgColor: '#FFF5E5'
|
|
}
|
|
]
|
|
|
|
// 集成平台列表
|
|
export const platformList = [
|
|
{ id: 1, name: 'Amazon', image: '' },
|
|
{ id: 2, name: 'Shopify', image: '' },
|
|
{ id: 3, name: 'TikTok', image: '' },
|
|
{ id: 4, name: 'Temu', image: '' },
|
|
{ id: 5, name: 'Shein', image: '' },
|
|
{ id: 6, name: 'Etsy', image: '' },
|
|
{ id: 7, name: 'eBay', image: '' }
|
|
]
|
|
|
|
// 为什么选择 - 4个优势
|
|
export const reasonList = [
|
|
{
|
|
id: 1,
|
|
title: '零库存',
|
|
desc: '按需生产,降低库存风险',
|
|
icon: ''
|
|
},
|
|
{
|
|
id: 2,
|
|
title: '快速生产',
|
|
desc: '48小时极速出货',
|
|
icon: ''
|
|
},
|
|
{
|
|
id: 3,
|
|
title: '优质产品',
|
|
desc: '严格品质管控',
|
|
icon: ''
|
|
},
|
|
{
|
|
id: 4,
|
|
title: '全球配送',
|
|
desc: '覆盖200+国家',
|
|
icon: ''
|
|
}
|
|
]
|
|
|
|
// 公司简介 - 4个核心能力
|
|
export const companyFeatures = [
|
|
{
|
|
id: 1,
|
|
title: '前沿印花技术',
|
|
desc: '创新数码直喷等工艺,品质与效率兼得',
|
|
icon: ''
|
|
},
|
|
{
|
|
id: 2,
|
|
title: 'AI 深度AI应用',
|
|
desc: 'AI设计辅助生产,全链路智能提效',
|
|
icon: ''
|
|
},
|
|
{
|
|
id: 3,
|
|
title: '全球智能工厂',
|
|
desc: '11国本土化生产POD工厂,当地产能随时开启',
|
|
icon: ''
|
|
},
|
|
{
|
|
id: 4,
|
|
title: '一站式柔性交付',
|
|
desc: '覆盖生产到物流,从小品牌到大牌全链路业务落地',
|
|
icon: ''
|
|
}
|
|
]
|