Header.js 379 B

1234567891011121314151617181920212223242526
  1. Component({
  2. properties: {
  3. text: {
  4. type: String,
  5. value: '标题'
  6. },
  7. url:{
  8. type: Boolean,
  9. value: false
  10. },
  11. isLeftIcon:{
  12. type: Boolean,
  13. value: true
  14. },
  15. },
  16. methods: {
  17. goBack(){
  18. if(!this.data.url){
  19. this.triggerEvent('back');
  20. wx.navigateBack({
  21. delta: 1
  22. })
  23. }
  24. }
  25. }
  26. })