navbar.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. const app = getApp()
  2. Component({
  3. properties: {
  4. navbarData: { //navbarData 由父页面传递的数据,变量名字自命名
  5. type: Object,
  6. value: {},
  7. observer: function (newVal, oldVal) {}
  8. },
  9. backgroundColor: {
  10. type: String,
  11. value: '#F7F7F7'
  12. },
  13. fontColor: {
  14. type: String,
  15. value: '#2c2b2b'
  16. }
  17. },
  18. data: {
  19. height: '',
  20. //默认值 默认显示左上角
  21. navbarData: {
  22. showCapsule: 1
  23. }
  24. },
  25. attached: function () {
  26. // 获取是否是通过分享进入的小程序
  27. this.setData({
  28. share: app.globalData.share
  29. })
  30. // 定义导航栏的高度 方便对齐
  31. this.setData({
  32. height: app.globalData.height
  33. })
  34. },
  35. methods: {
  36. // 返回上一页面
  37. _navback() {
  38. wx.navigateBack({
  39. delta: 1,
  40. fail(err) {
  41. console.log(err);
  42. wx.switchTab({
  43. url: '/pages/index/index',
  44. })
  45. }
  46. })
  47. },
  48. //返回到首页
  49. _backhome() {
  50. wx.switchTab({
  51. url: '/pages/index/index',
  52. })
  53. }
  54. }
  55. })