feat: 添加已完成动作数计算和优化工作流列表视图

This commit is contained in:
jxxghp
2025-02-26 18:09:11 +08:00
parent 3c6fbfb106
commit 7a9984f392
2 changed files with 55 additions and 38 deletions
+47 -36
View File
@@ -33,6 +33,11 @@ function handleEdit(item: Workflow) {
editDialog.value = true editDialog.value = true
} }
// 计算已完成的动作数
function resolveDoneActions(item: Workflow) {
return item.current_action?.split(',').length || 0
}
// 编辑完成 // 编辑完成
function editDone() { function editDone() {
editDialog.value = false editDialog.value = false
@@ -117,8 +122,8 @@ const resolveStatusVariant = (status: string | undefined) => {
if (status === 'S') return { color: 'success', text: '成功' } if (status === 'S') return { color: 'success', text: '成功' }
else if (status === 'R') return { color: 'primary', text: '运行中' } else if (status === 'R') return { color: 'primary', text: '运行中' }
else if (status === 'F') return { color: 'error', text: '失败' } else if (status === 'F') return { color: 'error', text: '失败' }
else if (status === 'P') return { color: 'warning', text: '暂停' } else if (status === 'P') return { color: 'secondary', text: '暂停' }
else return { color: 'secondary', text: '等待' } else return { color: 'info', text: '等待' }
} }
// 计算当前动作占比 // 计算当前动作占比
@@ -129,39 +134,35 @@ const resolveProgress = (item: Workflow) => {
</script> </script>
<template> <template>
<div> <div>
<VCard class="mx-auto" @click="handleEdit(props.workflow)"> <VCard class="mx-auto" @click="handleEdit(workflow)">
<VCardItem class="py-3"> <VCardItem class="py-3" :class="`bg-${resolveStatusVariant(workflow?.state).color}`">
<template #prepend> <template #prepend>
<VBadge v-if="props.workflow?.state" dot inline :color="resolveStatusVariant(props.workflow?.state).color" /> <IconBtn v-if="workflow?.state === 'P'">
</template> <VIcon color="success" icon="mdi-play" @click.stop="handleEnable(workflow)" />
<VCardTitle>
{{ props.workflow?.name }}
</VCardTitle>
<VCardSubtitle>{{ props.workflow?.description }}</VCardSubtitle>
<template #append>
<IconBtn v-if="props.workflow?.state === 'P'">
<VIcon color="success" icon="mdi-play" @click.stop="handleEnable(props.workflow)" />
</IconBtn> </IconBtn>
<IconBtn v-else> <IconBtn v-else>
<VIcon color="warning" icon="mdi-pause" @click.stop="handlePause(props.workflow)" /> <VIcon color="warning" icon="mdi-pause" @click.stop="handlePause(workflow)" />
</IconBtn>
</template>
<VCardTitle>
{{ workflow?.name }}
</VCardTitle>
<VCardSubtitle>{{ workflow?.description }}</VCardSubtitle>
<template #append>
<IconBtn>
<VIcon icon="mdi-edit" @click.stop="handleEdit(workflow)" />
</IconBtn> </IconBtn>
<IconBtn> <IconBtn>
<VIcon icon="mdi-dots-vertical" /> <VIcon icon="mdi-dots-vertical" />
<VMenu activator="parent" close-on-content-click> <VMenu activator="parent" close-on-content-click>
<VList> <VList>
<VListItem variant="plain" base-color="primary" @click="handleEdit(props.workflow)"> <VListItem variant="plain" base-color="primary" @click="handleRun(workflow)">
<template #prepend>
<VIcon icon="mdi-pencil" />
</template>
<VListItemTitle>编辑流程</VListItemTitle>
</VListItem>
<VListItem variant="plain" base-color="info" @click="handleRun(props.workflow)">
<template #prepend> <template #prepend>
<VIcon icon="mdi-run" /> <VIcon icon="mdi-run" />
</template> </template>
<VListItemTitle>立即执行</VListItemTitle> <VListItemTitle>立即执行</VListItemTitle>
</VListItem> </VListItem>
<VListItem variant="plain" base-color="error" @click="handleDelete(props.workflow)"> <VListItem variant="plain" base-color="error" @click="handleDelete(workflow)">
<template #prepend> <template #prepend>
<VIcon icon="mdi-delete" /> <VIcon icon="mdi-delete" />
</template> </template>
@@ -174,40 +175,50 @@ const resolveProgress = (item: Workflow) => {
</VCardItem> </VCardItem>
<VDivider /> <VDivider />
<VCardText> <VCardText>
<div class="d-flex flex-column gap-y-6"> <div class="d-flex flex-column gap-y-4">
<div class="d-flex flex-wrap gap-y-4"> <div class="d-flex flex-wrap gap-x-6">
<div class="flex-1"> <div class="flex-1">
<div class="mb-1">定时</div> <div class="mb-1">定时</div>
<h5 class="text-h6">{{ props.workflow?.timer }}</h5> <h5 class="text-h6">{{ workflow?.timer }}</h5>
</div> </div>
<div class="flex-1"> <div class="flex-1">
<div class="mb-1">状态</div> <div class="mb-1">状态</div>
<h5 class="text-h6" :class="`text-${resolveStatusVariant(props.workflow?.state).color}`"> <h5 class="text-h6" :class="`text-${resolveStatusVariant(workflow?.state).color}`">
{{ resolveStatusVariant(props.workflow?.state).text }} {{ resolveStatusVariant(workflow?.state).text }}
</h5> </h5>
</div> </div>
</div> </div>
<div class="d-flex flex-wrap gap-y-4"> <div class="d-flex flex-wrap gap-x-6">
<div class="flex-1"> <div class="flex-1">
<div class="mb-1">执行结果</div> <div class="mb-1">动作数</div>
<h5 class="text-h6">{{ props.workflow?.result || '无' }}</h5> <div>
<VAvatar size="32" color="primary" variant="tonal">
<span class="text-sm">{{ workflow?.actions?.length }}</span>
</VAvatar>
</div>
</div> </div>
<div class="flex-1"> <div class="flex-1">
<div class="mb-1">已执行次数</div> <div class="mb-1">已执行次数</div>
<h5 class="text-h6">{{ props.workflow?.run_count }}</h5> <h5 class="text-h6">{{ workflow?.run_count }}</h5>
</div> </div>
</div> </div>
<div class="d-flex flex-wrap gap-y-4"> <div class="d-flex flex-wrap gap-x-6">
<div class="w-full"> <div class="flex-1">
<div class="mb-1">进度</div> <div class="mb-1">进度</div>
<div class="d-flex align-center gap-5"> <div class="d-flex align-center gap-5">
<div class="flex-grow-1"> <div class="flex-grow-1">
<VProgressLinear rounded :value="resolveProgress(props.workflow)" color="primary" height="10" /> <VProgressLinear rounded :value="resolveProgress(workflow)" height="10" />
</div> </div>
<span>75%</span> <span> {{ (resolveDoneActions(workflow) * 100) / (workflow.actions?.length || 1) }}% </span>
</div> </div>
</div> </div>
</div> </div>
<div class="d-flex flex-wrap gap-x-6" v-if="workflow?.result">
<div class="flex-1">
<div class="mb-1">错误信息</div>
<div class="text-error">{{ workflow?.result }}</div>
</div>
</div>
</div> </div>
</VCardText> </VCardText>
</VCard> </VCard>
@@ -217,7 +228,7 @@ const resolveProgress = (item: Workflow) => {
v-model="editDialog" v-model="editDialog"
@close="editDialog = false" @close="editDialog = false"
@save="editDone" @save="editDone"
:workflow="props.workflow" :workflow="workflow"
/> />
</div> </div>
</template> </template>
+8 -2
View File
@@ -29,6 +29,12 @@ async function fetchData() {
} }
} }
// 新增完成
function addDone() {
addDialog.value = false
fetchData()
}
onMounted(() => { onMounted(() => {
fetchData() fetchData()
}) })
@@ -42,7 +48,7 @@ onActivated(() => {
<div> <div>
<LoadingBanner v-if="!isRefreshed" class="mt-12" /> <LoadingBanner v-if="!isRefreshed" class="mt-12" />
<VRow v-if="workflowList.length > 0"> <VRow v-if="workflowList.length > 0">
<VCol cols="12" md="6" v-for="item in workflowList" :key="item.id"> <VCol cols="12" md="6" lg="4" v-for="item in workflowList" :key="item.id">
<WorkflowTaskCard :workflow="item" @refresh="fetchData" /> <WorkflowTaskCard :workflow="item" @refresh="fetchData" />
</VCol> </VCol>
</VRow> </VRow>
@@ -67,5 +73,5 @@ onActivated(() => {
@click="addDialog = true" @click="addDialog = true"
/> />
<!-- 新增对话框 --> <!-- 新增对话框 -->
<WorkflowAddDialog v-if="addDialog" v-model="addDialog" @close="addDialog = false" @save="fetchData" /> <WorkflowAddDialog v-if="addDialog" v-model="addDialog" @close="addDialog = false" @save="addDone" />
</template> </template>