|
@@ -216,6 +216,7 @@ interface Props {
|
|
isRemoveGame?: boolean
|
|
isRemoveGame?: boolean
|
|
/** 是否开启 是否退游系统 搜索 */
|
|
/** 是否开启 是否退游系统 搜索 */
|
|
isRemoveGameForSystem?: boolean
|
|
isRemoveGameForSystem?: boolean
|
|
|
|
+ isOrderLy?: boolean
|
|
}
|
|
}
|
|
/**
|
|
/**
|
|
* 游戏数据系统 请求参数
|
|
* 游戏数据系统 请求参数
|
|
@@ -229,7 +230,7 @@ const QueryForm: React.FC<Props> = (props) => {
|
|
isGameRoleName, isFirstRecharge, isSwitch, isMerchantNo, isOrderId, isMerchantOrderNo, isPayStatus, isPayWay, isProductName, isRegAgent, isAgentId, isPutAgent, isRegDay, isOs, isParentId, isProjectId, isProjectName, isPromotionId, isPromotionId1, 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, isProjectId1, isRemoveGame, isRemoveGameForSystem
|
|
|
|
|
|
+ isCustomerServerId, isOperatorId, isGsId, isServerIds, isRankingNum, isIsMergeServer, isSuperParentGameId, isGameServerName, isIp, isDeviceType, isLoginType, isServerIdUn, isSourceServerName, isProjectId1, isRemoveGame, isRemoveGameForSystem, isOrderLy
|
|
} = props
|
|
} = props
|
|
const [form] = Form.useForm()
|
|
const [form] = Form.useForm()
|
|
const parentId = Form.useWatch('parentId', form)
|
|
const parentId = Form.useWatch('parentId', form)
|
|
@@ -498,6 +499,21 @@ const QueryForm: React.FC<Props> = (props) => {
|
|
<Select.Option value="total">总量</Select.Option>
|
|
<Select.Option value="total">总量</Select.Option>
|
|
</Select>
|
|
</Select>
|
|
</Form.Item></Col>}
|
|
</Form.Item></Col>}
|
|
|
|
+ {/* 订单渠道类型 */}
|
|
|
|
+ {isOrderLy && <Col><Form.Item name='orderAgentType'>
|
|
|
|
+ <Select
|
|
|
|
+ showSearch
|
|
|
|
+ style={{ width: 130 }}
|
|
|
|
+ allowClear
|
|
|
|
+ placeholder={'订单渠道类型'}
|
|
|
|
+ filterOption={(input, option) =>
|
|
|
|
+ (option?.children as any)?.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
|
|
|
+ }
|
|
|
|
+ >
|
|
|
|
+ <Select.Option value="buy">买量</Select.Option>
|
|
|
|
+ <Select.Option value="nature">自然量</Select.Option>
|
|
|
|
+ </Select>
|
|
|
|
+ </Form.Item></Col>}
|
|
{isActiveTypes && <Col><Form.Item name='activeTypes'>
|
|
{isActiveTypes && <Col><Form.Item name='activeTypes'>
|
|
<Select
|
|
<Select
|
|
showSearch
|
|
showSearch
|
|
@@ -723,7 +739,7 @@ const QueryForm: React.FC<Props> = (props) => {
|
|
showSearch
|
|
showSearch
|
|
style={{ minWidth: 140 }}
|
|
style={{ minWidth: 140 }}
|
|
allowClear
|
|
allowClear
|
|
- loading={getGameListNew.loading || getGameChoiceList.loading}
|
|
|
|
|
|
+ loading={getGameListNew.loading || getGameChoiceList.loading }
|
|
placeholder={'请选择游戏'}
|
|
placeholder={'请选择游戏'}
|
|
filterOption={(input, option) =>
|
|
filterOption={(input, option) =>
|
|
(option?.children as any)?.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
|
(option?.children as any)?.toLowerCase().indexOf(input.toLowerCase()) >= 0
|