//common type file, you can not export the type in common.d.ts //not export can use import { Ref, VNode } from 'vue' interface ObjTy { [propName: string]: any } import { AxiosRequestConfig } from 'axios' import { TableColumnCtx } from 'element-plus/es/components/table/src/table-column/defaults' /*axiosReq请求配置*/ 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 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 | null needFilters: number | null needGroup: number | null needSearch: number | null needShow: number | null needSort: number | null orderNumber: number | null queryTemplateColumnSetID: number | null queryTemplateID: number | null [propName: string]: any } interface tableColumnGroup { title: string columns: CommonTableColumn[] } type CommonValue = string | number | null interface CommonData { [x: string]: CommonValue } type CommonTableFormatter = ( row: CommonData, column: TableColumnCtx, cellValue: CommonValue, index: number ) => VNode | string interface SelectOption { k: string setlabel: string setvalue: string v: string [x: string]: string } interface CommonQueryResult { code?: string | number returnData: { columnSet: CommonTableColumn[] listValues: Array submitID?: number } message?: string needPage?: number [propName: string]: any } type SelectOptionQueryResult = CommonQueryResult type MaybeRef = Ref | T interface WarningNode { flight_no: string flight_date: string iata_code: string node_code: string alarm_type: number }