From d4e039545c9e97347223eb415fbba85ee01bc263 Mon Sep 17 00:00:00 2001
From: zhou zhou <3272660260@qq.com>
Date: 星期六, 11 四月 2026 10:10:14 +0800
Subject: [PATCH] #页面优化
---
rsf-design/src/views/manager/task-log/taskLogTable.columns.js | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 57 insertions(+), 0 deletions(-)
diff --git a/rsf-design/src/views/manager/task-log/taskLogTable.columns.js b/rsf-design/src/views/manager/task-log/taskLogTable.columns.js
index cb54e81..278b4f0 100644
--- a/rsf-design/src/views/manager/task-log/taskLogTable.columns.js
+++ b/rsf-design/src/views/manager/task-log/taskLogTable.columns.js
@@ -8,6 +8,20 @@
{ type: 'selection', width: 48, align: 'center' },
{ type: 'globalIndex', label: $t('table.index'), width: 72, align: 'center' },
{
+ prop: 'id',
+ label: $t('table.id'),
+ width: 90,
+ align: 'center',
+ formatter: (row) => row.id ?? '--'
+ },
+ {
+ prop: 'taskId',
+ label: $t('pages.manager.taskLog.detail.taskId'),
+ width: 110,
+ align: 'center',
+ formatter: (row) => row.taskId ?? '--'
+ },
+ {
prop: 'taskCode',
label: $t('pages.manager.taskLog.table.taskCode'),
minWidth: 170,
@@ -62,6 +76,25 @@
showOverflowTooltip: true
},
{
+ prop: 'exceStatusText',
+ label: $t('pages.manager.taskLog.detail.exceStatus'),
+ minWidth: 120,
+ showOverflowTooltip: true
+ },
+ {
+ prop: 'sort',
+ label: $t('pages.manager.taskLog.detail.sort'),
+ width: 100,
+ align: 'right',
+ formatter: (row) => row.sort ?? '--'
+ },
+ {
+ prop: 'expCode',
+ label: $t('pages.manager.taskLog.detail.expCode'),
+ minWidth: 140,
+ showOverflowTooltip: true
+ },
+ {
prop: 'startTimeText',
label: $t('pages.manager.taskLog.table.startTime'),
minWidth: 170,
@@ -89,12 +122,36 @@
)
},
{
+ prop: 'createByText',
+ label: $t('table.createBy'),
+ minWidth: 120,
+ showOverflowTooltip: true
+ },
+ {
+ prop: 'createTimeText',
+ label: $t('table.createTime'),
+ minWidth: 170,
+ showOverflowTooltip: true
+ },
+ {
+ prop: 'updateByText',
+ label: $t('table.updateBy'),
+ minWidth: 120,
+ showOverflowTooltip: true
+ },
+ {
prop: 'updateTimeText',
label: $t('table.updateTime'),
minWidth: 170,
showOverflowTooltip: true
},
{
+ prop: 'memo',
+ label: $t('table.memo'),
+ minWidth: 180,
+ showOverflowTooltip: true
+ },
+ {
prop: 'operation',
label: $t('table.operation'),
width: 92,
--
Gitblit v1.9.1