123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- /**
- * meta对象说明
- * pageTitle:网站标题,
- * behavior:是否需要获取用户行为(点赞,评论,分享,评分等,及浏览量,点赞数,分享,评论数等)
- * requireLogin:是否需要登录后才能进入
- * fullScreen: false // 是否需要满屏显示
- */
- import login from './login.js'
- export default [
- ...login,
- // {
- // path: "/home",
- // name: "home",
- // component: () => import("@/view/home/index"),
- // hidden: true,
- // meta: {
- // pageTitle: "Home",
- // requireLogin: true,
- // fullScreen: true
- // }
- // },
- {
- path: "/",
- name: "home",
- component: () => import("@/view/overView/index"),
- hidden: true,
- meta: {
- pageTitle: "overView",
- chineseTitle: "Overview", // // 全览图
- navActive: "overView",
- fullScreen: true
- }
- },
- {
- path: "/product",
- name: "product",
- component: () => import("@/view/product/index"),
- hidden: true,
- meta: {
- pageTitle: "product",
- requireLogin: true,
- fullScreen: true
- }
- }, {
- path: "/products/:id/:name/:catalog",
- name: "productDetail",
- component: () => import("@/view/product/details"),
- hidden: true,
- meta: {
- pageTitle: 'Product Detail',
- chineseTitle: 'Product Detail', // 产品详情
- navActive: 'Product detail', // 匹配路由名字 产品详情
- fullScreen: true
- }
- }, {
- path: "/inquiry",
- name: "inquiry",
- component: () => import("@/view/inquiry/index"),
- hidden: true,
- meta: {
- pageTitle: 'Inquiry',
- chineseTitle: '询价',
- navActive: 'inquiry', // 匹配路由名字 询价页
- fullScreen: true
- }
- }, {
- path: "/privacy-policy",
- name: "privacy-policy",
- component: () => import("@/view/privacyPolicy/index"),
- hidden: true,
- meta: {
- pageTitle: "Privacy Policy",
- chineseTitle: "隐私政策",
- navActive: "Privacy Policy", // 匹配路由名字 隐私政策
- fullScreen: true
- }
- }, {
- path: "/mycart",
- name: "mycart",
- component: () => import("@/view/mycart/index"),
- hidden: true,
- meta: {
- pageTitle: "My Cart",
- chineseTitle: "购物车",
- navActive: "Mycart" // 购物车页
- }
- }, {
- path: "/article",
- name: "article",
- component: () => import("@/view/article/index"),
- hidden: true,
- meta: {
- pageTitle: "article",
- chineseTitle: "Related Articles",
- navActive: "article",
- fullScreen: true
- }
- }, {
- path: "/profile",
- name: "profile",
- component: () => import("@/view/profile/index"),
- hidden: true,
- meta: {
- pageTitle: "profile",
- chineseTitle: "Materials Download", // 资料下载
- navActive: "profile",
- fullScreen: true
- }
- },{
- path: "/antibody",
- name: "antibody",
- component: () => import("@/view/antibody/index"),
- hidden: true,
- meta: {
- pageTitle: "antibody",
- chineseTitle: "Antibody Database", // 抗体数据库
- navActive: "antibody",
- fullScreen: true
- }
- }, {
- path: "/antibodyDetail",
- name: "antibodyDetail",
- component: () => import("@/view/antibodyDetail/index"),
- hidden: true,
- meta: {
- pageTitle: "antibodyDetail",
- chineseTitle: "抗体数据库详情",
- navActive: "antibodyDetail",
- fullScreen: true
- }
- }, {
- path: "/articleDetail",
- name: "articleDetail",
- component: () => import("@/view/articleDetail/index"),
- hidden: true,
- meta: {
- pageTitle: "articleDetail",
- chineseTitle: "详情",
- navActive: "articleDetail",
- fullScreen: true
- }
- }, {
- path: "/promotion",
- name: "promotion",
- component: () => import("@/view/promotion/index"),
- hidden: true,
- meta: {
- pageTitle: "promotion",
- chineseTitle: "申请免费样品",
- navActive: "promotion",
- fullScreen: false
- }
- }
- ]
|