common.d.ts 2.6 KB

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