context.ts 412 B

123456789101112
  1. import {createPageContext, createSearchContext, createTableSearchContext} from '@hooks';
  2. import {GetWarehousingFlowingListParams, OriginalListParams} from '@models';
  3. export const pageContext = createPageContext();
  4. export const searchContext = createSearchContext();
  5. export const contextState = {
  6. wllbCode: '',
  7. startTime: '',
  8. endTime: '',
  9. };
  10. export const context = createTableSearchContext(contextState);