import Http from '~~/utils/http'; import {ResOptions} from "~~/api/types"; export default new class AboutApi extends Http> { private readonly prefix = '/index' private readonly about_url = '/aboutUs' private readonly contract_url = '/contactUs' getAboutInfo() { return this.get(this.contact(this.prefix, this.about_url)) } getContractInfo() { return this.get(this.contact(this.prefix, this.contract_url)) } }