common.d.ts 2.2 KB

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