|
@@ -44,6 +44,7 @@ interface Props {
|
|
/** 是否开启 角色创建日期 搜索 */
|
|
/** 是否开启 角色创建日期 搜索 */
|
|
isCreateRoleDay?: {
|
|
isCreateRoleDay?: {
|
|
ranges?: any
|
|
ranges?: any
|
|
|
|
+ placeholder?: [string, string]
|
|
}
|
|
}
|
|
/** 是否开启 最近活跃时间 搜索 */
|
|
/** 是否开启 最近活跃时间 搜索 */
|
|
isLastActiveTime?: {
|
|
isLastActiveTime?: {
|
|
@@ -281,6 +282,8 @@ interface Props {
|
|
isXjRole?: boolean
|
|
isXjRole?: boolean
|
|
/** 是否 备注 查找 */
|
|
/** 是否 备注 查找 */
|
|
isRemark?: boolean
|
|
isRemark?: boolean
|
|
|
|
+ /** 是否 公会 查找 */
|
|
|
|
+ isCountry?: boolean
|
|
}
|
|
}
|
|
/**
|
|
/**
|
|
* 游戏数据系统 请求参数
|
|
* 游戏数据系统 请求参数
|
|
@@ -290,7 +293,7 @@ const QueryForm: React.FC<Props> = (props) => {
|
|
|
|
|
|
/**************************/
|
|
/**************************/
|
|
const {
|
|
const {
|
|
- onChange, initialValues, isSource, isAccount, isAccountId, isAccountIds, isCompanyId, isAgentKey, isAgentName, isCpId, isCpName, isCpOrderId, isCpStatus, isCreateDay, isCreateDayXz, isDevice, isGameName, isRechargeGameName, isGameId, isGameIds, isOrderGameId, isGameRoleId,
|
|
|
|
|
|
+ onChange, initialValues, isSource, isAccount, isAccountId, isAccountIds, isCompanyId, isAgentKey, isAgentName, isCpId, isCpName, isCpOrderId, isCpStatus, isCreateDay, isCreateDayXz, isDevice, isGameName, isRechargeGameName, isGameId, isGameIds, isOrderGameId, isGameRoleId, isCountry,
|
|
isGameRoleName, isFirstRecharge, isSwitch, isMerchantNo, isOrderId, isMerchantOrderNo, isPayStatus, isPayWay, isProductName, isRegAgent, isAgentId, isPutAgent, isRegDay, isOs, isParentId, isParentIds, isProjectId, isProjectName, isDynamicCreativeName, isPromotionId, isPromotionId1, isPromotionName,
|
|
isGameRoleName, isFirstRecharge, isSwitch, isMerchantNo, isOrderId, isMerchantOrderNo, isPayStatus, isPayWay, isProductName, isRegAgent, isAgentId, isPutAgent, isRegDay, isOs, isParentId, isParentIds, isProjectId, isProjectName, isDynamicCreativeName, isPromotionId, isPromotionId1, isPromotionName,
|
|
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,
|
|
@@ -660,6 +663,10 @@ const QueryForm: React.FC<Props> = (props) => {
|
|
{isAccount && <Col><Form.Item name='accountName'>
|
|
{isAccount && <Col><Form.Item name='accountName'>
|
|
<Input placeholder="广告账号名称" allowClear style={{ width: 140 }} />
|
|
<Input placeholder="广告账号名称" allowClear style={{ width: 140 }} />
|
|
</Form.Item></Col>}
|
|
</Form.Item></Col>}
|
|
|
|
+ {/* 公会名称 */}
|
|
|
|
+ {isCountry && <Col><Form.Item name='country'>
|
|
|
|
+ <Input placeholder="公会名称" allowClear style={{ width: 140 }} />
|
|
|
|
+ </Form.Item></Col>}
|
|
{/* 广告账号ID */}
|
|
{/* 广告账号ID */}
|
|
{isAccountId && <Col><Form.Item name='accountId'>
|
|
{isAccountId && <Col><Form.Item name='accountId'>
|
|
<Select
|
|
<Select
|