diff --git a/src/pages/BlockUser/index.jsx b/src/pages/BlockUser/index.jsx index 4721a1b..4bf03d2 100644 --- a/src/pages/BlockUser/index.jsx +++ b/src/pages/BlockUser/index.jsx @@ -42,7 +42,14 @@ const BlockUserContent = (props) => { title: "封禁内容", dataIndex: "type", key: "type", - render: (data) =>

{data === 0 && "主播发帖封禁"}

, + render: (data) => ( +
+

{data === 0 && "限制广场发帖"}

+

{data === 1 && "限制空间内发布免费帖"}

+

{data === 2 && "限制空间内发布付费帖"}

+

{data === 3 && "限制空间内发帖"}

+
+ ), }, { title: "起始时间", @@ -367,7 +374,10 @@ const BlockUserContent = (props) => { outline: "none", }} > - + + + + { return (
- {data.coins &&

{data.coins}金币

} - {data.money &&

¥{data.money / 100}

} + {data.coins !== undefined &&

{data.coins}金币

} + {data.money !== undefined &&

¥{data.money / 100}

}
); }, @@ -60,7 +60,7 @@ export default function OrdersQuerry() { 用户id: {data.user_user_id}

- {data.streamer_user_id && ( + {data.streamer_user_id !== 0 && (

主播id: {data.streamer_user_id}