123456789101112131415161718192021222324252627282930313233343536 |
- // 图片引入
- import logo from '@/assets/logo.png'
- import home from '@/assets/home.jpg'
- import Code from '@/assets/code.png'
- import Unit from '@/assets/unit.png'
- // 网站基本设置
- export const siteInfo = {
- display: false,
- zhTitle: '新一代信息技术孵化平台',
- zhEnglish: 'Information Technology Incubation Platform',
- zhBrief: '方寸心间 创新无限',
- logoUrl: logo,
- videoUrl: home
- }
- // 网站底部信息
- export const footInfo = {
- Phone: '0431-81165166',
- Email: 'jlpstm@126.com',
- Address: '长春朝阳区前进大街1244号(吉林省科技厅科研园)',
- Copyright: 'Copyright©2007-2024 吉林省创新指导中心 │ 吉ICP备14005689号',
- Company: '长春市福瑞科技有限公司',
- Code,
- Unit
- }
- // 菜单设置
- export const menuList = [
- // { _id: '1', title: '首页', href: 'home', English: 'Home', type: '0' },
- { _id: '2', title: '政策新闻', href: 'news', English: 'Policy News', type: '0' },
- { _id: '3', title: '新闻资讯', href: 'brain', English: 'News Information', type: '0' },
- { _id: '4', title: '供需商城', href: 'demand', English: 'Demand Mall', type: '0' },
- { _id: '5', title: '专家智库', href: 'expert', English: 'Expert Tank', type: '0' },
- { _id: '6', title: '优质企业', href: 'company', English: 'Authorized Operator', type: '0' },
- { _id: '7', title: '项目精选', href: 'project', English: 'Project Selection', type: '0' },
- { _id: '8', title: '创新大赛', href: 'innovation', English: 'Innovation Competition', type: '0' },
- { _id: '9', title: '成果展示', href: 'achievement', English: 'Achievement Display', type: '0' }
- ]
|