|
@@ -133,7 +133,11 @@ interface Props {
|
|
/** 是否开启 计划名称 搜索 */
|
|
/** 是否开启 计划名称 搜索 */
|
|
isProjectName?: boolean
|
|
isProjectName?: boolean
|
|
/** 是否开启 广告ID 搜索 */
|
|
/** 是否开启 广告ID 搜索 */
|
|
|
|
+ isProjectId1?: boolean
|
|
|
|
+ /** 是否开启 广告ID 搜索 */
|
|
isPromotionId?: boolean
|
|
isPromotionId?: boolean
|
|
|
|
+ /** 是否开启 计划ID 搜索 */
|
|
|
|
+ isPromotionId1?: boolean
|
|
/** 是否开启 广告名称 搜索 */
|
|
/** 是否开启 广告名称 搜索 */
|
|
isPromotionName?: boolean
|
|
isPromotionName?: boolean
|
|
/** 是否开启 头条广告状态 搜索 */
|
|
/** 是否开启 头条广告状态 搜索 */
|
|
@@ -218,10 +222,10 @@ const QueryForm: React.FC<Props> = (props) => {
|
|
/**************************/
|
|
/**************************/
|
|
const {
|
|
const {
|
|
onChange, initialValues, isSource, isAccount, isAccountId, isCompanyId, isAgentKey, isAgentName, isCpId, isCpName, isCpOrderId, isCpStatus, isCreateDay, isDevice, isGameName, isRechargeGameName, isGameId, isGameIds, isOrderGameId, isGameRoleId,
|
|
onChange, initialValues, isSource, isAccount, isAccountId, isCompanyId, isAgentKey, isAgentName, isCpId, isCpName, isCpOrderId, isCpStatus, isCreateDay, isDevice, isGameName, isRechargeGameName, isGameId, isGameIds, isOrderGameId, isGameRoleId,
|
|
- isGameRoleName, isFirstRecharge, isSwitch, isMerchantNo, isOrderId, isMerchantOrderNo, isPayStatus, isPayWay, isProductName, isRegAgent, isAgentId, isPutAgent, isRegDay, isOs, isParentId, isProjectId, isProjectName, isPromotionId, isPromotionName,
|
|
|
|
|
|
+ isGameRoleName, isFirstRecharge, isSwitch, isMerchantNo, isOrderId, isMerchantOrderNo, isPayStatus, isPayWay, isProductName, isRegAgent, isAgentId, isPutAgent, isRegDay, isOs, isParentId, isProjectId, isProjectName, isPromotionId, isPromotionId1, isPromotionName,
|
|
isSysUserName, isRechargeDate, isBGGameClassify, isGameUserId, isSysUserId, isUserName, isUserId, isSelectRanking, isGameType, isConsumeDay, rechargeDay, isBeginDay, isType, isAdTTStatus, isUserEnterType, isServerName, isServerId, isServerDay, isAdTXStatus,
|
|
isSysUserName, isRechargeDate, isBGGameClassify, isGameUserId, isSysUserId, isUserName, isUserId, isSelectRanking, isGameType, isConsumeDay, rechargeDay, isBeginDay, isType, isAdTTStatus, isUserEnterType, isServerName, isServerId, isServerDay, isAdTXStatus,
|
|
payTimeDay, placeAnOrderDay, isPayIntervalTime, isActiveTypes, isNickname, isMobile, isRegIp, isIsAuth, isIsBindMobile, isIsRecharge, isUserStatus, isCreateRole, isRoleCount, isVipLevel, isCreateRoleDay, isIsChange, isIsSendMail, isWeChatCompany, isWeChat,
|
|
payTimeDay, placeAnOrderDay, isPayIntervalTime, isActiveTypes, isNickname, isMobile, isRegIp, isIsAuth, isIsBindMobile, isIsRecharge, isUserStatus, isCreateRole, isRoleCount, isVipLevel, isCreateRoleDay, isIsChange, isIsSendMail, isWeChatCompany, isWeChat,
|
|
- isCustomerServerId, isOperatorId, isGsId, isServerIds, isRankingNum, isIsMergeServer, isSuperParentGameId, isGameServerName, isIp, isDeviceType, isLoginType, isServerIdUn, isSourceServerName
|
|
|
|
|
|
+ isCustomerServerId, isOperatorId, isGsId, isServerIds, isRankingNum, isIsMergeServer, isSuperParentGameId, isGameServerName, isIp, isDeviceType, isLoginType, isServerIdUn, isSourceServerName, isProjectId1
|
|
} = props
|
|
} = props
|
|
const [form] = Form.useForm()
|
|
const [form] = Form.useForm()
|
|
const parentId = Form.useWatch('parentId', form)
|
|
const parentId = Form.useWatch('parentId', form)
|
|
@@ -579,9 +583,17 @@ const QueryForm: React.FC<Props> = (props) => {
|
|
<Input placeholder="广告名称" allowClear style={{ width: 140 }} />
|
|
<Input placeholder="广告名称" allowClear style={{ width: 140 }} />
|
|
</Form.Item></Col>}
|
|
</Form.Item></Col>}
|
|
{/* 广告ID */}
|
|
{/* 广告ID */}
|
|
|
|
+ {isProjectId1 && <Col><Form.Item name='projectId'>
|
|
|
|
+ <Input placeholder="广告ID" allowClear style={{ width: 140 }} />
|
|
|
|
+ </Form.Item></Col>}
|
|
|
|
+ {/* 广告ID */}
|
|
{isPromotionId && <Col><Form.Item name='promotionId'>
|
|
{isPromotionId && <Col><Form.Item name='promotionId'>
|
|
<Input placeholder="广告ID" allowClear style={{ width: 140 }} />
|
|
<Input placeholder="广告ID" allowClear style={{ width: 140 }} />
|
|
</Form.Item></Col>}
|
|
</Form.Item></Col>}
|
|
|
|
+ {/* 计划ID */}
|
|
|
|
+ {isPromotionId1 && <Col><Form.Item name='promotionId'>
|
|
|
|
+ <Input placeholder="计划ID" allowClear style={{ width: 140 }} />
|
|
|
|
+ </Form.Item></Col>}
|
|
{/* 广告状态 */}
|
|
{/* 广告状态 */}
|
|
{isAdTTStatus && <Col><Form.Item name='status'>
|
|
{isAdTTStatus && <Col><Form.Item name='status'>
|
|
<Select
|
|
<Select
|