diff --git a/src/typings/api.d.ts b/src/typings/api.d.ts index 9cc03cf..40ea80d 100644 --- a/src/typings/api.d.ts +++ b/src/typings/api.d.ts @@ -703,7 +703,7 @@ declare namespace Api { Api.RetryDeadLetter.DeadLetter, 'id' | 'uniqueId' | 'groupName' | 'sceneName' | 'idempotentId' | 'bizNo' | 'taskType' | 'createDt' > & - CommonSearchParams + CommonSearchParams & { beginDate: number; endDate: number } >; /** DeadLetter list */ @@ -1115,7 +1115,8 @@ declare namespace Api { /** workflowBatch search params */ type WorkflowBatchSearchParams = CommonType.RecordNullable< - Pick & CommonSearchParams + Pick & + CommonSearchParams & { beginDate: number; endDate: number } >; /** workflowBatch list */ @@ -1165,7 +1166,7 @@ declare namespace Api { /** retryLog search params */ type RetryLogSearchParams = CommonType.RecordNullable< Pick & - CommonSearchParams + CommonSearchParams & { beginDate: number; endDate: number } >; /** retryLog list */ diff --git a/src/views/retry/dead-letter/index.vue b/src/views/retry/dead-letter/index.vue index 83ed710..c0a80e3 100644 --- a/src/views/retry/dead-letter/index.vue +++ b/src/views/retry/dead-letter/index.vue @@ -30,7 +30,9 @@ const { columns, columnChecks, data, getData, loading, mobilePagination, searchP page: 1, size: 10, groupName: null, - sceneName: null + sceneName: null, + beginDate: null, + endDate: null // if you want to use the searchParams in Form, you need to define the following properties, and the value is null // the value can not be undefined, otherwise the property in Form will not be reactive }, diff --git a/src/views/retry/dead-letter/modules/dead-letter-search.vue b/src/views/retry/dead-letter/modules/dead-letter-search.vue index 2bdbb1b..65d3eb4 100644 --- a/src/views/retry/dead-letter/modules/dead-letter-search.vue +++ b/src/views/retry/dead-letter/modules/dead-letter-search.vue @@ -33,6 +33,9 @@ function search() { + + + diff --git a/src/views/retry/log/index.vue b/src/views/retry/log/index.vue index 9aca5d9..b947e29 100644 --- a/src/views/retry/log/index.vue +++ b/src/views/retry/log/index.vue @@ -31,7 +31,9 @@ const { columns, columnChecks, data, getData, loading, mobilePagination, searchP sceneName: null, idempotentId: null, bizNo: null, - retryStatus: null + retryStatus: null, + beginDate: null, + endDate: null }, searchParams: { retryStatus diff --git a/src/views/retry/log/modules/retry-log-search.vue b/src/views/retry/log/modules/retry-log-search.vue index f779999..c69fd69 100644 --- a/src/views/retry/log/modules/retry-log-search.vue +++ b/src/views/retry/log/modules/retry-log-search.vue @@ -52,6 +52,9 @@ function search() { clearable /> + + + diff --git a/src/views/workflow/batch/index.vue b/src/views/workflow/batch/index.vue index 8a4bbfc..c621287 100644 --- a/src/views/workflow/batch/index.vue +++ b/src/views/workflow/batch/index.vue @@ -22,7 +22,9 @@ const { columns, columnChecks, data, getData, loading, mobilePagination, searchP // the value can not be undefined, otherwise the property in Form will not be reactive workflowId: null, groupName: null, - taskBatchStatus: null + taskBatchStatus: null, + beginDate: null, + endDate: null }, searchParams: { workflowId, diff --git a/src/views/workflow/batch/modules/workflow-batch-search.vue b/src/views/workflow/batch/modules/workflow-batch-search.vue index 7dfe2f3..1c5f2c1 100644 --- a/src/views/workflow/batch/modules/workflow-batch-search.vue +++ b/src/views/workflow/batch/modules/workflow-batch-search.vue @@ -67,6 +67,9 @@ groupNameUpdate(''); > + + +