common.d.ts 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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 | null
  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 CommonData {
  73. [x: string]: string | number | null
  74. }
  75. interface SelectOption {
  76. k: string
  77. setlabel: string
  78. setvalue: string
  79. v: string
  80. [x: string]: string
  81. }
  82. interface CommonQueryResult<T = any> {
  83. code?: string | number
  84. returnData: {
  85. columnSet: CommonTableColumn[]
  86. listValues: Array<T>
  87. }
  88. message?: string
  89. needPage?: number
  90. submitID?: number
  91. [propName: string]: any
  92. }
  93. type SelectOptionQueryResult = CommonQueryResult<SelectOption>