common.d.ts 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. //common type file, you can not export the type in common.d.ts
  2. //not export can use
  3. interface ObjTy {
  4. [propName: string]: any
  5. }
  6. /*axiosReq请求配置*/
  7. import { AxiosRequestConfig } from 'axios'
  8. interface AxiosReqTy extends AxiosRequestConfig {
  9. url?: string
  10. method?: string
  11. data?: ObjTy
  12. isParams?: boolean
  13. bfLoading?: boolean
  14. afHLoading?: boolean
  15. isUploadFile?: boolean
  16. isDownLoadFile?: boolean
  17. isAlertErrorMsg?: boolean
  18. baseURL?: string
  19. timeout?: number
  20. }
  21. interface AxiosConfigTy {
  22. url?: string
  23. method?: string
  24. data?: ObjTy
  25. headers?: any
  26. isParams?: boolean
  27. bfLoading?: boolean
  28. afHLoading?: boolean
  29. isUploadFile?: boolean
  30. isDownLoadFile?: boolean
  31. isAlertErrorMsg?: boolean
  32. baseURL?: string
  33. timeout?: number
  34. }
  35. interface SettingTy {
  36. title: string
  37. sidebarLogo: boolean
  38. showLeftMenu: boolean
  39. ShowDropDown: boolean
  40. showHamburger: boolean
  41. isNeedLogin: boolean
  42. isNeedNprogress: boolean
  43. showTagsView: boolean
  44. tagsViewNum: number
  45. openProdMock: boolean
  46. errorLog: string | Array<string>
  47. permissionMode: string
  48. delWindowHeight: string
  49. tmpToken: string
  50. showNavbarTitle: boolean
  51. showTopNavbar: boolean
  52. mainNeedAnimation: boolean
  53. viteBasePath: string
  54. }
  55. interface CommonTableColumn {
  56. columnDescribe: string
  57. columnLabel: string
  58. columnName: string
  59. dataType: string
  60. listqueryTemplateID: number
  61. needCount: number
  62. needFilters: number
  63. needGroup: number
  64. needSearch: number | null
  65. needShow: number
  66. needSort: number
  67. orderNumber: number | null
  68. queryTemplateColumnSetID: number
  69. queryTemplateID: number
  70. [propName: string]: any
  71. }
  72. interface SelectOptionObj {
  73. k: string
  74. setlabel: string
  75. setvalue: string
  76. v: any
  77. }
  78. interface CommonQueryResult<T = any> {
  79. code?: string | number
  80. returnData: {
  81. columnSet: CommonTableColumn[]
  82. listValues: Array<T>
  83. }
  84. message?: string
  85. needPage?: number
  86. submitiD?: number
  87. [propName: string]: any
  88. }
  89. type SelectOptionQueryResult = CommonQueryResult<SelectOptionObj>