|
@@ -19,6 +19,8 @@ interface Props {
|
|
|
isAccount?: boolean
|
|
|
/** 是否开启 广告账户ID 搜索 */
|
|
|
isAccountId?: boolean
|
|
|
+ // 开启账号多选
|
|
|
+ isAccountIds?: boolean,
|
|
|
/** 是否开启 公司ID 搜索 */
|
|
|
isCompanyId?: boolean
|
|
|
/** 是否开启 CPID 搜索 */
|
|
@@ -242,7 +244,7 @@ const QueryForm: React.FC<Props> = (props) => {
|
|
|
|
|
|
/**************************/
|
|
|
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, isAccountIds, 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, isParentIds, isProjectId, isProjectName, isPromotionId, isPromotionId1, isPromotionName,
|
|
|
isSysUserName, isRechargeDate, 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, isCreateRoleDay, isIsChange, isIsSendMail, isWeChatCompany, isWeChat,
|
|
@@ -574,8 +576,9 @@ const QueryForm: React.FC<Props> = (props) => {
|
|
|
{isAccountId && <Col><Form.Item name='accountId'>
|
|
|
<Select
|
|
|
maxTagCount={1}
|
|
|
+ mode={isAccountIds ? 'multiple' : undefined}
|
|
|
showSearch
|
|
|
- style={{ width: 140 }}
|
|
|
+ style={{ minWidth: 140 }}
|
|
|
allowClear
|
|
|
placeholder={'广告账号'}
|
|
|
loading={getAccountListNew.loading || getAllOfOwnerUser.loading}
|