search.js 377 B

123456789101112131415161718192021
  1. //Component Object
  2. Component({
  3. properties: {
  4. myProperty:{
  5. type:String,
  6. value:'',
  7. observer: function(){}
  8. },
  9. },
  10. data: {
  11. disabled:true,
  12. isshow:false,
  13. },
  14. methods: {
  15. goToSearch(){
  16. wx.navigateTo({
  17. url: '/pages/search/search',
  18. })
  19. }
  20. },
  21. });