feat: add status filter

This commit is contained in:
Methapon Metanipat 2024-10-25 17:07:52 +07:00
parent 5ac8707f38
commit d4afc09614
2 changed files with 9 additions and 0 deletions

View file

@ -96,6 +96,12 @@ async function fetchWorkflowList() {
page: workflowPage.value,
pageSize: workflowPageSize.value,
query: pageState.inputSearch,
status:
statusFilter.value === 'all'
? undefined
: statusFilter.value === 'statusACTIVE'
? 'ACTIVE'
: 'INACTIVE',
});
if (res) {
workflowData.value = res.result;
@ -109,6 +115,7 @@ onMounted(async () => {
await fetchWorkflowList();
});
watch(statusFilter, fetchWorkflowList);
watch(() => pageState.inputSearch, fetchWorkflowList);
</script>
<template>