wjx 1 hari lalu
induk
melakukan
fb1f1025fd

+ 5 - 3
src/pages/launchSystemV3/monitorEWList/astraSupport‌.tsx

@@ -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}
             />

+ 1 - 1
src/services/adqV3/monitorEWList.ts

@@ -6,7 +6,7 @@ export interface GetCorpUserDayListProps {
     pageNum: number,
     pageSize: number,
     day?: string,
-    corpId?: string
+    corpIdList?: string[]
     corpUserName?: string
     sortFiled?: string,
     sortAsc?: boolean