"use strict"; var App = getApp(); Component({ options: { addGlobalClass: true, }, externalClasses: ['custom-class'], properties: { pageName: String, showNav: { type: Boolean, value: true }, bgColor: { type: String, value: '#fff' }, iconColor: { type: String, value: '#000' } }, data: {}, lifetimes: { attached: function () { this.setData({ navHeight: App.globalData.navHeight, navTop: App.globalData.navTop }); } }, methods: { _navBack: function () { wx.navigateBack({ delta: 1 }); }, _toIndex: function () { wx.navigateTo({ url: '/pages/index/index' }); }, } });