FriendsItem.ts 644 B

1234567891011121314151617181920212223242526
  1. const { ccclass, property } = cc._decorator;
  2. @ccclass
  3. export default class FriendsItem extends cc.Component{
  4. @property({displayName: '头像', type: cc.Sprite})
  5. private sp_headPhoto: cc.Sprite = null;
  6. @property({displayName: '昵称', type: cc.Label})
  7. private lbl_name: cc.Label = null;
  8. @property({displayName: '看视频次数', type: cc.Label})
  9. private lbl_watchVideoTimes: cc.Label = null;
  10. @property({displayName: '累计贡献', type: cc.Label})
  11. private lbl_totalCon: cc.Label = null;
  12. start(){
  13. }
  14. public setItemData(data)
  15. {
  16. //this.InitUI(data);
  17. }
  18. }