|
@@ -0,0 +1,30 @@
|
|
|
+module.exports = {
|
|
|
+ // 底部导航栏列表数据
|
|
|
+ tabbarList: [{
|
|
|
+ pagePath: "/pages/index/index",
|
|
|
+ iconPath: "/static/icons/index-gray.png",
|
|
|
+ selectedIconPath: "/static/icons/index.png",
|
|
|
+ text: '首页',
|
|
|
+ customIcon: false,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ pagePath: "/pages/mycode/mycode",
|
|
|
+ iconPath: "/static/icons/midbutton-gray.png",
|
|
|
+ selectedIconPath: "/static/icons/midbutton.png",
|
|
|
+ text: '退役军人码',
|
|
|
+ midButton: true,
|
|
|
+ customIcon: false,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ pagePath: "/pages/mine/mine",
|
|
|
+ iconPath: "/static/icons/mine-gray.png",
|
|
|
+ selectedIconPath: "/static/icons/mine.png",
|
|
|
+ text: '我的',
|
|
|
+ customIcon: false,
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ midButton: true,
|
|
|
+ inactiveColor: '#909399',
|
|
|
+ activeColor: '#303133',
|
|
|
+ midButtonSize: 90
|
|
|
+}
|