143 lines
3.4 KiB
JavaScript
143 lines
3.4 KiB
JavaScript
// src/data/partners.js
|
|
export const partnerGroups = {
|
|
// 政府机构
|
|
government: [
|
|
{
|
|
name: '北京市园林绿化局',
|
|
image: '/img/example/g1.png'
|
|
},
|
|
{
|
|
name: '北京密云高标准示范蜂场',
|
|
image: '/img/example/g2.png'
|
|
},
|
|
{
|
|
name: '湖北竹山高标准示范蜂场',
|
|
image: '/img/example/g3.png'
|
|
}
|
|
],
|
|
university: [
|
|
{
|
|
name: '中国农业科学院',
|
|
image: '/img/example/s1.png',
|
|
type: 'research_institute'
|
|
},
|
|
{
|
|
name: '华中科技大学',
|
|
image: '/img/example/s2.png',
|
|
type: 'university'
|
|
},
|
|
{
|
|
name: '福建农林大学',
|
|
image: '/img/example/s3.png',
|
|
type: 'agricultural_university'
|
|
}
|
|
],
|
|
|
|
|
|
enterprise: [
|
|
{
|
|
name: '武汉葆春',
|
|
image: '/img/example/e1.png',
|
|
type: 'bee_enterprise'
|
|
},
|
|
{
|
|
name: '新疆百信',
|
|
image: '/img/example/e2.png',
|
|
type: 'bee_enterprise'
|
|
},
|
|
{
|
|
name: '新疆花岛',
|
|
image: '/img/example/e3.png',
|
|
type: 'bee_enterprise'
|
|
}
|
|
],
|
|
|
|
// 示范基地
|
|
demonstration: [
|
|
{
|
|
name: '北京密云高标准示范蜂场',
|
|
image: '/img/example/g2.png',
|
|
type: 'demonstration',
|
|
location: '密云区'
|
|
},
|
|
{
|
|
name: '湖北竹山高标准示范蜂场',
|
|
image: '/img/example/g3.png',
|
|
type: 'demonstration',
|
|
location: '竹山县'
|
|
}
|
|
],
|
|
pilot: [
|
|
{
|
|
name: '北京密云',
|
|
image: '/img/example/p1.png',
|
|
type: 'northern_city'
|
|
},
|
|
{
|
|
name: '新疆乌鲁木齐',
|
|
image: '/img/example/p2.png',
|
|
type: 'western_city'
|
|
},
|
|
{
|
|
name: '湖北武汉',
|
|
image: '/img/example/p3.png',
|
|
type: 'central_city'
|
|
},
|
|
{
|
|
name: '广东广州',
|
|
image: '/img/example/p4.png',
|
|
type: 'southern_city'
|
|
},
|
|
{
|
|
name: '浙江金华',
|
|
image: '/img/example/p5.png',
|
|
type: 'eastern_city'
|
|
},
|
|
{
|
|
name: '四川成都',
|
|
image: '/img/example/p6.png',
|
|
type: 'southwestern_city'
|
|
},
|
|
{
|
|
name: '海南海口',
|
|
image: '/img/example/p7.png',
|
|
type: 'tropical_city'
|
|
},
|
|
{
|
|
name: '江苏扬州',
|
|
image: '/img/example/p8.png',
|
|
type: 'jiangnan_city'
|
|
},
|
|
{
|
|
name: '重庆',
|
|
image: '/img/example/p9.png',
|
|
type: 'mountain_city'
|
|
}
|
|
],
|
|
|
|
// 合作社
|
|
cooperative: [
|
|
{
|
|
name: '北京京纯合作社',
|
|
image: '/img/example/c1.png',
|
|
type: 'bee_cooperative'
|
|
},
|
|
{
|
|
name: '四川省蟲鑫合作社',
|
|
image: '/img/example/c2.png',
|
|
type: 'bee_cooperative'
|
|
},
|
|
{
|
|
name: '北京金华林合作社',
|
|
image: '/img/example/c3.png',
|
|
type: 'bee_cooperative'
|
|
}
|
|
]
|
|
}
|
|
|
|
// 按类型获取数据
|
|
export const getPartnersByType = (type) => {
|
|
return partnerGroups[type] || []
|
|
}
|
|
|