search.js 701 B

12345678910111213141516171819202122232425262728293031
  1. // pages/search/search.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. hotData:[
  8. {title:"宝宝巴士",icon:"icon-top",color:"text-orange"},
  9. {title:"孟鹤堂",icon:"icon-refresharrow",color:"text-red"},
  10. {title:"三体",icon:"icon-top",color:"text-red"},
  11. {title:"龙王殿",icon:"icon-refresharrow",color:"text-red"},
  12. {title:"儿童恐龙故事",icon:"icon-top",color:"text-red"},
  13. {title:"儿童版三国演义",icon:"icon-refresharrow",color:"text-red"},
  14. ]
  15. },
  16. /**
  17. * 生命周期函数--监听页面加载
  18. */
  19. onLoad: function (options) {
  20. },
  21. /**
  22. * 用户点击右上角分享
  23. */
  24. onShareAppMessage: function () {
  25. }
  26. })