data.ts 349 B

12345678910111213141516171819
  1. import { A1tableType } from '@/types'
  2. export type A1FromDataType = {
  3. searchKey: string
  4. num: string
  5. storageArr: number[] | undefined
  6. storageId: number | null
  7. exhibitTypeId: number | null
  8. pageNum: number
  9. pageSize: number
  10. }
  11. export type A1EditInfoType = {
  12. id: number
  13. txt: '新增' | '编辑' | '查看' | ''
  14. info?: A1tableType
  15. }