// 头像组件:纯 emoji 圆形头像(无二进制图片)。 // props: avatar(emoji 字符串), size(rpx, 默认 120), bg(背景色, 默认 gold-soft) Component({ properties: { avatar: { type: String, value: '💪' }, size: { type: Number, value: 120 }, bg: { type: String, value: 'rgba(217,179,108,0.12)' } }, data: { fontSize: 60 }, observers: { size: function (size) { this.setData({ fontSize: Math.round(size * 0.5) }); } } });