|
@@ -268,6 +268,14 @@ interface Props {
|
|
isRegisterType?: boolean
|
|
isRegisterType?: boolean
|
|
/** 是否开启 创意状态 搜索 */
|
|
/** 是否开启 创意状态 搜索 */
|
|
isConfiguredStatus?: boolean
|
|
isConfiguredStatus?: boolean
|
|
|
|
+ /** 注册城市 */
|
|
|
|
+ isIpCity?: boolean
|
|
|
|
+ /** 注册归属地 */
|
|
|
|
+ isIpProv?: boolean
|
|
|
|
+ /** 最新登录城市 */
|
|
|
|
+ isLoginIpCity?: boolean
|
|
|
|
+ /** 最新登录归属地 */
|
|
|
|
+ isLoginIpProv?: boolean
|
|
}
|
|
}
|
|
/**
|
|
/**
|
|
* 游戏数据系统 请求参数
|
|
* 游戏数据系统 请求参数
|
|
@@ -282,7 +290,7 @@ const QueryForm: React.FC<Props> = (props) => {
|
|
isSysUserName, isRechargeDate, LastRechargeDay, isBGGameClassify, isGameUserId, isSysUserId, isSysUserIds, isUserName, isUserId, isSelectRanking, isGameType, isConsumeDay, rechargeDay, isBeginDay, isType, isAdTTStatus, isUserEnterType, isServerName, isServerId, isServerDay, isAdTXStatus,
|
|
isSysUserName, isRechargeDate, LastRechargeDay, isBGGameClassify, isGameUserId, isSysUserId, isSysUserIds, 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, isRoleLevel, isCreateRoleDay, isLastActiveTime, isIsChange, isIsSendMail, isWeChatCompany, isWeChat,
|
|
payTimeDay, placeAnOrderDay, isPayIntervalTime, isActiveTypes, isNickname, isMobile, isRegIp, isIsAuth, isIsBindMobile, isIsRecharge, isUserStatus, isCreateRole, isRoleCount, isVipLevel, isRoleLevel, isCreateRoleDay, isLastActiveTime, isIsChange, isIsSendMail, isWeChatCompany, isWeChat,
|
|
isCustomerServerId, isOperatorId, isGsId, isServerIds, isRankingNum, isIsMergeServer, isIsParticipateMerge, isSuperParentGameId, isGameServerName, isIp, isDeviceType, isLoginType, isServerIdUn, isSourceServerName, isProjectId1, isDynamicCreativeId, isRemoveGame, isRemoveGameForSystem, isOrderLy, isAddCorpWechat,
|
|
isCustomerServerId, isOperatorId, isGsId, isServerIds, isRankingNum, isIsMergeServer, isIsParticipateMerge, isSuperParentGameId, isGameServerName, isIp, isDeviceType, isLoginType, isServerIdUn, isSourceServerName, isProjectId1, isDynamicCreativeId, isRemoveGame, isRemoveGameForSystem, isOrderLy, isAddCorpWechat,
|
|
- isWakeUp, isUserPhoneStatus, isBackStatus, isGameDimension, isUserLastRegTime, isUserLastRegAgentId, isUserLastPitcherId, isRechargeAmountWithin24h, isRechargeTotalAmountWithin24h, isRegisterType, isConfiguredStatus
|
|
|
|
|
|
+ isWakeUp, isUserPhoneStatus, isBackStatus, isGameDimension, isUserLastRegTime, isUserLastRegAgentId, isUserLastPitcherId, isRechargeAmountWithin24h, isRechargeTotalAmountWithin24h, isRegisterType, isConfiguredStatus, isIpCity, isIpProv, isLoginIpCity, isLoginIpProv
|
|
} = props
|
|
} = props
|
|
const [form] = Form.useForm()
|
|
const [form] = Form.useForm()
|
|
const parentId = Form.useWatch('parentId', form)
|
|
const parentId = Form.useWatch('parentId', form)
|
|
@@ -1773,6 +1781,20 @@ const QueryForm: React.FC<Props> = (props) => {
|
|
</Space>
|
|
</Space>
|
|
</Form.Item></Col>}
|
|
</Form.Item></Col>}
|
|
|
|
|
|
|
|
+ {/* isIpCity, isIpProv, isLoginIpCity, isLoginIpProv */}
|
|
|
|
+ {isIpCity && <Col><Form.Item name='ipCity'>
|
|
|
|
+ <Input placeholder="注册城市" allowClear style={{ width: 140 }} />
|
|
|
|
+ </Form.Item></Col>}
|
|
|
|
+ {isIpProv && <Col><Form.Item name='ipProv'>
|
|
|
|
+ <Input placeholder="注册归属地" allowClear style={{ width: 140 }} />
|
|
|
|
+ </Form.Item></Col>}
|
|
|
|
+ {isLoginIpCity && <Col><Form.Item name='loginIpCity'>
|
|
|
|
+ <Input placeholder="最新登录城市" allowClear style={{ width: 140 }} />
|
|
|
|
+ </Form.Item></Col>}
|
|
|
|
+ {isLoginIpProv && <Col><Form.Item name='loginIpProv'>
|
|
|
|
+ <Input placeholder="最新登录归属地" allowClear style={{ width: 140 }} />
|
|
|
|
+ </Form.Item></Col>}
|
|
|
|
+
|
|
<Col>
|
|
<Col>
|
|
<Space>
|
|
<Space>
|
|
<Button type="primary" htmlType="submit">搜索</Button>
|
|
<Button type="primary" htmlType="submit">搜索</Button>
|