search.js 551 B

1234567891011121314151617
  1. // pages/search/search.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. hotData: [
  8. { title: "宝宝巴士", icon: "icon-jiantouUp", color: "text-orange" },
  9. { title: "孟鹤堂", icon: "icon-jiantouUp", color: "text-red" },
  10. { title: "三体", icon: "icon-jiantouDown", color: "text-green" },
  11. { title: "龙王殿", icon: "icon-jiantouUp", color: "text-red" },
  12. { title: "儿童恐龙故事", icon: "icon-jiantouDown", color: "text-red" },
  13. { title: "儿童版三国演义", icon: "icon-jiantouUp", color: "text-red" },
  14. ]
  15. }
  16. })