1
This commit is contained in:
@@ -217,6 +217,7 @@ const AdminGenerationRecords: React.FC = () => {
|
||||
username: item.username,
|
||||
projectId: item.projectId,
|
||||
projectName: item.projectName,
|
||||
industry: item.industry,
|
||||
originalPrompt: item.originalPrompt,
|
||||
optimizedPrompt: item.optimizedPrompt,
|
||||
duration: item.duration,
|
||||
@@ -390,6 +391,10 @@ const AdminGenerationRecords: React.FC = () => {
|
||||
title: '项目', dataIndex: 'projectName', width: 120, ellipsis: true,
|
||||
render: (v: string) => <Typography.Text style={{ fontSize: 13 }}>{v || '-'}</Typography.Text>,
|
||||
},
|
||||
{
|
||||
title: '行业', dataIndex: 'industry', width: 100, ellipsis: true,
|
||||
render: (v: string) => <Tag color="cyan">{v || '-'}</Tag>,
|
||||
},
|
||||
{
|
||||
title: '类型', dataIndex: 'genType', width: 90, ellipsis: true,
|
||||
render: (v: string) => {
|
||||
|
||||
@@ -319,6 +319,7 @@ export interface AdminGenerationRecord {
|
||||
username: string;
|
||||
projectId: string;
|
||||
projectName: string;
|
||||
industry?: string;
|
||||
originalPrompt: string;
|
||||
optimizedPrompt: string;
|
||||
duration?: number;
|
||||
|
||||
Reference in New Issue
Block a user