订单上报

This commit is contained in:
潘晓云
2022-03-29 11:00:15 +08:00
parent b87e2f6898
commit 7fd86fde99
8 changed files with 555 additions and 7 deletions

View File

@ -0,0 +1,15 @@
import { Injectable, Injector } from '@angular/core';
import { BaseService } from '@shared';
@Injectable({
providedIn: 'root'
})
export class ReportingService extends BaseService {
$api_order_reporting_page = ``; // 订单上报列表
$api_recall_reporting = ``; // 撤回
$api_async_export_order_reporting_list = ``; // 导出订单上报
constructor(public injector: Injector) {
super(injector);
}
}