wjx 4 months ago
parent
commit
7d34a724fb

+ 2 - 0
src/pages/launchSystemV3/material/tencent/search.tsx

@@ -82,6 +82,7 @@ const Search: React.FC<Props> = ({ onSearch, pageShowType, setPageShowType }) =>
                             maxTagCount={1}
                             maxTagCount={1}
                             mode="multiple"
                             mode="multiple"
                             allowClear
                             allowClear
+                            showSearch
                             loading={getUserAll.loading}
                             loading={getUserAll.loading}
                             options={getUserAll?.data?.map((item: { nickname: any; userId: any }) => ({ label: item.nickname, value: item.userId }))}
                             options={getUserAll?.data?.map((item: { nickname: any; userId: any }) => ({ label: item.nickname, value: item.userId }))}
                         />
                         />
@@ -94,6 +95,7 @@ const Search: React.FC<Props> = ({ onSearch, pageShowType, setPageShowType }) =>
                             }
                             }
                             style={{ minWidth: 120 }}
                             style={{ minWidth: 120 }}
                             allowClear
                             allowClear
+                            showSearch
                             loading={getUserAll.loading}
                             loading={getUserAll.loading}
                             options={getUserAll?.data?.map((item: { nickname: any; userId: any }) => ({ label: item.nickname, value: item.userId }))}
                             options={getUserAll?.data?.map((item: { nickname: any; userId: any }) => ({ label: item.nickname, value: item.userId }))}
                         />
                         />

+ 4 - 0
src/pages/launchSystemV3/material/tencent/tableConfig.tsx

@@ -50,6 +50,10 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
                     title: '投手', dataIndex: 'pitcher_name', label: '自定义指标', width: 80, align: 'center', default: 2,
                     title: '投手', dataIndex: 'pitcher_name', label: '自定义指标', width: 80, align: 'center', default: 2,
                     render: (a: string) => a || '--'
                     render: (a: string) => a || '--'
                 },
                 },
+                {
+                    title: '创建时间', dataIndex: 'created_time', label: '自定义指标', width: 135, align: 'center', ellipsis: true,
+                    render: (a: string) => a || '--'
+                },
                 {
                 {
                     title: '消耗', dataIndex: 'cost', label: '自定义指标', width: 110, default: 3, align: 'right', sorter: true,
                     title: '消耗', dataIndex: 'cost', label: '自定义指标', width: 110, default: 3, align: 'right', sorter: true,
                     render: (a: string) => <Statistic value={a || 0} precision={2} />
                     render: (a: string) => <Statistic value={a || 0} precision={2} />