baseHttpUtils.ts 276 B

123456789101112
  1. /**
  2. * 基础数据访问的http辅助类,供业务调用
  3. * nh 2021.12.23
  4. */
  5. import { httpUtils } from "./basic/httpUtils";
  6. export class baseHttpUtils extends httpUtils {
  7. constructor() {
  8. super((window as any).__systemConf.baseServiceUrl);
  9. };
  10. }