| | |
| | | activeName: string; |
| | | goodsData: BigClassifyType []; |
| | | goodsBigClassifyList: BigClassifyType []; |
| | | consumableList?: Type []; |
| | | total: number; |
| | | listQuery: { |
| | | pageSize: number; |
| | |
| | | id: null | number; |
| | | materialClassifyName: string; |
| | | parentId: number | null; |
| | | consumable?: number | null; |
| | | }; |
| | | goodsClassifyRules: { |
| | | |
| | |
| | | outStorageData: { |
| | | smId: null | number, |
| | | count: null | number, |
| | | claimantId: null | number, |
| | | receiveUid: null | number, |
| | | rfid: null | string, |
| | | }; |
| | | outStorageDataRules: { |
| | |
| | | bigClassifyId: null | number, |
| | | smallClassifyId: null | number, |
| | | depId: null | number, |
| | | consumable: null | number, |
| | | // consumable: null | number, |
| | | } |
| | | |
| | | export type DataType = { |
| | |
| | | export type BigClassifyType = { |
| | | id: number; |
| | | materialClassifyName: string; |
| | | consumable?: number | null; |
| | | parentId?: number; |
| | | childList?: BigClassifyType []; |
| | | } |