yintai-company-home-am/data/const.ts

23 lines
622 B
TypeScript

// 语言
export const LOCALES = [
{
name: '中文',
key: 'ZH',
isPrimary: true,
},
{
name: 'English',
key: 'EN',
},
];
// 分类
export const categoryTypes = [
{ key: 'process', name: '历程', path: '/history' },
{ key: 'news', name: '新闻', path: '/news' },
{ key: 'file', name: '文件', path: '/document' },
{ key: 'job', name: '招聘', path: '/jobs' },
{ key: 'job_type', name: '职业类型', path: '/jobs' },
{ key: 'job_area', name: '业务领域', path: '/jobs' },
{ key: 'job_unit', name: '所属板块', path: '/jobs' },
]