|
@@ -11,6 +11,7 @@ const projectInfo = {
|
|
|
// 小程序配置相关
|
|
|
appId: 'wx37f06c38292f7d82',
|
|
|
appName: '物业商机 | 采购意向',
|
|
|
+ appType: 'cgyx',
|
|
|
appDesc: '',
|
|
|
payAppId: '',
|
|
|
appIcon: process.env.TARO_APP_WEB_ASSETS_BASE + '/images/logo/zxcg.png',
|
|
@@ -74,10 +75,94 @@ const boxInfo = [
|
|
|
},
|
|
|
]
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+const searchTabbars = [
|
|
|
+ {
|
|
|
+ key: 'home',
|
|
|
+ text: '订阅',
|
|
|
+ path: '/pages/tabbar/home/index',
|
|
|
+ icon: 'icon-a-Property1subscribe',
|
|
|
+ activeIcon: 'icon-a-Property1subscribe',
|
|
|
+ badge: ''
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: 'search',
|
|
|
+ text: '搜索',
|
|
|
+ path: '/pages/tabbar/search/index',
|
|
|
+ icon: 'icon-a-Property1search',
|
|
|
+ activeIcon: 'icon-a-Property1search',
|
|
|
+ badge: ''
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: 'box',
|
|
|
+ text: '全部商机',
|
|
|
+ path: '/pages/tabbar/box/index',
|
|
|
+ icon: 'icon-a-Property1box',
|
|
|
+ activeIcon: 'icon-a-Property1box',
|
|
|
+ badge: 'HOT'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: 'mine',
|
|
|
+ text: '我的',
|
|
|
+ path: '/pages/tabbar/mine/index',
|
|
|
+ icon: 'icon-a-Property1mine',
|
|
|
+ activeIcon: 'icon-a-Property1mine',
|
|
|
+ badge: ''
|
|
|
+ }
|
|
|
+]
|
|
|
+
|
|
|
+const unitTabbars = [
|
|
|
+ {
|
|
|
+ key: 'home',
|
|
|
+ text: '甲方库',
|
|
|
+ path: '/pages/tabbar/home/index',
|
|
|
+ icon: 'icon-a-Property1lib',
|
|
|
+ activeIcon: 'icon-a-Property1lib',
|
|
|
+ badge: ''
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: 'search',
|
|
|
+ text: '搜索',
|
|
|
+ path: '/pages/tabbar/search/index',
|
|
|
+ icon: 'icon-a-Property1search',
|
|
|
+ activeIcon: 'icon-a-Property1search',
|
|
|
+ badge: ''
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: 'monitor',
|
|
|
+ text: '监控',
|
|
|
+ path: '/pages/tabbar/monitor/index',
|
|
|
+ icon: 'icon-a-Property1monitor',
|
|
|
+ activeIcon: 'icon-a-Property1monitor',
|
|
|
+ badge: ''
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: 'box',
|
|
|
+ text: '全部商机',
|
|
|
+ path: '/pages/tabbar/box/index',
|
|
|
+ icon: 'icon-a-Property1box',
|
|
|
+ activeIcon: 'icon-a-Property1box',
|
|
|
+ badge: 'HOT'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: 'mine',
|
|
|
+ text: '我的',
|
|
|
+ path: '/pages/tabbar/mine/index',
|
|
|
+ icon: 'icon-a-Property1mine',
|
|
|
+ activeIcon: 'icon-a-Property1mine',
|
|
|
+ badge: ''
|
|
|
+ }
|
|
|
+]
|
|
|
+
|
|
|
+const tabbars = unitTabbars
|
|
|
+
|
|
|
+
|
|
|
const appConfig = {
|
|
|
projectInfo,
|
|
|
shareInfo,
|
|
|
- boxInfo
|
|
|
+ boxInfo,
|
|
|
+ tabbars
|
|
|
}
|
|
|
|
|
|
export default appConfig
|