|
|
@@ -39,6 +39,8 @@ interface Props {
|
|
|
isPricing?: boolean,
|
|
|
/** 是否开启 广告状态 搜索 */
|
|
|
isStatus?: boolean,
|
|
|
+ /** 是否开启 定向智能状态 搜索 */
|
|
|
+ isSmartTargetingStatus?: boolean,
|
|
|
/** 是否开启 删除状态 搜索 */
|
|
|
isDeleted?: boolean,
|
|
|
/** 是否开启 是否深度优化 搜索 */
|
|
|
@@ -91,7 +93,7 @@ const QueryFormNovel: React.FC<Props> = (props) => {
|
|
|
/**************************/
|
|
|
const { initialState } = useModel('@@initialState');
|
|
|
const {
|
|
|
- onChange, initialValues, isAccountId, isAdgroupName, isAdgroupId, isDynamicCreativeName, isDynamicCreativeId, isMemo, isRemark, isBookNameList, isCpaBid, isPutUserId, isPutUserIdList, isPricing, isStatus, isMarketingGoal, isMarketingTargetType, isPromotedObjectType, isPromotedObjectName, isOptimizationGoal, isDeliveryMode, isDeleted, isDeepConversionSpec, isConfiguredStatus, day1, day2, day3,
|
|
|
+ onChange, initialValues, isAccountId, isAdgroupName, isAdgroupId, isDynamicCreativeName, isDynamicCreativeId, isMemo, isRemark, isBookNameList, isCpaBid, isPutUserId, isPutUserIdList, isPricing, isStatus, isSmartTargetingStatus, isMarketingGoal, isMarketingTargetType, isPromotedObjectType, isPromotedObjectName, isOptimizationGoal, isDeliveryMode, isDeleted, isDeepConversionSpec, isConfiguredStatus, day1, day2, day3,
|
|
|
isCostTotalMin, isThousandDisplayPriceTotalMin, isConversionsCountTotalMin, isIncomeRoi1, isRegCost, isRegCostPla, isCpc
|
|
|
} = props
|
|
|
const [form] = Form.useForm()
|
|
|
@@ -228,6 +230,23 @@ const QueryFormNovel: React.FC<Props> = (props) => {
|
|
|
/>
|
|
|
</Form.Item></Col>}
|
|
|
|
|
|
+ {/* 定向智能状态 */}
|
|
|
+ {isSmartTargetingStatus && <Col><Form.Item name='smartTargetingStatus'>
|
|
|
+ <Select
|
|
|
+ placeholder='定向智能状态'
|
|
|
+ style={{ width: 130 }}
|
|
|
+ showSearch
|
|
|
+ filterOption={(input: any, option: any) =>
|
|
|
+ (option!.children as unknown as string).toLowerCase().includes(input.toLowerCase())
|
|
|
+ }
|
|
|
+ allowClear
|
|
|
+ >
|
|
|
+ <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>
|
|
|
+ </Form.Item></Col>}
|
|
|
+
|
|
|
{/* 营销目的 */}
|
|
|
{isMarketingGoal && <Col><Form.Item name='marketingGoal'>
|
|
|
<Select
|