ShareInfos.js 1.1 KB

12345678910111213141516171819202122
  1. var ShareInfos = cc.Class({
  2. extends: cc.Component,
  3. statics:{
  4. init:function()
  5. {
  6. this.Infos = [
  7. {text:"【有人@你】我在这个游戏里面挣了一个亿",url:"https://paopao.talkyun.com.cn/yiyi/1.jpg"},
  8. {text:"迎娶白富美,开着法拉利。这才是我想要的人生巅峰",url:"https://paopao.talkyun.com.cn/yiyi/2.jpg"},
  9. {text:"开局几万块,看我如何打遍商界无敌手。",url:"https://paopao.talkyun.com.cn/yiyi/3.jpg"},
  10. {text:"不看不知道,我的资产在好友中排名居然是。。。。",url:"https://paopao.talkyun.com.cn/yiyi/3.jpg"},
  11. {text:"空姐和超模同时看上我,我该如何选择?",url:"https://paopao.talkyun.com.cn/yiyi/4.jpg"},
  12. {text:"2019我定了一个小目标,没想到这么快就完成了。",url:"https://paopao.talkyun.com.cn/yiyi/5.jpg"},
  13. ];
  14. },
  15. getShareInfos:function(index){
  16. return this.Infos[index];
  17. },
  18. },
  19. });
  20. module.exports = ShareInfos;