diff --git a/frontend/src/components/InfoView/TaskInfoView.vue b/frontend/src/components/InfoView/TaskInfoView.vue index 8b6fdd16..92ad5869 100644 --- a/frontend/src/components/InfoView/TaskInfoView.vue +++ b/frontend/src/components/InfoView/TaskInfoView.vue @@ -30,6 +30,13 @@ + + + + + + +
{{taskForm.log}} diff --git a/frontend/src/i18n/zh.js b/frontend/src/i18n/zh.js index a437dcf1..69147f67 100644 --- a/frontend/src/i18n/zh.js +++ b/frontend/src/i18n/zh.js @@ -101,6 +101,8 @@ export default { 'Finish Timestamp': '完成时间', 'Duration (sec)': '用时(秒)', 'Error Message': '错误信息', + 'Results Count': '结果数', + 'Average Results Count per Second': '抓取速度(个/秒)', // 任务列表 'Node': '节点', diff --git a/frontend/src/views/task/TaskList.vue b/frontend/src/views/task/TaskList.vue index fe40fe5c..20687334 100644 --- a/frontend/src/views/task/TaskList.vue +++ b/frontend/src/views/task/TaskList.vue @@ -106,12 +106,14 @@ export default { dialogVisible: false, // tableData, columns: [ - { name: 'create_ts', label: 'Create Time', width: '150' }, - { name: 'start_ts', label: 'Start Time', width: '150' }, - { name: 'finish_ts', label: 'Finish Time', width: '150' }, + { name: 'create_ts', label: 'Create Time', width: '100' }, + { name: 'start_ts', label: 'Start Time', width: '100' }, + { name: 'finish_ts', label: 'Finish Time', width: '100' }, { name: 'duration', label: 'Duration (sec)', width: '80' }, - { name: 'spider_name', label: 'Spider', width: '160' }, + { name: 'spider_name', label: 'Spider', width: '120' }, { name: 'node_id', label: 'Node', width: '160' }, + { name: 'num_results', label: 'Results Count', width: '80' }, + { name: 'avg_num_results', label: 'Average Results Count per Second', width: '80' }, { name: 'status', label: 'Status', width: '80' } ] }