|
@@ -67,8 +67,9 @@ function TargetIng(props: Props) {
|
|
|
<div className={style.center}>
|
|
|
<Spin spinning={getsysTargeting.loading}>
|
|
|
<div className={style.centerContent}>
|
|
|
- {queryForm?.sysTargetingId ? <>
|
|
|
- {accountCreateLogs?.some((item: any) => item?.customAudienceList?.length > 0) ? <>
|
|
|
+ {queryForm?.sysTargeting ? <>
|
|
|
+ {accountCreateLogs?.some((item: any) => item?.customAudienceList?.length > 0) ?
|
|
|
+ <>
|
|
|
{queryForm.sysTargeting && <Popover
|
|
|
content={<div className={style.popover}>
|
|
|
<TargetingTooltip data={queryForm.sysTargeting} geoLocationList={geoLocationList} modelList={modelList} />
|
|
@@ -110,7 +111,9 @@ function TargetIng(props: Props) {
|
|
|
return null
|
|
|
}
|
|
|
})}
|
|
|
- </> : <>
|
|
|
+ </>
|
|
|
+ :
|
|
|
+ <>
|
|
|
<div><strong>定向名称:</strong> <span style={{color:"#5a5a5a"}}>{queryForm?.sysTargeting?.targetingName}</span></div>
|
|
|
<div><strong>定向描述:</strong> <span style={{color:"#5a5a5a"}}>{queryForm?.sysTargeting?.description || '<空>'}</span></div>
|
|
|
<TargetingTooltip data={queryForm?.sysTargeting} geoLocationList={geoLocationList} modelList={modelList} />
|