1234567891011121314151617 |
- /**
- * 这是所有模块公用业务逻辑的服务
- */
- export default class CommonService {
- constructor(AjaxService) {
- Object.assign(this, { AjaxService })
- this.name = 'CommonService'
- }
- /* api公用定义 */
- getQueryCategory (data = {}) {
- return this.AjaxService.get({ url:'/product/classify', data, isLoading: true })
- }
- /* 首页banner */
- getExpressInformation (data = {}) {
- return this.AjaxService.get({ url:'https://www.kuaidi100.com/autonumber/autoComNum', data, isLoading: false })
- }
- }
|