123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- //common type file, you can not export the type in common.d.ts
- //not export can use
- interface ObjTy {
- [propName: string]: any
- }
- /*axiosReq请求配置*/
- import { AxiosRequestConfig } from 'axios'
- interface AxiosReqTy extends AxiosRequestConfig {
- url?: string
- method?: string
- data?: ObjTy
- isParams?: boolean
- bfLoading?: boolean
- afHLoading?: boolean
- isUploadFile?: boolean
- isDownLoadFile?: boolean
- isAlertErrorMsg?: boolean
- baseURL?: string
- timeout?: number
- }
- interface AxiosConfigTy {
- url?: string
- method?: string
- data?: ObjTy
- headers?: any
- isParams?: boolean
- bfLoading?: boolean
- afHLoading?: boolean
- isUploadFile?: boolean
- isDownLoadFile?: boolean
- isAlertErrorMsg?: boolean
- baseURL?: string
- timeout?: number
- }
- interface SettingTy {
- title: string
- sidebarLogo: boolean
- showLeftMenu: boolean
- ShowDropDown: boolean
- showHamburger: boolean
- isNeedLogin: boolean
- isNeedNprogress: boolean
- showTagsView: boolean
- tagsViewNum: number
- openProdMock: boolean
- errorLog: string | Array<string>
- permissionMode: string
- delWindowHeight: string
- tmpToken: string
- showNavbarTitle: boolean
- showTopNavbar: boolean
- mainNeedAnimation: boolean
- viteBasePath: string
- }
- interface CommonTableColumn {
- columnDescribe: string
- columnLabel: string
- columnName: string
- dataType: string
- listqueryTemplateID: number | null
- needCount: number
- needFilters: number
- needGroup: number
- needSearch: number | null
- needShow: number
- needSort: number
- orderNumber: number | null
- queryTemplateColumnSetID: number
- queryTemplateID: number
- [propName: string]: any
- }
- interface CommonData {
- [x: string]: string | number | null
- }
- interface SelectOption {
- k: string
- setlabel: string
- setvalue: string
- v: string
- [x: string]: string
- }
- interface CommonQueryResult<T = any> {
- code?: string | number
- returnData: {
- columnSet: CommonTableColumn[]
- listValues: Array<T>
- }
- message?: string
- needPage?: number
- submitID?: number
- [propName: string]: any
- }
- type SelectOptionQueryResult = CommonQueryResult<SelectOption>
|