const util = require('../../utils/util.js'); const app = getApp(); Component({ /** * 组件的属性列表 */ properties: { tabbar: { type: Object, value: { "backgroundColor": "#ffffff", "color": "#979795", "selectedColor": "#1c1c1b", "list": [{ "pagePath": "/pages/homePage/index", "iconPath": "icon/icon_home.png", "selectedIconPath": "icon/icon_home_HL.png", "text": "首页" }, { "pagePath": "/pages/leadTeam/index", "iconPath": "icon/icon_home.png", "selectedIconPath": "icon/icon_home_HL.png", "text": "带队" }, { "pagePath": "/pages/story/publish/index", "iconPath": "icon/icon_release.png", "isSpecial": true, "text": "发布" }, { "pagePath": "/pages/grow/index", "iconPath": "icon/icon_mine.png", "selectedIconPath": "icon/icon_mine_HL.png", "text": "成长" }, { "pagePath": "/pages/mine/index", "iconPath": "icon/icon_mine.png", "selectedIconPath": "icon/icon_mine_HL.png", "text": "我的" } ] } } }, /** * 组件的初始数据 */ data: { // isIphoneX: app.globalData.systemInfo.model.search('iPhone X') != -1 ? true : false userInfo: app.globalData.userInfo, }, /** * 组件的方法列表 */ methods: { navigator_url(e) { console.log(e, 56565) wx.switchTab({ url: e.currentTarget.dataset.url, }) }, } })