空间管理增加空间人数、铁粉人数、超粉人数字段
This commit is contained in:
parent
fc1cb95324
commit
ba1b78ca01
|
@ -136,6 +136,19 @@ const StreamerSpaceContent = () => {
|
|||
最后发帖时间:
|
||||
<span className="text-red-400">{data.last_zone_moment_ct}</span>
|
||||
</p>
|
||||
<hr />
|
||||
<p>
|
||||
空间人数:
|
||||
<span className="text-red-400">{data?.entrant_num}</span>
|
||||
</p>
|
||||
<p>
|
||||
铁粉人数:
|
||||
<span className="text-red-400">{data?.ironfan_num}</span>
|
||||
</p>
|
||||
<p>
|
||||
超粉人数:
|
||||
<span className="text-red-400">{data?.superfan_num}</span>
|
||||
</p>
|
||||
</div>
|
||||
),
|
||||
};
|
||||
|
@ -364,6 +377,9 @@ const StreamerSpaceContent = () => {
|
|||
last_zone_moment_ct: new Date(
|
||||
item?.last_zone_moment_ct * 1000
|
||||
).toLocaleString(),
|
||||
entrant_num: item.entrant_num,
|
||||
ironfan_num: item.ironfan_num,
|
||||
superfan_num: item.superfan_num,
|
||||
},
|
||||
ratio: {
|
||||
zone_third_partner: item.zone_third_partner,
|
||||
|
|
Loading…
Reference in New Issue