1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- //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
- needCount: number
- needFilters: number
- needGroup: number
- needSearch: number | null
- needShow: number
- needSort: number
- orderNumber: number | null
- queryTemplateColumnSetID: number
- queryTemplateID: number
- [propName: string]: any
- }
- interface SelectOptionObj {
- k: string
- setlabel: string
- setvalue: string
- v: any
- }
- 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<SelectOptionObj>
|