|
@@ -47,12 +47,14 @@ const AstraSupport: React.FC = () => {
|
|
|
filterOption={(input, option) =>
|
|
|
((option?.label ?? '') as any).toLowerCase().includes(input.toLowerCase())
|
|
|
}
|
|
|
- style={{ width: 140 }}
|
|
|
+ style={{ minWidth: 140 }}
|
|
|
allowClear
|
|
|
- value={queryParams?.corpId}
|
|
|
+ mode='multiple'
|
|
|
+ maxTagCount={1}
|
|
|
+ value={queryParams?.corpIdList}
|
|
|
loading={getCorpWechatAll.loading}
|
|
|
onChange={(e) => {
|
|
|
- setQueryParams({ ...queryParams, corpId: e, pageNum: 1 })
|
|
|
+ setQueryParams({ ...queryParams, corpIdList: e, pageNum: 1 })
|
|
|
}}
|
|
|
options={corpWechatList}
|
|
|
/>
|