sysGraphHttpUtils.ts 278 B

123456789101112
  1. /**
  2. * 系统图服务的http辅助类,供业务调用
  3. * nh 2022.1.5
  4. */
  5. import { httpUtils } from "./basic/httpUtils";
  6. export class sysGraphHttpUtils extends httpUtils {
  7. constructor() {
  8. super((window as any).__systemConf.diagramServiceUrl);
  9. };
  10. }