修复bug
This commit is contained in:
parent
43a04ea427
commit
54c7c213a3
|
@ -334,7 +334,6 @@ const StreamerSpaceContent = () => {
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
const detailData = await detailResponse.json();
|
const detailData = await detailResponse.json();
|
||||||
console.log(detailData);
|
|
||||||
if (detailData.ret === -1) {
|
if (detailData.ret === -1) {
|
||||||
alert(detailData.msg);
|
alert(detailData.msg);
|
||||||
return;
|
return;
|
||||||
|
@ -535,7 +534,6 @@ const StreamerSpaceContent = () => {
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
const _data = await _response.json();
|
const _data = await _response.json();
|
||||||
console.log(_data);
|
|
||||||
if (_data.ret === -1) {
|
if (_data.ret === -1) {
|
||||||
alert(_data.msg);
|
alert(_data.msg);
|
||||||
return;
|
return;
|
||||||
|
@ -648,7 +646,6 @@ const StreamerSpaceContent = () => {
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
const _data = await _response.json();
|
const _data = await _response.json();
|
||||||
console.log(_data);
|
|
||||||
if (_data.ret === -1) {
|
if (_data.ret === -1) {
|
||||||
alert(_data.msg);
|
alert(_data.msg);
|
||||||
return;
|
return;
|
||||||
|
@ -676,7 +673,6 @@ const StreamerSpaceContent = () => {
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
const detailData = await detailResponse.json();
|
const detailData = await detailResponse.json();
|
||||||
console.log(detailData);
|
|
||||||
if (detailData.ret === -1) {
|
if (detailData.ret === -1) {
|
||||||
alert(detailData.msg);
|
alert(detailData.msg);
|
||||||
return;
|
return;
|
||||||
|
@ -875,6 +871,7 @@ const StreamerSpaceContent = () => {
|
||||||
</Form>
|
</Form>
|
||||||
</Modal>
|
</Modal>
|
||||||
{/* 添加代运营Modal是否可见 */}
|
{/* 添加代运营Modal是否可见 */}
|
||||||
|
{isAddAgencyModalOpen && (
|
||||||
<Modal
|
<Modal
|
||||||
footer={null}
|
footer={null}
|
||||||
open={isAddAgencyModalOpen}
|
open={isAddAgencyModalOpen}
|
||||||
|
@ -890,7 +887,9 @@ const StreamerSpaceContent = () => {
|
||||||
/>
|
/>
|
||||||
<div className="flex flex-col justify-between ml-2">
|
<div className="flex flex-col justify-between ml-2">
|
||||||
<p className="font-bold">ID:{defaultValues?.baseInfo?.id}</p>
|
<p className="font-bold">ID:{defaultValues?.baseInfo?.id}</p>
|
||||||
<p className="font-bold">昵称:{defaultValues?.baseInfo?.name}</p>
|
<p className="font-bold">
|
||||||
|
昵称:{defaultValues?.baseInfo?.name}
|
||||||
|
</p>
|
||||||
<p className="font-bold">
|
<p className="font-bold">
|
||||||
创建时间:{defaultValues?.baseInfo?.ct}
|
创建时间:{defaultValues?.baseInfo?.ct}
|
||||||
</p>
|
</p>
|
||||||
|
@ -1002,7 +1001,9 @@ const StreamerSpaceContent = () => {
|
||||||
</Form>
|
</Form>
|
||||||
</div>
|
</div>
|
||||||
</Modal>
|
</Modal>
|
||||||
|
)}
|
||||||
{/* 编辑代运营Modal是否可见 */}
|
{/* 编辑代运营Modal是否可见 */}
|
||||||
|
{isAgencyModalOpen && (
|
||||||
<Modal
|
<Modal
|
||||||
footer={null}
|
footer={null}
|
||||||
open={isAgencyModalOpen}
|
open={isAgencyModalOpen}
|
||||||
|
@ -1018,7 +1019,9 @@ const StreamerSpaceContent = () => {
|
||||||
/>
|
/>
|
||||||
<div className="flex flex-col justify-between ml-2">
|
<div className="flex flex-col justify-between ml-2">
|
||||||
<p className="font-bold">ID:{defaultValues?.baseInfo?.id}</p>
|
<p className="font-bold">ID:{defaultValues?.baseInfo?.id}</p>
|
||||||
<p className="font-bold">昵称:{defaultValues?.baseInfo?.name}</p>
|
<p className="font-bold">
|
||||||
|
昵称:{defaultValues?.baseInfo?.name}
|
||||||
|
</p>
|
||||||
<p className="font-bold">
|
<p className="font-bold">
|
||||||
创建时间:{defaultValues?.baseInfo?.ct}
|
创建时间:{defaultValues?.baseInfo?.ct}
|
||||||
</p>
|
</p>
|
||||||
|
@ -1090,7 +1093,8 @@ const StreamerSpaceContent = () => {
|
||||||
name="sharing_ratio"
|
name="sharing_ratio"
|
||||||
label="代运营分成比例"
|
label="代运营分成比例"
|
||||||
initialValue={
|
initialValue={
|
||||||
defaultValues?.ratio?.zone_third_partner?.sharing_ratio * 100
|
defaultValues?.ratio?.zone_third_partner?.sharing_ratio *
|
||||||
|
100
|
||||||
}
|
}
|
||||||
rules={[
|
rules={[
|
||||||
{
|
{
|
||||||
|
@ -1148,6 +1152,7 @@ const StreamerSpaceContent = () => {
|
||||||
</Form>
|
</Form>
|
||||||
</div>
|
</div>
|
||||||
</Modal>
|
</Modal>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue