@@ -166,6 +170,7 @@ export default {
// 选中列表表头字段
{ key: 'name', title: _this.$t('page.name') }, // 名称
{ key: 'isActive', title: _this.$t('page.status') }, // 状态
+ { key: 'isLoad', title: this.$t('page.loaded')},
{ key: 'cron', title: this.$t('term.autoexec.timingplan') }, // cron表达式
{ key: 'autoexecCombopName', title: this.$t('term.autoexec.relatecombinationtool') }, // 关联组合工具
{ key: 'execCount', title: this.$t('term.autoexec.executecount') }, // 执行次数
diff --git a/src/views/pages/deploy/schedule/schedule-job-manage.vue b/src/views/pages/deploy/schedule/schedule-job-manage.vue
index 174e233d..1e2d3aec 100644
--- a/src/views/pages/deploy/schedule/schedule-job-manage.vue
+++ b/src/views/pages/deploy/schedule/schedule-job-manage.vue
@@ -39,6 +39,10 @@
{{ $t('page.enable') }}
{{ $t('page.disable') }}
+
+ {{ $t('page.yes') }}
+ {{ $t('page.no') }}
+
@@ -69,6 +73,34 @@
{{ row.execCount }}
+
+
+
+ {{ $t('term.autoexec.starttoexecute') }}
+ {{ row.jobStatus.execCount || '0' }}次
+
+
+ {{ $t('term.autoexec.planstarttime') }}:
+ {{ row.jobStatus.beginTime | formatDate }}
+
+
+ {{ $t('term.autoexec.planendtime') }}:
+ {{ row.jobStatus.endTime | formatDate }}
+
+
+ {{ $t('term.autoexec.lastactivetime') }}:
+ {{ row.jobStatus.lastFireTime | formatDate }}
+
+
+ {{ $t('term.autoexec.lastcompletetime') }}:
+ {{ row.jobStatus.lastFinishTime | formatDate }}
+
+
+ {{ $t('page.nextactivationtime') }}:
+ {{ row.jobStatus.nextFireTime | formatDate }}
+
+
+