|
@@ -2,7 +2,13 @@ import { defHttp } from '/@/utils/http/axios';
|
|
|
|
|
|
enum Api {
|
|
|
list = '/tradesparq/cds_v2/old_api/record',
|
|
|
- listCompanies = '/tradesparq/tes/search/company',
|
|
|
+ listCompanies = '/tradesparq/cds_v2/old_api/company/info',
|
|
|
+ destCountry = '/tradesparq/cds_v2/old_api/report/dest_country',//
|
|
|
+ trend = '/tradesparq/cds_v2/old_api/trend',//月度趋势
|
|
|
+ hsCode = '/tradesparq/cds_v2/old_api/report/hs_code', // HS编码分析接口
|
|
|
+ origCountry = '/tradesparq/cds_v2/old_api/report/orig_country', // 原产地分析接口
|
|
|
+ supplierReport = '/tradesparq/cds_v2/old_api/report/supplier_report', // 新增供应商报告接口
|
|
|
+ buyerReport = '/tradesparq/cds_v2/old_api/report/buyer_report', // 采购商分析接口
|
|
|
}
|
|
|
|
|
|
// 定义请求参数类型
|
|
@@ -45,7 +51,7 @@ export interface TradeRecordQueryParams {
|
|
|
orig_port_t?: string; // 起运港
|
|
|
dest_country_code?: string[]; // 目的地编码数组
|
|
|
dest_port_t?: string; // 目的港
|
|
|
- [key: string]: any; // 允许其他未定义的参数
|
|
|
+ [key: string]: any; // 允许其他义的参数
|
|
|
}
|
|
|
|
|
|
// 定义响应数据类型
|
|
@@ -59,7 +65,162 @@ export interface TradeRecordResponse {
|
|
|
}>;
|
|
|
}
|
|
|
|
|
|
+// 定义目的国请求参数类型
|
|
|
+export interface DestCountryParams {
|
|
|
+ source_type?: number;
|
|
|
+ data_source?: string[];
|
|
|
+ date?: number[];
|
|
|
+ hs_code?: string;
|
|
|
+ supplier_t?: string;
|
|
|
+ buyer_t?: string;
|
|
|
+ [key: string]: any;
|
|
|
+}
|
|
|
+
|
|
|
+// 定义目的国响应数据类型
|
|
|
+export interface DestCountryResponse {
|
|
|
+ status_code: number;
|
|
|
+ data: {
|
|
|
+ result: {
|
|
|
+ buckets: Array<{
|
|
|
+ val: string; // 国家英文名
|
|
|
+ code: string; // 国家代码
|
|
|
+ val_cn: string; // 国家中文名
|
|
|
+ num_buyer: string; // 采购商数量
|
|
|
+ sum_amount: string; // 总金额
|
|
|
+ sum_weight: string; // 总重量
|
|
|
+ count: string; // 交易次数
|
|
|
+ }>;
|
|
|
+ numBuckets: number; // 总bucket数量
|
|
|
+ };
|
|
|
+ };
|
|
|
+}
|
|
|
+
|
|
|
+// 定义趋势请求参数类型
|
|
|
+export interface TrendParams {
|
|
|
+ source_type?: number;
|
|
|
+ data_source?: string[];
|
|
|
+ date?: number[];
|
|
|
+ hs_code?: string;
|
|
|
+ supplier_t?: string;
|
|
|
+ buyer_t?: string;
|
|
|
+ [key: string]: any;
|
|
|
+}
|
|
|
+
|
|
|
+// 定义趋势响应数据类型
|
|
|
+export interface TrendResponse {
|
|
|
+ status_code: number;
|
|
|
+ data: {
|
|
|
+ result: Array<{
|
|
|
+ val: string; // 月份信息
|
|
|
+ num_supplier: number; // 供应商数量
|
|
|
+ num_buyer: number; // 采购商数量
|
|
|
+ sum_amount: number; // 金额
|
|
|
+ sum_weight: number; // 重量
|
|
|
+ count: number; // 交易次数
|
|
|
+ }>;
|
|
|
+ };
|
|
|
+}
|
|
|
+
|
|
|
+// 定义HS编码分析请求参数类型
|
|
|
+export interface HsCodeParams {
|
|
|
+ source_type?: number;
|
|
|
+ data_source?: string[];
|
|
|
+ date?: number[];
|
|
|
+ hs_code?: string;
|
|
|
+ supplier_t?: string;
|
|
|
+ buyer_t?: string;
|
|
|
+ [key: string]: any;
|
|
|
+}
|
|
|
+
|
|
|
+// 定义HS编码分析响应数据类型
|
|
|
+export interface HsCodeResponse {
|
|
|
+ status_code: number;
|
|
|
+ data: {
|
|
|
+ result: {
|
|
|
+ buckets: Array<{
|
|
|
+ val: string; // HS编码
|
|
|
+ sum_amount: string; // 总金额
|
|
|
+ sum_weight: string; // 总重量
|
|
|
+ count: string; // 交易次数
|
|
|
+ }>;
|
|
|
+ numBuckets: number; // 总bucket数量
|
|
|
+ };
|
|
|
+ };
|
|
|
+}
|
|
|
|
|
|
+// 定义原产地请求参数类型
|
|
|
+export interface OrigCountryParams {
|
|
|
+ source_type?: number;
|
|
|
+ data_source?: string[];
|
|
|
+ date?: number[];
|
|
|
+ hs_code?: string;
|
|
|
+ supplier_t?: string;
|
|
|
+ buyer_t?: string;
|
|
|
+ [key: string]: any;
|
|
|
+}
|
|
|
+
|
|
|
+// 定义原产地响应数据类型
|
|
|
+export interface OrigCountryResponse {
|
|
|
+ status_code: number;
|
|
|
+ data: {
|
|
|
+ result: {
|
|
|
+ buckets: Array<{
|
|
|
+ val: string; // 国家英文名
|
|
|
+ code: string; // 国家代码
|
|
|
+ val_cn: string; // 国家中文名
|
|
|
+ num_supplier: string; // 供应商数量
|
|
|
+ sum_amount: string; // 总金额
|
|
|
+ sum_weight: string; // 总重量
|
|
|
+ count: string; // 交易次数
|
|
|
+ }>;
|
|
|
+ numBuckets: number; // 总bucket数量
|
|
|
+ };
|
|
|
+ };
|
|
|
+}
|
|
|
+
|
|
|
+// 定义供应商报告响应数据类型
|
|
|
+export interface SupplierReportResponse {
|
|
|
+ status_code: number;
|
|
|
+ data: {
|
|
|
+ result: {
|
|
|
+ buckets: Array<{
|
|
|
+ val: string; // 供应商名称
|
|
|
+ fk: string; // 供应商唯一标识
|
|
|
+ num_buyer: string; // 采购商数量
|
|
|
+ sum_amount: string; // 总金额
|
|
|
+ sum_weight: string; // 总重量
|
|
|
+ count: string; // 交易次数
|
|
|
+ }>;
|
|
|
+ numBuckets: number; // 总bucket数量
|
|
|
+ };
|
|
|
+ };
|
|
|
+}
|
|
|
+
|
|
|
+// 定义采购商分析请求参数类型
|
|
|
+export interface BuyerReportParams {
|
|
|
+ source_type?: number;
|
|
|
+ data_source?: string[];
|
|
|
+ date?: number[];
|
|
|
+ hs_code?: string;
|
|
|
+ supplier_t?: string;
|
|
|
+ buyer_t?: string;
|
|
|
+ [key: string]: any;
|
|
|
+}
|
|
|
+
|
|
|
+// 定义采购商分析响应数据类型
|
|
|
+export interface BuyerReportResponse {
|
|
|
+ status_code: number;
|
|
|
+ data: {
|
|
|
+ result: Array<{
|
|
|
+ val: string; // 采购商名称
|
|
|
+ num_supplier: string; // 供应商数量
|
|
|
+ sum_amount: string; // 总金额
|
|
|
+ sum_weight: string; // 总重量
|
|
|
+ count: string; // 交易次数
|
|
|
+ }>;
|
|
|
+ numBuckets: number; // 总bucket数量
|
|
|
+ };
|
|
|
+}
|
|
|
|
|
|
/**
|
|
|
* 获取交易详单列表及总数
|
|
@@ -80,3 +241,101 @@ export const list = async (params: TradeRecordQueryParams) => {
|
|
|
export const listCompanies = (params) => {
|
|
|
return defHttp.post({ url: Api.listCompanies, params });
|
|
|
};
|
|
|
+
|
|
|
+/**
|
|
|
+ * 获取目的国统计数据
|
|
|
+ */
|
|
|
+export const getDestCountryReport = (params: DestCountryParams) => {
|
|
|
+ return defHttp.post<DestCountryResponse>(
|
|
|
+ {
|
|
|
+ url: Api.destCountry,
|
|
|
+ params
|
|
|
+ },
|
|
|
+ {
|
|
|
+ errorMessageMode: 'message',
|
|
|
+ isTransformResponse: false,
|
|
|
+ }
|
|
|
+ );
|
|
|
+};
|
|
|
+
|
|
|
+/**
|
|
|
+ * 获取趋势统计数据
|
|
|
+ */
|
|
|
+export const getTrendReport = (params: TrendParams) => {
|
|
|
+ return defHttp.post<TrendResponse>(
|
|
|
+ {
|
|
|
+ url: Api.trend,
|
|
|
+ params
|
|
|
+ },
|
|
|
+ {
|
|
|
+ errorMessageMode: 'message',
|
|
|
+ isTransformResponse: false,
|
|
|
+ }
|
|
|
+ );
|
|
|
+};
|
|
|
+
|
|
|
+/**
|
|
|
+ * 获取HS编码分析统计数据
|
|
|
+ */
|
|
|
+export const getHsCodeReport = (params: HsCodeParams) => {
|
|
|
+ return defHttp.post<HsCodeResponse>(
|
|
|
+ {
|
|
|
+ url: Api.hsCode,
|
|
|
+ params
|
|
|
+ },
|
|
|
+ {
|
|
|
+ errorMessageMode: 'message',
|
|
|
+ isTransformResponse: false,
|
|
|
+ }
|
|
|
+ );
|
|
|
+};
|
|
|
+
|
|
|
+/**
|
|
|
+ * 获取原产地统计数据
|
|
|
+ */
|
|
|
+export const getOrigCountryReport = (params: OrigCountryParams) => {
|
|
|
+ return defHttp.post<OrigCountryResponse>(
|
|
|
+ {
|
|
|
+ url: Api.origCountry,
|
|
|
+ params
|
|
|
+ },
|
|
|
+ {
|
|
|
+ errorMessageMode: 'message',
|
|
|
+ isTransformResponse: false,
|
|
|
+ }
|
|
|
+ );
|
|
|
+};
|
|
|
+
|
|
|
+/**
|
|
|
+ * 获取供应商报告统计数据
|
|
|
+ */
|
|
|
+export const getSupplierReport = async (params: DestCountryParams) => {
|
|
|
+ return defHttp.post<SupplierReportResponse>(
|
|
|
+ {
|
|
|
+ url: Api.supplierReport,
|
|
|
+ params
|
|
|
+ },
|
|
|
+ {
|
|
|
+ errorMessageMode: 'message',
|
|
|
+ isTransformResponse: false,
|
|
|
+ }
|
|
|
+ );
|
|
|
+};
|
|
|
+
|
|
|
+/**
|
|
|
+ * 获取采购商分析统计数据
|
|
|
+ */
|
|
|
+export const getBuyerReport = (params: BuyerReportParams) => {
|
|
|
+ return defHttp.post<BuyerReportResponse>(
|
|
|
+ {
|
|
|
+ url: Api.buyerReport,
|
|
|
+ params
|
|
|
+ },
|
|
|
+ {
|
|
|
+ errorMessageMode: 'message',
|
|
|
+ isTransformResponse: false,
|
|
|
+ }
|
|
|
+ );
|
|
|
+};
|
|
|
+
|
|
|
+
|