back.js 402 B

123456789101112131415
  1. Component({
  2. //使用在自定义头部 导航 沉浸式 显示后退按钮
  3. properties: {
  4. title: String
  5. },
  6. data: {
  7. backTop: wx.getMenuButtonBoundingClientRect().bottom - wx.getMenuButtonBoundingClientRect().height,
  8. backHeight: wx.getMenuButtonBoundingClientRect().height
  9. },
  10. methods: {
  11. back() {
  12. wx.navigateBack();
  13. },
  14. },
  15. });