search.js 775 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. // components/search/search.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. iconUrl: {
  8. type: String,
  9. value: "http://cloud.file.futurestack.cn/MldI5PBNt7/20210922/6dcc8u044135.png",
  10. },
  11. placeholder: {
  12. type: String,
  13. value: "请输入关键词",
  14. },
  15. btnBgColor: {
  16. type: String,
  17. value: "#0abf58",
  18. },
  19. btnText: {
  20. type: String,
  21. value: "搜索",
  22. }
  23. },
  24. /**
  25. * 组件的初始数据
  26. */
  27. data: {
  28. title:''
  29. },
  30. /**
  31. * 组件的方法列表
  32. */
  33. methods: {
  34. toSearch() {
  35. this.triggerEvent("search", this.data.title);
  36. }
  37. }
  38. })