search.js 236 B

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