Browse Source

Refactor customsData.api.ts and customsData.vue for improved API integration and data handling

- Simplified API endpoint definitions by removing dynamic base URL logic.
- Enhanced TradeRecordQueryParams interface for better clarity and maintainability.
- Updated response handling in customsData.vue to correctly access nested data structure.
- Improved error handling and data mapping for transaction records.
zq940222 3 months ago
parent
commit
eccd7b1bf9
2 changed files with 54 additions and 81 deletions
  1. 51 78
      src/views/adweb/data/customsData.api.ts
  2. 3 3
      src/views/adweb/data/customsData.vue

+ 51 - 78
src/views/adweb/data/customsData.api.ts

@@ -1,101 +1,74 @@
 import { defHttp } from '/@/utils/http/axios';
-import md5 from 'md5';
-
-const API_UID = "Sw5bYYe7";  // 替换为实际的 API ID
-const API_SECRET = "j4ThjI10jiV3L3y7";  // 替换为实际的 API Secret
-
-const BASE_URL = import.meta.env.PROD 
-  ? 'https://openapi.tradesparq.com'
-  : 'http://localhost:3100/tradesparq';
 
 enum Api {
-  list = `${BASE_URL}/cds_v2/old_api/record`,
-  listCompanies = `${BASE_URL}/tes/search/company`,
+    list = '/tradesparq/cds_v2/old_api/record',
+    listCompanies = '/tradesparq/tes/search/company',
 }
 
 // 定义请求参数类型
 export interface TradeRecordQueryParams {
-  source_type?: number; // 数据源类型,1:2018年到至今数据,2:历史数据
-  data_source?: string[]; // 数据源数组
-  date?: number[]; // 时间范围,用两个元素的数组表示,元素为8位数字
-  prod_desc?: string; // 产品关键词
-  hs_code?: string; // HS编码2-10位
-  supplier_t?: string; // 供应商名称
-  supplier_addr?: string; // 供应商地址
-  supplier_ex_nvl?: boolean; // 排除NVL供应商名称
-  supplier_ex_log?: boolean; // 排除物流供应商名称
-  buyer_t?: string; // 采购商名称
-  buyer_addr?: string; // 采购商地址
-  buyer_ex_nvl?: boolean; // 排除NVL采购商名称
-  buyer_ex_log?: boolean; // 排除物流采购商名称
-  quantity?: string[]; // 数量范围数组
-  weight?: string[]; // 重量范围数组
-  amount?: string[]; // 金额范围数组
-  teu?: string[]; // TEU范围数组
-  master_bill_no?: string; // 主单号(模糊匹配)
-  sub_bill_no?: string; // 分单号(模糊匹配)
-  container_no?: string[]; // 集装箱号(模糊匹配)
-  carrier_name?: string; // 承运人(模糊匹配)
-  vessel_name?: string; // 船名(模糊匹配)
-  brand?: string; // 商标
-  others?: string; // 其他信息
-  log_shipper?: string; // 物流发货人
-  log_consignee?: string; // 物流收货人
-  f_orig_country?: string[]; // 筛选,原产地包含数组
-  f_orig_country_ex?: string[]; // 筛选,原产地不包含数组
-  f_orig_port?: string[]; // 筛选,起运港ID包含数组
-  f_orig_port_ex?: string[]; // 筛选,起运港ID不包含数组
-  f_dest_country?: string[]; // 筛选,目的地包含数组
-  f_dest_country_ex?: string[]; // 筛选,目的地不包含数组
-  f_dest_port?: string[]; // 筛选,目的港ID包含数组
-  f_dest_port_ex?: string[]; // 筛选,目的港ID不包含数组
-  orig_country_code?: string[]; // 原产地编码数组
-  orig_port_t?: string; // 起运港
-  dest_country_code?: string[]; // 目的地编码数组
-  dest_port_t?: string; // 目的港
-  [key: string]: any; // 允许其他未定义的参数
+    source_type?: number; // 数据源类型,1:2018年到至今数据,2:历史数据
+    data_source?: string[]; // 数据源数组
+    date?: number[]; // 时间范围,用两个元素的数组表示,元素为8位数字
+    prod_desc?: string; // 产品关键词
+    hs_code?: string; // HS编码2-10位
+    supplier_t?: string; // 供应商名称
+    supplier_addr?: string; // 供应商地址
+    supplier_ex_nvl?: boolean; // 排除NVL供应商名称
+    supplier_ex_log?: boolean; // 排除物流供应商名称
+    buyer_t?: string; // 采购商名称
+    buyer_addr?: string; // 采购商地址
+    buyer_ex_nvl?: boolean; // 排除NVL采购商名称
+    buyer_ex_log?: boolean; // 排除物流采购商名称
+    quantity?: string[]; // 数量范围数组
+    weight?: string[]; // 重量范围数组
+    amount?: string[]; // 金额范围数组
+    teu?: string[]; // TEU范围数组
+    master_bill_no?: string; // 主单号(模糊匹配)
+    sub_bill_no?: string; // 分单号(模糊匹配)
+    container_no?: string[]; // 集装箱号(模糊匹配)
+    carrier_name?: string; // 承运人(模糊匹配)
+    vessel_name?: string; // 船名(模糊匹配)
+    brand?: string; // 商标
+    others?: string; // 其他信息
+    log_shipper?: string; // 物流发货人
+    log_consignee?: string; // 物流收货人
+    f_orig_country?: string[]; // 筛选,原产地包含数组
+    f_orig_country_ex?: string[]; // 筛选,原产地不包含数组
+    f_orig_port?: string[]; // 筛选,起运港ID包含数组
+    f_orig_port_ex?: string[]; // 筛选,起运港ID不包含数组
+    f_dest_country?: string[]; // 筛选,目的地包含数组
+    f_dest_country_ex?: string[]; // 筛选,目的地不包含数组
+    f_dest_port?: string[]; // 筛选,目的港ID包含数组
+    f_dest_port_ex?: string[]; // 筛选,目的港ID不包含数组
+    orig_country_code?: string[]; // 原产地编码数组
+    orig_port_t?: string; // 起运港
+    dest_country_code?: string[]; // 目的地编码数组
+    dest_port_t?: string; // 目的港
+    [key: string]: any; // 允许其他未定义的参数
 }
 
 // 定义响应数据类型
 export interface TradeRecordResponse {
-  total: number;
-  records: Array<{
-    id: string;
-    date: string;
-    weight: number;
-    [key: string]: any;
-  }>;
+    total: number;
+    records: Array<{
+        id: string;
+        date: string;
+        weight: number;
+        [key: string]: any;
+    }>;
 }
 
