/** * 这是所有模块公用业务逻辑的服务 */ export default class CommonService { constructor(AjaxService) { Object.assign(this, { AjaxService }) this.name = 'CommonService' } /* 扫码后去快递信息 */ getExpressInformation (data = {}) { return this.AjaxService.get({ url:'https://www.kuaidi100.com/autonumber/autoComNum', data, isLoading: false }) } }