import { atom } from 'recoil' import dayjs from 'dayjs' import { v1 } from 'uuid' export const planReqSearchState = atom({ key: `planReqSearchState/${v1()}`, default: { saleStoreId: '', //판매점ID 세션 saleStoreLevel: '', //판매점레벨 세션 schPlanReqNo: '', //설계의뢰 번호 schTitle: '', //안건명 schAddress: '', //도도부현 schSaleStoreName: '', //판매대리점명 schPlanReqName: '', //의뢰자명 schPlanStatCd: '', //상태코드 schDateGbn: 'S', //기간구분코드(S/R) schStartDt: dayjs(new Date()).add(-3, 'month').format('YYYY-MM-DD'), //시작일 schEndDt: dayjs(new Date()).format('YYYY-MM-DD'), //종료일 startRow: 1, endRow: 20, }, dangerouslyAllowMutability: true, })