- RUNNING
- SUCCESS
- FAILED
- WAITING
- CANCELLED
+ {{
+ t('mobile.workflowViewer.statusRunning')
+ }}
+ {{
+ t('mobile.workflowViewer.statusSuccess')
+ }}
+ {{
+ t('mobile.workflowViewer.statusFailed')
+ }}
+ {{
+ t('mobile.workflowViewer.statusWaiting')
+ }}
+ {{
+ t('mobile.workflowViewer.statusCancelled')
+ }}
diff --git a/src/views/config/ConfigReleaseList.vue b/src/views/config/ConfigReleaseList.vue
index 142520a..dc48c2b 100644
--- a/src/views/config/ConfigReleaseList.vue
+++ b/src/views/config/ConfigReleaseList.vue
@@ -301,12 +301,22 @@
size="640px"
>
- {{ detail.id }}
- {{ detail.configKey }}
- {{ detail.configName }}
- {{ detail.configStatus }}
- {{ detail.versionNo }}
- {{ detail.publishedAt }}
+ {{ detail.id }}
+ {{
+ detail.configKey
+ }}
+ {{
+ detail.configName
+ }}
+ {{
+ detail.configStatus
+ }}
+ {{
+ detail.versionNo
+ }}
+ {{
+ detail.publishedAt
+ }}
diff --git a/src/views/monitor/JobInstanceDetail.vue b/src/views/monitor/JobInstanceDetail.vue
index acb3f23..6c2a575 100644
--- a/src/views/monitor/JobInstanceDetail.vue
+++ b/src/views/monitor/JobInstanceDetail.vue
@@ -188,10 +188,10 @@
{{ t('monitor.detailParamsSection') }}
-
+
-
+
diff --git a/src/views/monitor/WorkflowRunDetail.vue b/src/views/monitor/WorkflowRunDetail.vue
index 06957a4..05b228a 100644
--- a/src/views/monitor/WorkflowRunDetail.vue
+++ b/src/views/monitor/WorkflowRunDetail.vue
@@ -15,7 +15,7 @@
{{ t('monitor.runDetailRefresh') }}
- 看 DAG
+ {{ t('monitor.runDetailOpenFullDag') }}
{{ t('monitor.runDetailCancel') }}
@@ -90,7 +90,7 @@
@reset="resetNodeFilter"
@refresh="() => runRefresh(loadNodeRuns)"
>
-
+
-
+
-
+
@@ -136,10 +139,10 @@
-
-
-
-
+
+
+
+
diff --git a/src/views/ops/BatchDayReplay.vue b/src/views/ops/BatchDayReplay.vue
index 78b92eb..884d42c 100644
--- a/src/views/ops/BatchDayReplay.vue
+++ b/src/views/ops/BatchDayReplay.vue
@@ -68,17 +68,22 @@
@submit.prevent="doSubmit"
>
-
+
- ALL
- ALL_FAILED
- SUBSET_JOB_CODES
- OUTPUTS_ONLY
+ {{ t('batchDayReplay.scopeAll') }}
+ {{ t('batchDayReplay.scopeAllFailed') }}
+ {{
+ t('batchDayReplay.scopeSubsetJobCodes')
+ }}
+ {{ t('batchDayReplay.scopeOutputsOnly') }}
-
-
-
+
+
+
-
-
-
+
+
+
{{ t('batchDayReplay.allEntries') }}
- PENDING
- SUCCEEDED
- FAILED
+ {{
+ t('batchDayReplay.entryStatusPending')
+ }}
+ {{
+ t('batchDayReplay.entryStatusSucceeded')
+ }}
+ {{
+ t('batchDayReplay.entryStatusFailed')
+ }}
- {{ row.status }}
+
+ {{
+ row.status === 'SUCCEEDED'
+ ? t('batchDayReplay.entryStatusSucceeded')
+ : row.status === 'FAILED'
+ ? t('batchDayReplay.entryStatusFailed')
+ : t('batchDayReplay.entryStatusPending')
+ }}
+
runRefresh(load)"
>
-
+
- {{ detail.id }}
+ {{ detail.id }}
{{ detail.keyName }}
{{ detail.scopes }}
- {{
+ {{
String(detail.enabled ?? '')
}}
{{ detail.expiresAt }}
- {{ detail.revokedAt ?? '—' }}
- {{ detail.revokedBy ?? '—' }}
+ {{
+ detail.revokedAt ?? '—'
+ }}
+ {{
+ detail.revokedBy ?? '—'
+ }}
diff --git a/src/views/worker/WorkerManagement.vue b/src/views/worker/WorkerManagement.vue
index 9174fa8..e5016e2 100644
--- a/src/views/worker/WorkerManagement.vue
+++ b/src/views/worker/WorkerManagement.vue
@@ -249,19 +249,19 @@
size="640px"
>
- {{
+ {{
channelDetailRow.channelCode
}}
- {{
+ {{
channelDetailRow.channelType
}}
-
+
{{ channelDetailRow.enabled ? t('workerManagement.yes') : t('workerManagement.no') }}
- {{
+ {{
channelDetailRow.timeoutSeconds ?? '—'
}}
- {{
+ {{
channelDetailRow.updatedAt || '—'
}}
@@ -427,7 +427,7 @@
},
{
status: 'DRAINING',
- label: 'Draining',
+ label: t('enum.workerStatus.DRAINING'),
value: workerStats.value.draining,
color: 'var(--color-warning)',
numColor: 'var(--color-warning)',
diff --git a/src/views/workflow/WorkflowDefinitionList.vue b/src/views/workflow/WorkflowDefinitionList.vue
index 76d3379..312945a 100644
--- a/src/views/workflow/WorkflowDefinitionList.vue
+++ b/src/views/workflow/WorkflowDefinitionList.vue
@@ -163,24 +163,28 @@
- {{
+ {{
detailRow.workflowCode
}}
- {{
+ {{
detailRow.workflowName
}}
- {{
- detailRow.workflowType
+ {{
+ resolveEnumLabel('workflowType', detailRow.workflowType)
}}
- {{ detailRow.version }}
-
+ {{
+ detailRow.version
+ }}
+
{{ detailRow.enabled ? t('common.yes') : t('common.no') }}
- {{ detailRow.tenantId }}
- {{
+ {{
+ detailRow.tenantId
+ }}
+ {{
detailRow.createdAt || '—'
}}
- {{
+ {{
detailRow.updatedAt || '—'
}}
{{
@@ -259,10 +263,10 @@
-
+
-
+
diff --git a/src/views/workflow/WorkflowMermaidViewer.vue b/src/views/workflow/WorkflowMermaidViewer.vue
index 0c009c5..ed642e1 100644
--- a/src/views/workflow/WorkflowMermaidViewer.vue
+++ b/src/views/workflow/WorkflowMermaidViewer.vue
@@ -20,39 +20,42 @@
✓ {{ statusCounts.success }}
▶ {{ statusCounts.running }}
✗ {{ statusCounts.failed }}
⧗ {{ statusCounts.waiting }}
⊘ {{ statusCounts.cancelled }}
-
+
· {{ statusCounts.pending }}