import Http from '~~/utils/http'; import {InformationDto, PaginationDto, ResOptions} from "~~/api/types"; export default new class TechnicalApi extends Http> { private readonly technical = '/technical/info' private readonly technicalCate = '/technical/cate' private readonly technicalLists = '/technical/lists' getTechnicalDetail(id:string) { return this.get(this.technical, {id}) } getTechnicalCate() { return this.get(this.technicalCate) } getTechnicalList(data:any) { return this.get(this.technicalLists, data) } }