const app = getApp(); Component({ options: { addGlobalClass: true }, properties: { title: { type: String, value: '肉垫计划' }, showBack: { type: Boolean, value: false } }, data: { statusBarHeight: 20, navBarHeight: 44 }, lifetimes: { attached() { this.setData({ statusBarHeight: app.globalData.statusBarHeight, navBarHeight: app.globalData.navBarHeight }); } }, methods: { onBack() { const pages = getCurrentPages(); if (pages.length > 1) { wx.navigateBack(); } else { wx.switchTab({ url: '/pages/home/home' }); } } } });