feat: add status filter
This commit is contained in:
parent
5ac8707f38
commit
d4afc09614
2 changed files with 9 additions and 0 deletions
|
|
@ -3,6 +3,7 @@ import { defineStore } from 'pinia';
|
|||
import { api } from 'src/boot/axios';
|
||||
import { PaginationResult } from 'src/types';
|
||||
import { WorkflowTemplate, WorkflowTemplatePayload } from './types';
|
||||
import { Status } from '../types';
|
||||
|
||||
export const useWorkflowTemplate = defineStore('workflow-store', () => {
|
||||
const data = ref<WorkflowTemplate[]>([]);
|
||||
|
|
@ -22,6 +23,7 @@ export const useWorkflowTemplate = defineStore('workflow-store', () => {
|
|||
page?: number;
|
||||
pageSize?: number;
|
||||
query?: string;
|
||||
status?: Status;
|
||||
}) {
|
||||
const res = await api.get<PaginationResult<WorkflowTemplate>>(
|
||||
'/workflow-template',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue