|
@@ -227,6 +227,12 @@
|
|
|
<template v-if="column.key === 'supplier_t'">
|
|
|
<a @click="handleSupplierClick(record.supplier_id)">{{ text }}</a>
|
|
|
</template>
|
|
|
+ <template v-if="column.key === 'buyer_t'">
|
|
|
+ <a @click="handleBuyerClick(record.buyer_id)">{{ text }}</a>
|
|
|
+ </template>
|
|
|
+ <template v-if="column.key === 'freight_intro'">
|
|
|
+ <a @click="handleFreightIntroClick()">详细信息</a>
|
|
|
+ </template>
|
|
|
</template>
|
|
|
</a-table>
|
|
|
<div :inert="isModalVisible">
|
|
@@ -248,7 +254,7 @@
|
|
|
<FreightHistory :data="freightHistoryData" />
|
|
|
</div>
|
|
|
<div class="analysis-item">
|
|
|
- <HsCodeAnalysis :hsCodeData="companyHsCodeData" />
|
|
|
+ <CompanyProduct :hsCodeData="companyHsCodeData" />
|
|
|
</div>
|
|
|
<div class="analysis-item">
|
|
|
<TradePartners :data="tradePartnersData" />
|
|
@@ -258,8 +264,20 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</a-tab-pane>
|
|
|
+ <a-tab-pane key="importDetails" tab="进口详单">
|
|
|
+ <!-- 新增表格展示进口详单 -->
|
|
|
+ <a-table :columns="importDetailsColumns" :data-source="importDetailsData" :loading="loading"
|
|
|
+ :pagination="{
|
|
|
+ current: paginationImportDetails.current,
|
|
|
+ pageSize: paginationImportDetails.pageSize,
|
|
|
+ total: paginationImportDetails.total,
|
|
|
+ showSizeChanger: true,
|
|
|
+ showQuickJumper: true,
|
|
|
+ showTotal: (total) => `共 ${total} 条`,
|
|
|
+ onChange: handleTableChangeImportDetails,
|
|
|
+ }" />
|
|
|
+ </a-tab-pane>
|
|
|
<a-tab-pane key="exportDetails" tab="出口详单">
|
|
|
- <!-- 新增表格展示出口详单 -->
|
|
|
<a-table :columns="exportDetailsColumns" :data-source="exportDetailsData" :loading="loading"
|
|
|
:pagination="{
|
|
|
current: paginationExportDetails.current,
|
|
@@ -271,12 +289,32 @@
|
|
|
onChange: handleTableChangeExportDetails,
|
|
|
}" />
|
|
|
</a-tab-pane>
|
|
|
+ <!-- <a-tab-pane key="importTradingPartners" tab="进口贸易伙伴">
|
|
|
+ <a-table :columns="importTradingPartnersColumns" :data-source="importTradingPartnersData" :loading="loading"
|
|
|
+ :pagination="{
|
|
|
+ current: paginationImportTradingPartners.current,
|
|
|
+ pageSize: paginationImportTradingPartners.pageSize,
|
|
|
+ total: paginationImportTradingPartners.total,
|
|
|
+ showSizeChanger: true,
|
|
|
+ showQuickJumper: true,
|
|
|
+ showTotal: (total) => `共 ${total} 条`,
|
|
|
+ onChange: handleTableChangeImportTradingPartners,
|
|
|
+ }" />
|
|
|
+ </a-tab-pane>
|
|
|
<a-tab-pane key="exportTradingPartners" tab="出口贸易伙伴">
|
|
|
- <!-- 出口贸易伙伴内容 -->
|
|
|
+ <a-table :columns="exportTradingPartnersColumns" :data-source="exportTradingPartnersData" :loading="loading"
|
|
|
+ :pagination="{
|
|
|
+ current: paginationExportTradingPartners.current,
|
|
|
+ pageSize: paginationExportTradingPartners.pageSize,
|
|
|
+ total: paginationExportTradingPartners.total,
|
|
|
+ showSizeChanger: true,
|
|
|
+ showQuickJumper: true,
|
|
|
+ showTotal: (total) => `共 ${total} 条`,
|
|
|
+ onChange: handleTableChangeExportTradingPartners,
|
|
|
+ }" />
|
|
|
</a-tab-pane>
|
|
|
<a-tab-pane key="enterpriseAtlas" tab="企业图谱">
|
|
|
- <!-- 企业图谱内容 -->
|
|
|
- </a-tab-pane>
|
|
|
+ </a-tab-pane> -->
|
|
|
</a-tabs>
|
|
|
</a-modal>
|
|
|
</div>
|
|
@@ -377,6 +415,8 @@ import IncotermsAnalysis from './components/IncotermsAnalysis.vue';
|
|
|
import FreightHistory from './components/FreightHistory.vue';
|
|
|
import TradePartners from './components/TradePartners.vue';
|
|
|
import RegionDistribution from './components/RegionDistribution.vue';
|
|
|
+import CompanyProduct from './components/CompanyProduct.vue';
|
|
|
+import { index } from 'd3';
|
|
|
|
|
|
const supplier = ref<{ name: string; address: string; postal_code: string } | null>(null);
|
|
|
|
|
@@ -605,7 +645,7 @@ const handleCompareClick = (company) => {
|
|
|
console.log('Compare clicked for company:', company.name);
|
|
|
};
|
|
|
|
|
|
-// 在 handleTabChange 中添加企业列表数据加载逻辑
|
|
|
+// Consolidate handleTabChange function
|
|
|
const handleTabChange = async (key: string) => {
|
|
|
activeTabKey.value = key;
|
|
|
if (key === 'companies') {
|
|
@@ -618,30 +658,27 @@ const handleTabChange = async (key: string) => {
|
|
|
console.error('Failed to fetch companies:', error);
|
|
|
}
|
|
|
} else if (key === 'tradeAnalysis') {
|
|
|
- // 当切换到贸易类分析报告标签页时,加载月度趋势数据
|
|
|
- try {
|
|
|
- await Promise.all([
|
|
|
- loadMonthlyTrendData(),
|
|
|
- fetchHsCodeData(),
|
|
|
- fetchOriginCountryData(),
|
|
|
- fetchDestinationCountryData(),
|
|
|
- fetchSupplierData(),
|
|
|
- fetchBuyerData(),
|
|
|
- ]);
|
|
|
- } catch (error) {
|
|
|
- console.error('Failed to load analysis data:', error);
|
|
|
- }
|
|
|
+ // Load trade analysis data
|
|
|
+ await Promise.all([
|
|
|
+ loadMonthlyTrendData(),
|
|
|
+ fetchHsCodeData(),
|
|
|
+ fetchOriginCountryData(),
|
|
|
+ fetchDestinationCountryData(),
|
|
|
+ fetchSupplierData(),
|
|
|
+ fetchBuyerData(),
|
|
|
+ ]);
|
|
|
} else if (key === 'shippingAnalysis') {
|
|
|
- try {
|
|
|
- await Promise.all([
|
|
|
- fetchOrigPortData(),
|
|
|
- fetchDestPortData(),
|
|
|
- fetchTransTypeData(),
|
|
|
- fetchIncotermsData()
|
|
|
- ])
|
|
|
- } catch (error) {
|
|
|
- console.error('Failed to load analysis data:', error);
|
|
|
- }
|
|
|
+ // Load shipping analysis data
|
|
|
+ await Promise.all([
|
|
|
+ fetchOrigPortData(),
|
|
|
+ fetchDestPortData(),
|
|
|
+ fetchTransTypeData(),
|
|
|
+ fetchIncotermsData()
|
|
|
+ ]);
|
|
|
+ } else if (key === 'importTradingPartners') {
|
|
|
+ await loadImportTradingPartnersData(); // Load import trading partners data
|
|
|
+ } else if (key === 'exportTradingPartners') {
|
|
|
+ await loadExportTradingPartnersData(); // Load export trading partners data
|
|
|
}
|
|
|
};
|
|
|
|
|
@@ -788,12 +825,12 @@ const fetchIncotermsData = async () => {
|
|
|
const isModalVisible = ref(false);
|
|
|
|
|
|
// Add a new ref to store the selected supplierId
|
|
|
-const selectedSupplierId = ref<string | null>(null);
|
|
|
+const selectedComId = ref<string | null>(null);
|
|
|
|
|
|
-// Modify the handleSupplierClick function to set the selectedSupplierId
|
|
|
+// Modify the handleSupplierClick function to set the selectedComId
|
|
|
const handleSupplierClick = async (supplierId) => {
|
|
|
loading.value = true;
|
|
|
- selectedSupplierId.value = supplierId; // Set the selected supplierId
|
|
|
+ selectedComId.value = supplierId; // Set the selected comId
|
|
|
const params = {
|
|
|
source_type: 1,
|
|
|
data_source: ['IMP_AMERICA_BL_SEA'],
|
|
@@ -815,6 +852,34 @@ const handleSupplierClick = async (supplierId) => {
|
|
|
await fetchRegionDistributionData();
|
|
|
};
|
|
|
|
|
|
+const handleFreightIntroClick = async () => {
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+const handleBuyerClick = async (buyerId) => {
|
|
|
+ loading.value = true;
|
|
|
+ selectedComId.value = buyerId;
|
|
|
+ const params = {
|
|
|
+ source_type: 1,
|
|
|
+ data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
+ date: [20230101, 20230630],
|
|
|
+ com_id: buyerId,
|
|
|
+ com_role: 1,
|
|
|
+ };
|
|
|
+ const response = await getCompanyInfo(params);
|
|
|
+ supplier.value = {
|
|
|
+ ...response.result.data.result,
|
|
|
+ postal_code: response.result.data.result.postal_code ? response.result.data.result.postal_code.join(',') : ''
|
|
|
+ };
|
|
|
+ loading.value = false;
|
|
|
+ isModalVisible.value = true;
|
|
|
+ activeTabKey1.value = 'tradeOverview';
|
|
|
+ await loadFreightHistoryData();
|
|
|
+ await fetchCompanyHsCodeData();
|
|
|
+ await fetchTradePartnersData();
|
|
|
+ await fetchRegionDistributionData();
|
|
|
+}
|
|
|
+
|
|
|
const freightHistoryData = ref([]);
|
|
|
|
|
|
// Fetch freight history data for both roles and combine
|
|
@@ -823,7 +888,7 @@ const loadFreightHistoryData = async () => {
|
|
|
const params = {
|
|
|
source_type: 1,
|
|
|
data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
- com_id: selectedSupplierId.value,
|
|
|
+ com_id: selectedComId.value,
|
|
|
...queryParam,
|
|
|
};
|
|
|
|
|
@@ -871,13 +936,22 @@ const fetchCompanyHsCodeData = async () => {
|
|
|
const params = {
|
|
|
source_type: 1,
|
|
|
data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
- com_id: selectedSupplierId.value,
|
|
|
+ com_id: selectedComId.value,
|
|
|
com_role: 2,
|
|
|
...queryParam,
|
|
|
};
|
|
|
const res = await getCompanyHsCode(params);
|
|
|
- console.log(res);
|
|
|
- companyHsCodeData.value = res.data.result.as_supplier.hs_code;
|
|
|
+ companyHsCodeData.value.as_supplier = res.data.result.as_supplier.hs_code;
|
|
|
+ const params1 = {
|
|
|
+ source_type: 1,
|
|
|
+ data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
+ com_id: selectedComId.value,
|
|
|
+ com_role: 1,
|
|
|
+ ...queryParam,
|
|
|
+ };
|
|
|
+ const res1 = await getCompanyHsCode(params1);
|
|
|
+ companyHsCodeData.value.as_buyer = res1.data.result.as_buyer?.hs_code;
|
|
|
+
|
|
|
};
|
|
|
|
|
|
// 贸易伙伴数据
|
|
@@ -888,12 +962,21 @@ const fetchTradePartnersData = async () => {
|
|
|
const params = {
|
|
|
source_type: 1,
|
|
|
data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
- com_id: selectedSupplierId.value,
|
|
|
+ com_id: selectedComId.value,
|
|
|
com_role: 2,
|
|
|
...queryParam,
|
|
|
};
|
|
|
const res = await getCompanyPartner(params);
|
|
|
- tradePartnersData.value = res.data.result.as_supplier.buyer;
|
|
|
+ tradePartnersData.value.as_supplier = res.data.result.as_supplier.buyer;
|
|
|
+ const params1 = {
|
|
|
+ source_type: 1,
|
|
|
+ data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
+ com_id: selectedComId.value,
|
|
|
+ com_role: 1,
|
|
|
+ ...queryParam,
|
|
|
+ };
|
|
|
+ const res1 = await getCompanyPartner(params1);
|
|
|
+ tradePartnersData.value.as_buyer = res1.data.result.as_buyer.buyer;
|
|
|
};
|
|
|
|
|
|
const regionDistributionData = ref({});
|
|
@@ -902,12 +985,21 @@ const fetchRegionDistributionData = async () => {
|
|
|
const params = {
|
|
|
source_type: 1,
|
|
|
data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
- com_id: selectedSupplierId.value,
|
|
|
+ com_id: selectedComId.value,
|
|
|
com_role: 2,
|
|
|
...queryParam,
|
|
|
};
|
|
|
const res = await getRegionDistribution(params);
|
|
|
- regionDistributionData.value = res.data.result.as_supplier.dest_country;
|
|
|
+ regionDistributionData.value.as_supplier = res.data.result.as_supplier.dest_country;
|
|
|
+ const params1 = {
|
|
|
+ source_type: 1,
|
|
|
+ data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
+ com_id: selectedComId.value,
|
|
|
+ com_role: 1,
|
|
|
+ ...queryParam,
|
|
|
+ };
|
|
|
+ const res1 = await getRegionDistribution(params1);
|
|
|
+ regionDistributionData.value.as_buyer = res1.data.result.as_buyer.dest_country;
|
|
|
};
|
|
|
|
|
|
// Call the function to load data
|
|
@@ -922,6 +1014,8 @@ const handleTabChange1 = async (key: string) => {
|
|
|
activeTabKey1.value = key;
|
|
|
if (key === 'tradeOverview') {
|
|
|
await loadFreightHistoryData(); // Load freight history data
|
|
|
+ } else if (key === 'importDetails') {
|
|
|
+ await loadImportDetailsData();
|
|
|
} else if (key === 'exportDetails') {
|
|
|
await loadExportDetailsData(); // Load export details data
|
|
|
} else if (key === 'exportTradingPartners') {
|
|
@@ -976,7 +1070,7 @@ const loadExportDetailsData = async () => { // 新增加载出口详单数据的
|
|
|
const params = {
|
|
|
source_type: 1,
|
|
|
data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
- com_id: selectedSupplierId.value,
|
|
|
+ com_id: selectedComId.value,
|
|
|
com_role: 2,
|
|
|
...queryParam,
|
|
|
};
|
|
@@ -992,6 +1086,65 @@ const loadExportDetailsData = async () => { // 新增加载出口详单数据的
|
|
|
}
|
|
|
};
|
|
|
|
|
|
+const importDetailsData = ref([]); // 新增用于存储进口详单数据
|
|
|
+const importDetailsColumns = [ // 新增表格列定义
|
|
|
+ {
|
|
|
+ title: '供应商',
|
|
|
+ dataIndex: 'supplier_t',
|
|
|
+ key: 'supplier_t',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '采购商',
|
|
|
+ dataIndex: 'buyer_t',
|
|
|
+ key: 'buyer_t',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '货运介绍',
|
|
|
+ dataIndex: 'freightDescription',
|
|
|
+ key: 'freightDescription',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '日期',
|
|
|
+ dataIndex: 'date',
|
|
|
+ key: 'date',
|
|
|
+ sorter: (a, b) => new Date(a.date) - new Date(b.date),
|
|
|
+ },
|
|
|
+];
|
|
|
+
|
|
|
+const paginationImportDetails = ref({
|
|
|
+ current: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ total: 0,
|
|
|
+});
|
|
|
+
|
|
|
+const handleTableChangeImportDetails = async (pag, filters, sorter) => {
|
|
|
+ paginationImportDetails.value.current = pag.current; // 更新当前页
|
|
|
+ paginationImportDetails.value.pageSize = pag.pageSize; // 更新每页条数
|
|
|
+ // 其他处理逻辑...
|
|
|
+};
|
|
|
+
|
|
|
+const loadImportDetailsData = async () => { // 新增加载进口详单数据的方法
|
|
|
+ loading.value = true;
|
|
|
+ try {
|
|
|
+ const params = {
|
|
|
+ source_type: 1,
|
|
|
+ data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
+ com_id: selectedComId.value,
|
|
|
+ com_role: 1,
|
|
|
+ ...queryParam,
|
|
|
+ };
|
|
|
+ const res = await getCompanyRecord(params);
|
|
|
+ importDetailsData.value = res.data.result.as_buyer.response.docs.map((item) => ({
|
|
|
+ ...item,
|
|
|
+ date: item.date ? item.date.split(' ')[0] : '', // 只保留日期部分
|
|
|
+ })); // 存储回的数据
|
|
|
+ } catch (error) {
|
|
|
+ console.error('Failed to fetch import details:', error);
|
|
|
+ } finally {
|
|
|
+ loading.value = false;
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
// 修改关闭弹窗的逻辑
|
|
|
const closeModal = () => {
|
|
|
activeTabKey1.value = 'tradeOverview'
|
|
@@ -1007,6 +1160,120 @@ const resetModalData = () => {
|
|
|
tradePartnersData.value = {}; // 重置贸易伙伴数据
|
|
|
regionDistributionData.value = {}; // 重置区域分布数据
|
|
|
};
|
|
|
+
|
|
|
+// Add these new variables
|
|
|
+const importTradingPartnersData = ref([]); // 新增用于存储进口贸易伙伴数据
|
|
|
+const importTradingPartnersColumns = [ // 新增表格列定义
|
|
|
+ {
|
|
|
+ title: '企业名称',
|
|
|
+ dataIndex: 'companyName',
|
|
|
+ key: 'companyName',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '重量 (KG)',
|
|
|
+ dataIndex: 'weight',
|
|
|
+ key: 'weight',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '金额 ($)',
|
|
|
+ dataIndex: 'amount',
|
|
|
+ key: 'amount',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '交易次数',
|
|
|
+ dataIndex: 'transactionCount',
|
|
|
+ key: 'transactionCount',
|
|
|
+ },
|
|
|
+];
|
|
|
+
|
|
|
+const paginationImportTradingPartners = ref({
|
|
|
+ current: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ total: 0,
|
|
|
+});
|
|
|
+
|
|
|
+// 新增处理进口贸易伙伴表格的分页和排序
|
|
|
+const handleTableChangeImportTradingPartners = async (pag, filters, sorter) => {
|
|
|
+ paginationImportTradingPartners.value.current = pag.current; // 更新当前页
|
|
|
+ paginationImportTradingPartners.value.pageSize = pag.pageSize; // 更新每页条数
|
|
|
+ // 其他处理逻辑...
|
|
|
+};
|
|
|
+
|
|
|
+// 新增加载进口贸易伙伴数据的方法
|
|
|
+const loadImportTradingPartnersData = async () => {
|
|
|
+ loading.value = true;
|
|
|
+ try {
|
|
|
+ const params = {
|
|
|
+ source_type: 1,
|
|
|
+ data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
+ ...queryParam,
|
|
|
+ };
|
|
|
+ const res = await getCompanyPartner(params); // 假设这个API可以获取进口贸易伙伴数据
|
|
|
+ importTradingPartnersData.value = res.data.result; // 存储回的数据
|
|
|
+ paginationImportTradingPartners.value.total = res.data.total; // 更新总数
|
|
|
+ } catch (error) {
|
|
|
+ console.error('Failed to fetch import trading partners:', error);
|
|
|
+ } finally {
|
|
|
+ loading.value = false;
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+// Add these new variables
|
|
|
+const exportTradingPartnersData = ref([]); // 新增用于存储出口贸易伙伴数据
|
|
|
+const exportTradingPartnersColumns = [ // 新增表格列定义
|
|
|
+ {
|
|
|
+ title: '企业名称',
|
|
|
+ dataIndex: 'companyName',
|
|
|
+ key: 'companyName',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '重量 (KG)',
|
|
|
+ dataIndex: 'weight',
|
|
|
+ key: 'weight',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '金额 ($)',
|
|
|
+ dataIndex: 'amount',
|
|
|
+ key: 'amount',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '交易次数',
|
|
|
+ dataIndex: 'transactionCount',
|
|
|
+ key: 'transactionCount',
|
|
|
+ },
|
|
|
+];
|
|
|
+
|
|
|
+const paginationExportTradingPartners = ref({
|
|
|
+ current: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ total: 0,
|
|
|
+});
|
|
|
+
|
|
|
+// 新增处理出口贸易伙伴表格的分页和排序
|
|
|
+const handleTableChangeExportTradingPartners = async (pag, filters, sorter) => {
|
|
|
+ paginationExportTradingPartners.value.current = pag.current; // 更新当前页
|
|
|
+ paginationExportTradingPartners.value.pageSize = pag.pageSize; // 更新每页条数
|
|
|
+ // 其他处理逻辑...
|
|
|
+};
|
|
|
+
|
|
|
+// 新增加载出口贸易伙伴数据的方法
|
|
|
+const loadExportTradingPartnersData = async () => {
|
|
|
+ loading.value = true;
|
|
|
+ try {
|
|
|
+ const params = {
|
|
|
+ source_type: 1,
|
|
|
+ data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
+ ...queryParam,
|
|
|
+ };
|
|
|
+ const res = await getCompanyPartner(params); // 假设这个API可以获取出口贸易伙伴数据
|
|
|
+ exportTradingPartnersData.value = res.data.result; // 存储回的数据
|
|
|
+ paginationExportTradingPartners.value.total = res.data.total; // 更新总数
|
|
|
+ } catch (error) {
|
|
|
+ console.error('Failed to fetch export trading partners:', error);
|
|
|
+ } finally {
|
|
|
+ loading.value = false;
|
|
|
+ }
|
|
|
+};
|
|
|
</script>
|
|
|
|
|
|
<style scoped lang="less">
|