webmaster 发表于 2020-1-18 16:50:22

crmeb商城如何给其它页面添加底部导航栏

已h5为例子:
1.首先找到h5\src\router\index.js文件
    {
      path: "/",
      name: "Index",
      meta: {
      title: "首页",
      keepAlive: true,
      home: false,
      footer: true
      },
      component: Index
    },
当看到以上代码估计也就明白了,footer: true即为开启底部导航栏的意思,
------------
接下来就是你想让那个页面显示底部导航栏就将footer的值改为true,或footer: true

页: [1]
查看完整版本: crmeb商城如何给其它页面添加底部导航栏