24 lines
455 B
JavaScript
24 lines
455 B
JavaScript
import { atom } from 'recoil'
|
|
|
|
export const estimateParamAtom = atom({
|
|
// 견적서 post parameter
|
|
key: 'estimateParamAtom',
|
|
default: {
|
|
saleStoreId: '',
|
|
objectNo: '',
|
|
planNo: '',
|
|
slope: '',
|
|
angle: '',
|
|
surfaceType: '',
|
|
setupHeight: '',
|
|
standardWindSpeedId: '',
|
|
snowfall: '',
|
|
northArrangement: '',
|
|
drawingFlg: '1',
|
|
userId: '',
|
|
roofSurfaceList: [],
|
|
circuitItemList: [],
|
|
itemList: [],
|
|
},
|
|
})
|