fix bug
This commit is contained in:
@ -27,6 +27,8 @@ export class DataService extends BaseService {
|
||||
$api_listPerformanceReportPage = `/api/sdc/report/listPerformanceReportPage`;
|
||||
// 运营报表运单状态分布
|
||||
$api_operationalReportWaybillStatusDistribution = `/api/sdc/report/operationalReportWaybillStatusDistribution`;
|
||||
// 运营报表柱状图
|
||||
$api_operationalReportHistogram = `/api/sdc/report/operationalReportHistogram`;
|
||||
// 获取网络货运人
|
||||
$api_get_network_freight_forwarder_list = `/api/mdc/cuc/networkTransporter/findAll`;
|
||||
// 业绩报表柱状图
|
||||
@ -35,6 +37,9 @@ export class DataService extends BaseService {
|
||||
// 查询开票数据报表
|
||||
$api_findInvoiceReport = `/api/fcc/invoiceReport/findInvoiceReport`;
|
||||
|
||||
// 查询货主报表
|
||||
$api_listShipperReportPage = `/api/sdc/report/listShipperReportPage`;
|
||||
|
||||
constructor(public injector: Injector) {
|
||||
super(injector);
|
||||
}
|
||||
@ -43,7 +48,7 @@ export class DataService extends BaseService {
|
||||
* 获取网络货运人
|
||||
* @returns
|
||||
*/
|
||||
getNetworkFreightForwarder(params = {}, containerAll = false) {
|
||||
getNetworkFreightForwarder(params = {}, containerAll = false) {
|
||||
return this.request(this.$api_get_network_freight_forwarder_list, params).pipe(
|
||||
map((res: any) => {
|
||||
if (!res) {
|
||||
@ -64,7 +69,7 @@ export class DataService extends BaseService {
|
||||
);
|
||||
}
|
||||
|
||||
getPerformanceReportHistogram(params = {}){
|
||||
getPerformanceReportHistogram(params = {}) {
|
||||
return this.request(this.$api_performanceReportHistogram, params)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user