迁移新平台,移植红墩界
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 line
449B

  1. import { Injectable } from '@angular/core';
  2. import { _HttpClient } from '@delon/theme';
  3. import { environment } from '@env/environment';
  4. import { InputObservable } from 'ng-zorro-antd/core/types';
  5. import { Observable } from 'rxjs';
  6. @Injectable({
  7. providedIn: 'root'
  8. })
  9. export class WfService {
  10. constructor(private http: _HttpClient) { }
  11. baseUrl = `${environment.api['tsUrl']}`;
  12. wfDefnUrl = `api/TaskScheduling/WorkflowDefinition`;
  13. }