解析列表

This commit is contained in:
zhujiyan
2024-10-15 16:41:41 +08:00
parent 223e698c9b
commit bb91cd6f83
2 changed files with 31 additions and 17 deletions

View File

@@ -26,10 +26,9 @@ const tableStore: any = new TableStore({
// { width: '60', type: 'checkbox', fixed: 'left' },
{ title: '序号', type: 'seq', width: 80 },
{ field: 'projectName', title: '工程名称', minWidth: 170 },
// { field: 'allCount', title: '数据总数(条)', minWidth: 170 },
{ field: 'successCount', title: '已入库总数(条)', minWidth: 170 },
{ field: 'startTime', title: '起始时间', minWidth: 170 },
{ field: 'endTime', title: '结束时间', minWidth: 170 },
{ field: 'successCount', title: '成功解析数', minWidth: 170 },
{ field: 'startTime', title: '导入开始时间', minWidth: 170 },
{ field: 'endTime', title: '导入结束时间', minWidth: 170 },
{
title: '解析状态',
field: 'status',
@@ -116,8 +115,5 @@ defineExpose({ open })
<style lang="scss" scoped>
::v-deep .el-dialog_body {
overflow-y: hidden !important;
.analysisTable {
height: 400px !important;
}
}
</style>