修改主播入驻表的mid为user_id

This commit is contained in:
“jueweijue” 2023-12-25 10:49:10 +08:00
parent 763bccf5d1
commit 38649771c1
2 changed files with 4 additions and 4 deletions

View File

@ -47,5 +47,5 @@
"devDependencies": { "devDependencies": {
"tailwindcss": "^3.3.5" "tailwindcss": "^3.3.5"
}, },
"proxy": "https://api.wishpal.cn" "proxy": "https://api.tiefen.fun"
} }

View File

@ -21,7 +21,7 @@ const JoinContent = (props) => {
render: (data) => ( render: (data) => (
<div> <div>
<p> <p>
mid<span className="text-red-400">{data.mid}</span> ID<span className="text-red-400">{data.id}</span>
</p> </p>
<p> <p>
昵称<span className="text-red-400">{data.name}</span> 昵称<span className="text-red-400">{data.name}</span>
@ -41,7 +41,7 @@ const JoinContent = (props) => {
<p> <p>
邀请人 邀请人
<span className="text-red-400"> <span className="text-red-400">
{data.inviter ? data.inviter : "无"} {data.inviter.length > 0 ? data.inviter[0] : "无"}
</span> </span>
</p> </p>
</div> </div>
@ -297,7 +297,7 @@ const JoinContent = (props) => {
key: index, key: index,
id: item.id, id: item.id,
info: { info: {
mid: item.mid, id: item.user_id,
name: item.name, name: item.name,
fans: item.fans, fans: item.fans,
platforms: item.main_platform, platforms: item.main_platform,