|
@@ -245,6 +245,8 @@ interface Props {
|
|
isAddCorpWechat?: boolean
|
|
isAddCorpWechat?: boolean
|
|
/** 是否开启 是否唤醒 搜索 */
|
|
/** 是否开启 是否唤醒 搜索 */
|
|
isWakeUp?: boolean
|
|
isWakeUp?: boolean
|
|
|
|
+ /** 是否开启 是否绑定手机号 搜索 */
|
|
|
|
+ isUserPhoneStatus?: boolean
|
|
/** 是否开启 回传状态 搜索 */
|
|
/** 是否开启 回传状态 搜索 */
|
|
isBackStatus?: boolean
|
|
isBackStatus?: boolean
|
|
/** 是否开启 选择游戏维度 搜索 */
|
|
/** 是否开启 选择游戏维度 搜索 */
|
|
@@ -275,7 +277,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, isRemoveGame, isRemoveGameForSystem, isOrderLy, isAddCorpWechat,
|
|
isCustomerServerId, isOperatorId, isGsId, isServerIds, isRankingNum, isIsMergeServer, isIsParticipateMerge, isSuperParentGameId, isGameServerName, isIp, isDeviceType, isLoginType, isServerIdUn, isSourceServerName, isProjectId1, isRemoveGame, isRemoveGameForSystem, isOrderLy, isAddCorpWechat,
|
|
- isWakeUp, isBackStatus, isGameDimension, isUserLastRegTime, isUserLastRegAgentId, isUserLastPitcherId, isRechargeAmountWithin24h, isRechargeTotalAmountWithin24h, isRegisterType
|
|
|
|
|
|
+ isWakeUp, isUserPhoneStatus, isBackStatus, isGameDimension, isUserLastRegTime, isUserLastRegAgentId, isUserLastPitcherId, isRechargeAmountWithin24h, isRechargeTotalAmountWithin24h, isRegisterType
|
|
} = props
|
|
} = props
|
|
const [form] = Form.useForm()
|
|
const [form] = Form.useForm()
|
|
const parentId = Form.useWatch('parentId', form)
|
|
const parentId = Form.useWatch('parentId', form)
|
|
@@ -1511,6 +1513,22 @@ const QueryForm: React.FC<Props> = (props) => {
|
|
</Select>
|
|
</Select>
|
|
</Form.Item></Col>}
|
|
</Form.Item></Col>}
|
|
|
|
|
|
|
|
+ {/* 是否绑定手机号 */}
|
|
|
|
+ {isUserPhoneStatus && <Col><Form.Item name='userPhoneStatus'>
|
|
|
|
+ <Select
|
|
|
|
+ showSearch
|
|
|
|
+ allowClear
|
|
|
|
+ style={{ width: 170 }}
|
|
|
|
+ placeholder={'客户是否绑定手机号'}
|
|
|
|
+ filterOption={(input, option) =>
|
|
|
|
+ (option?.children as any)?.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
|
|
|
+ }
|
|
|
|
+ >
|
|
|
|
+ <Select.Option value={1}>绑定</Select.Option>
|
|
|
|
+ <Select.Option value={0}>未绑定</Select.Option>
|
|
|
|
+ </Select>
|
|
|
|
+ </Form.Item></Col>}
|
|
|
|
+
|
|
{/* vip等级 */}
|
|
{/* vip等级 */}
|
|
{isVipLevel && <Col><Form.Item name='vipLevel'>
|
|
{isVipLevel && <Col><Form.Item name='vipLevel'>
|
|
<Select
|
|
<Select
|