|
@@ -165,6 +165,24 @@ const Ad: React.FC<ADQV3.AdProps> = ({ userId, creativeHandle }) => {
|
|
})}
|
|
})}
|
|
</Select>
|
|
</Select>
|
|
</Col>
|
|
</Col>
|
|
|
|
+ <Col>
|
|
|
|
+ <Select
|
|
|
|
+ placeholder='定向智能状态'
|
|
|
|
+ style={{ width: 130 }}
|
|
|
|
+ showSearch
|
|
|
|
+ filterOption={(input: any, option: any) =>
|
|
|
|
+ (option!.children as unknown as string).toLowerCase().includes(input.toLowerCase())
|
|
|
|
+ }
|
|
|
|
+ allowClear
|
|
|
|
+ onChange={(value: any) => {
|
|
|
|
+ set_queryFrom({ ...queryFrom, smartTargetingStatus: value })
|
|
|
|
+ }}
|
|
|
|
+ >
|
|
|
|
+ <Select.Option value={'SMART_TARGETING_AUTO'}>开启</Select.Option>
|
|
|
|
+ <Select.Option value={'SMART_TARGETING_NONE'}>关闭</Select.Option>
|
|
|
|
+ <Select.Option value={'SMART_TARGETING_NULL'}>未同步的空状态</Select.Option>
|
|
|
|
+ </Select>
|
|
|
|
+ </Col>
|
|
<Col>
|
|
<Col>
|
|
<Input
|
|
<Input
|
|
placeholder='广告名称'
|
|
placeholder='广告名称'
|