header.js 547 B

123456789101112131415161718192021222324252627
  1. import $ from './../../utils/Tool'
  2. Component({
  3. properties:{
  4. customClass:{
  5. type:Boolean,
  6. value:false
  7. },
  8. },
  9. lifetimes: {
  10. attached: function() {
  11. // 在组件实例进入页面节点树时执行
  12. },
  13. detached: function() {
  14. // 在组件实例被从页面节点树移除时执行
  15. this.setData({"customClass":false})
  16. },
  17. },
  18. options: {
  19. addGlobalClass: true,
  20. multipleSlots: true
  21. },
  22. data: {
  23. StatusBar: $.store.get('StatusBar'),
  24. CustomBar: $.store.get('CustomBar')
  25. }
  26. })