allGiftList.js 719 B

12345678910111213141516171819202122232425262728
  1. // allGiftList.js
  2. //获取应用实例
  3. var giftList = [
  4. { id: 1, src: "../../images/goods_4.png", intro: "年会佳品", title: "Kindle Paperwhite3", price: 320 },
  5. { id: 2, src: "../../images/goods_5.png", intro: "年会佳品", title: "小米智能电饭煲", price: 320 },
  6. { id: 3, src: "../../images/goods_6.png", intro: "年会佳品", title: "米家智能摄像头云台版", price: 320 },
  7. { id: 4, src: "../../images/goods_7.png", intro: "年会佳品", title: "小米智能", price: 320 }
  8. ];
  9. var app = getApp()
  10. Page({
  11. data: {
  12. motto: 'Hello World',
  13. userInfo: {},
  14. search: {
  15. placeholder: "输入搜索关键字"
  16. },
  17. giftList: giftList,
  18. page: 1,
  19. hasMore: true
  20. }
  21. })