search.js 496 B

1234567891011121314151617181920212223242526272829303132333435
  1. //Component Object
  2. Component({
  3. properties: {
  4. myProperty:{
  5. type:String,
  6. value:'',
  7. observer: function(){}
  8. },
  9. },
  10. data: {
  11. },
  12. methods: {
  13. goToSearch(){
  14. wx.navigateTo({
  15. url: '/pages/search/search',
  16. })
  17. }
  18. },
  19. created: function(){
  20. },
  21. attached: function(){
  22. },
  23. ready: function(){
  24. },
  25. moved: function(){
  26. },
  27. detached: function(){
  28. },
  29. });