-/**
- * 生成请求签名
- */
-function generateRequestSign(params: TradeRecordQueryParams): string {
-    const sortedValues = Object.keys(params)
-        .sort()
-        .map(k => JSON.stringify(params[k]))
-        .join('');
-    
-    // 使用 md5 模块生成签名
-    return md5(API_SECRET + sortedValues);
-}
+
 
 /**
  * 获取交易详单列表及总数
  */
 export const list = async (params: TradeRecordQueryParams) => {
-    const requestSign = generateRequestSign(params);
-    
+
     return defHttp.post<TradeRecordResponse>(
         {
-            url: Api.list,
-            params,
-            headers: {
-                'Content-Type': 'application/json',
-                'X-API-UID': API_UID,
-                'X-API-REQUEST-SIGN': requestSign
-            },
-            withCredentials: false,
+            url: Api.list, params
         },
         {
             errorMessageMode: 'message',

+ 3 - 3
src/views/adweb/data/customsData.vue

@@ -469,16 +469,16 @@ const handleTableChange = async (pag, filters, sorter) => {
         };
 
         const res = await list(params);
-        if (res.data.result && res.data.result.docs) {
+        if (res.result.data.result && res.result.data.result.docs) {
             // 处理日期格式
-            tableData.value = res.data.result.docs.map(item => ({
+            tableData.value = res.result.data.result.docs.map(item => ({
                 ...item,
                 date: item.date ? item.date.split(' ')[0] : ''  // 只保留日期部分
             }));
             pagination.value = {
                 current: pag.current,
                 pageSize: pag.pageSize,
-                total: res.data.result.numFound || 0
+                total: res.result.data.result.numFound || 0
             };
         }
     } catch (error) {