feat: 功能优化

This commit is contained in:
2026-02-23 20:36:50 +08:00
parent c02f5d36c8
commit 5bd74a4628
3 changed files with 1139 additions and 1108 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -58,7 +58,7 @@
@change="handleTableChange"
:expanded-row-keys="expandedRowKeys"
@expandedRowsChange="handleExpandedRowsChange"
:scroll="{ x: 1000 }"
:scroll="{ x: 'max-content' }"
>
<!-- 标题列 -->
<template #bodyCell="{ column, record }">
@@ -364,44 +364,43 @@ const columns = [
title: 'ID',
dataIndex: 'id',
key: 'id',
width: 80,
width: 70,
fixed: 'left'
},
{
title: '标题',
dataIndex: 'title',
key: 'title',
width: 250,
ellipsis: true
},
{
title: '状态',
dataIndex: 'status',
key: 'status',
width: 100
width: 90
},
{
title: '生成结果',
dataIndex: 'outputUrls',
key: 'outputUrls',
width: 120
width: 100
},
{
title: '创建时间',
dataIndex: 'createTime',
key: 'createTime',
width: 180
width: 160
},
{
title: '完成时间',
dataIndex: 'finishTime',
key: 'finishTime',
width: 180
width: 160
},
{
title: '操作',
key: 'actions',
width: 300,
width: 240,
fixed: 'right'
}
]