hot.js 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. export const hotInit = (that) => {
  2. that.setData({
  3. hotData: {
  4. title: '热门',
  5. imgUrls: [
  6. 'http://img02.tooopen.com/images/20150928/tooopen_sy_143912755726.jpg',
  7. 'http://img06.tooopen.com/images/20160818/tooopen_sy_175866434296.jpg',
  8. 'http://img06.tooopen.com/images/20160818/tooopen_sy_175833047715.jpg'
  9. ],
  10. indicatorDots: true,
  11. autoplay: true,
  12. interval: 5000,
  13. duration: 700,
  14. circular: true,
  15. hotSearch: '鹅鹅鹅',
  16. wareCards:[
  17. {
  18. title:"铺满金色巴掌的水泥道",
  19. grade:"一年级 上学期",
  20. img: "../../static/image/timg.jpg",
  21. plays: "1",
  22. likes: "2"
  23. },
  24. {
  25. title:"铺满金色巴掌的水泥道",
  26. grade:"一年级 上学期",
  27. img: "../../static/image/timg.jpg",
  28. plays: "12345",
  29. likes: "54321"
  30. },
  31. {
  32. title:"铺满金色巴掌的水泥道",
  33. grade:"一年级 上学期",
  34. img: "../../static/image/timg.jpg",
  35. plays: "12345",
  36. likes: "54321"
  37. },
  38. {
  39. title:"铺满金色巴掌的水泥道",
  40. grade:"一年级 上学期",
  41. img: "../../static/image/timg.jpg",
  42. plays: "12345",
  43. likes: "54321"
  44. },
  45. {
  46. title:"铺满金色巴掌的水泥道",
  47. grade:"一年级 上学期",
  48. img: "../../static/image/timg.jpg",
  49. plays: "12345",
  50. likes: "54321"
  51. },
  52. {
  53. title:"铺满金色巴掌的水泥道",
  54. grade:"一年级 上学期",
  55. img: "../../static/image/timg.jpg",
  56. plays: "12345",
  57. likes: "54321"
  58. },
  59. {
  60. title:"铺满金色巴掌的水泥道",
  61. grade:"一年级 上学期",
  62. img: "../../static/image/timg.jpg",
  63. plays: "12345",
  64. likes: "54321"
  65. },
  66. {
  67. title:"铺满金色巴掌的水泥道",
  68. grade:"一年级 上学期",
  69. img: "../../static/image/timg.jpg",
  70. plays: "12345",
  71. likes: "54321"
  72. },
  73. {
  74. title:"铺满金色巴掌的水泥道",
  75. grade:"一年级 上学期",
  76. img: "../../static/image/timg.jpg",
  77. plays: "12345",
  78. likes: "54321"
  79. },
  80. {
  81. title:"铺满金色巴掌的水泥道",
  82. grade:"一年级 上学期",
  83. img: "../../static/image/timg.jpg",
  84. plays: "12345",
  85. likes: "54321"
  86. },
  87. {
  88. title:"铺满金色巴掌的水泥道",
  89. grade:"一年级 上学期",
  90. img: "../../static/image/timg.jpg",
  91. plays: "12345",
  92. likes: "54321"
  93. }
  94. ]
  95. }
  96. }),
  97. that.searchHandler = () => {
  98. console.log('搜索按钮')
  99. console.log(that.data.hotInput);
  100. },
  101. that.inputHandler = (e) => {
  102. that.setData({
  103. hotInput: e.detail.value
  104. });
  105. console.log(that.data.hotInput)
  106. }
  107. }