This commit is contained in:
Taric Xin
2022-01-13 17:13:24 +08:00
parent 46379ffe4f
commit fe3d6b6f92
14 changed files with 288 additions and 27 deletions

View File

@ -0,0 +1,18 @@
import { Injectable, Injector } from '@angular/core';
import { BaseService } from '@shared';
@Injectable({
providedIn: 'root',
})
export class DownloadService extends BaseService {
// 删除多个实例接口地址
$api_del_many = '/scm/cms/cms/deleteRecordInfo/file';
// 获取实例分页数据接口地址
$api_get_page = '/api/mdc/pbc/asynExportInfo/getAsynExportInfoListPage';
// 下载文件
$api_download_file = '/api/mdc/pbc/download/file';
constructor(public injector: Injector) {
super(injector);
}
}