1234567891011121314151617 |
- // pages/search/search.js
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- hotData: [
- { title: "宝宝巴士", icon: "icon-jiantouUp", color: "text-orange" },
- { title: "孟鹤堂", icon: "icon-jiantouUp", color: "text-red" },
- { title: "三体", icon: "icon-jiantouDown", color: "text-green" },
- { title: "龙王殿", icon: "icon-jiantouUp", color: "text-red" },
- { title: "儿童恐龙故事", icon: "icon-jiantouDown", color: "text-red" },
- { title: "儿童版三国演义", icon: "icon-jiantouUp", color: "text-red" },
- ]
- }
- })
|