|
@@ -231,21 +231,45 @@
|
|
|
</a-table>
|
|
|
<div :inert="isModalVisible">
|
|
|
<!-- 其他内容 -->
|
|
|
- <a-modal v-model:open="isModalVisible" title="企业详情">
|
|
|
+ <a-modal v-model:open="isModalVisible" title="企业详情" :width="1200" @close="closeModal">
|
|
|
<div>
|
|
|
<div v-if="supplier">
|
|
|
<h1>{{ supplier.name }}</h1> <!-- 添加企业名称 -->
|
|
|
<p><strong>地址:</strong> {{ supplier.address }}</p> <!-- 添加企业地址 -->
|
|
|
- <p><strong>联系方式:</strong> postal code:{{ supplier.postal_code }}</p> <!-- 添加联系方式 -->
|
|
|
+ <p v-if="supplier.postal_code"><strong>联系方式:</strong> postal code:{{ supplier.postal_code }}</p> <!-- 添加联系方式 -->
|
|
|
</div>
|
|
|
</div>
|
|
|
- <!-- 新增选项卡 -->
|
|
|
- <a-tabs v-model:activeKey="activeTabKey" @change="handleTabChange" type="card">
|
|
|
+ <!-- 选项卡 -->
|
|
|
+ <a-tabs v-model:activeKey="activeTabKey1" @change="handleTabChange1" type="card">
|
|
|
<a-tab-pane key="tradeOverview" tab="贸易总览">
|
|
|
<!-- 贸易总览内容 -->
|
|
|
+ <div class="analysis-content">
|
|
|
+ <div class="analysis-item">
|
|
|
+ <FreightHistory :data="freightHistoryData" />
|
|
|
+ </div>
|
|
|
+ <div class="analysis-item">
|
|
|
+ <HsCodeAnalysis :hsCodeData="companyHsCodeData" />
|
|
|
+ </div>
|
|
|
+ <div class="analysis-item">
|
|
|
+ <TradePartners :data="tradePartnersData" />
|
|
|
+ </div>
|
|
|
+ <div class="analysis-item">
|
|
|
+ <RegionDistribution :data="regionDistributionData" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</a-tab-pane>
|
|
|
<a-tab-pane key="exportDetails" tab="出口详单">
|
|
|
- <!-- 出口详单内容 -->
|
|
|
+ <!-- 新增表格展示出口详单 -->
|
|
|
+ <a-table :columns="exportDetailsColumns" :data-source="exportDetailsData" :loading="loading"
|
|
|
+ :pagination="{
|
|
|
+ current: paginationExportDetails.current,
|
|
|
+ pageSize: paginationExportDetails.pageSize,
|
|
|
+ total: paginationExportDetails.total,
|
|
|
+ showSizeChanger: true,
|
|
|
+ showQuickJumper: true,
|
|
|
+ showTotal: (total) => `共 ${total} 条`,
|
|
|
+ onChange: handleTableChangeExportDetails,
|
|
|
+ }" />
|
|
|
</a-tab-pane>
|
|
|
<a-tab-pane key="exportTradingPartners" tab="出口贸易伙伴">
|
|
|
<!-- 出口贸易伙伴内容 -->
|
|
@@ -331,7 +355,12 @@ import {
|
|
|
getDestPortReport,
|
|
|
getTransTypeReport,
|
|
|
getIncotermsReport,
|
|
|
- getCompanyInfo
|
|
|
+ getCompanyInfo,
|
|
|
+ getMonthly,
|
|
|
+ getCompanyHsCode,
|
|
|
+ getCompanyPartner,
|
|
|
+ getRegionDistribution,
|
|
|
+ getCompanyRecord
|
|
|
} from './customsData.api';
|
|
|
import { columns } from './customsData.data';
|
|
|
import CompanyList from './components/CompanyList.vue';
|
|
@@ -345,11 +374,11 @@ import OrigPortAnalysis from './components/OrigPortAnalysis.vue';
|
|
|
import DestPortAnalysis from './components/DestPortAnalysis.vue';
|
|
|
import TransTypeAnalysis from './components/TransTypeAnalysis.vue';
|
|
|
import IncotermsAnalysis from './components/IncotermsAnalysis.vue';
|
|
|
-import { Dayjs } from 'dayjs';
|
|
|
+import FreightHistory from './components/FreightHistory.vue';
|
|
|
+import TradePartners from './components/TradePartners.vue';
|
|
|
+import RegionDistribution from './components/RegionDistribution.vue';
|
|
|
|
|
|
const supplier = ref<{ name: string; address: string; postal_code: string } | null>(null);
|
|
|
-type RangeValue = [Dayjs, Dayjs];
|
|
|
-const date = ref<RangeValue>();
|
|
|
|
|
|
// 当前激活的标签页
|
|
|
const activeTabKey = ref('transaction');
|
|
@@ -398,7 +427,7 @@ const form = ref({
|
|
|
// 添加控制数据展示的状态
|
|
|
const showDataContent = ref(false);
|
|
|
|
|
|
-// ���改 handleSearch 方法
|
|
|
+// 修改 handleSearch 方法
|
|
|
const handleSearch = async () => {
|
|
|
showDataContent.value = true;
|
|
|
|
|
@@ -496,11 +525,6 @@ const handleReset = () => {
|
|
|
data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
date: [20230101, 20230630],
|
|
|
});
|
|
|
-
|
|
|
- // 重新加载数据
|
|
|
- if (activeTabKey.value === 'transaction') {
|
|
|
- reloadTransaction();
|
|
|
- }
|
|
|
};
|
|
|
|
|
|
const showAdvancedSearch = ref(false);
|
|
@@ -763,30 +787,229 @@ const fetchIncotermsData = async () => {
|
|
|
|
|
|
const isModalVisible = ref(false);
|
|
|
|
|
|
-// 修改供应商名称的点击事件
|
|
|
+// Add a new ref to store the selected supplierId
|
|
|
+const selectedSupplierId = ref<string | null>(null);
|
|
|
+
|
|
|
+// Modify the handleSupplierClick function to set the selectedSupplierId
|
|
|
const handleSupplierClick = async (supplierId) => {
|
|
|
loading.value = true;
|
|
|
+ selectedSupplierId.value = supplierId; // Set the selected supplierId
|
|
|
const params = {
|
|
|
source_type: 1,
|
|
|
data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
date: [20230101, 20230630],
|
|
|
- com_id:supplierId,
|
|
|
+ com_id: supplierId,
|
|
|
com_role: 2,
|
|
|
- }
|
|
|
+ };
|
|
|
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(',') : '' // 检查 postal_code 是否为 null
|
|
|
- }; // Adjust based on your API response structure
|
|
|
- loading.value = false; // 请求供应商详细信息
|
|
|
- isModalVisible.value = true; // 显示弹窗
|
|
|
+ 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
|
|
|
+const loadFreightHistoryData = async () => {
|
|
|
+ try {
|
|
|
+ const params = {
|
|
|
+ source_type: 1,
|
|
|
+ data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
+ com_id: selectedSupplierId.value,
|
|
|
+ ...queryParam,
|
|
|
+ };
|
|
|
+
|
|
|
+ // Fetch export data (com_role: 2)
|
|
|
+ const exportParams = { ...params, com_role: 2 };
|
|
|
+ const exportRes = await getMonthly(exportParams);
|
|
|
+ const exportData = exportRes?.result?.data?.result?.as_supplier?.monthly?.buckets?.map((item) => ({
|
|
|
+ val: item.val,
|
|
|
+ num_supplier: item.count,
|
|
|
+ num_buyer: 0, // Initialize import count
|
|
|
+ })) || [];
|
|
|
+
|
|
|
+ // Fetch import data (com_role: 1)
|
|
|
+ const importParams = { ...params, com_role: 1 };
|
|
|
+ const importRes = await getMonthly(importParams);
|
|
|
+ const importData = importRes?.result?.data?.result?.as_buyer?.monthly?.buckets?.map((item) => ({
|
|
|
+ val: item.val,
|
|
|
+ num_supplier: 0,
|
|
|
+ num_buyer: item.count, // Initialize export count
|
|
|
+ })) || [];
|
|
|
+
|
|
|
+ // Combine data by date
|
|
|
+ const combinedData = [...exportData, ...importData].reduce((acc, item) => {
|
|
|
+ const existing = acc.find((i) => i.val === item.val);
|
|
|
+ if (existing) {
|
|
|
+ existing.num_supplier += item.num_supplier;
|
|
|
+ existing.num_buyer += item.num_buyer;
|
|
|
+ } else {
|
|
|
+ acc.push(item);
|
|
|
+ }
|
|
|
+ return acc;
|
|
|
+ }, []);
|
|
|
+
|
|
|
+ freightHistoryData.value = combinedData;
|
|
|
+ } catch (error) {
|
|
|
+ console.error('Failed to fetch freight history data:', error);
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+// 企业HS编码数据
|
|
|
+const companyHsCodeData = ref({});
|
|
|
+
|
|
|
+// 获取企业HS编码数据
|
|
|
+const fetchCompanyHsCodeData = async () => {
|
|
|
+ const params = {
|
|
|
+ source_type: 1,
|
|
|
+ data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
+ com_id: selectedSupplierId.value,
|
|
|
+ com_role: 2,
|
|
|
+ ...queryParam,
|
|
|
+ };
|
|
|
+ const res = await getCompanyHsCode(params);
|
|
|
+ console.log(res);
|
|
|
+ companyHsCodeData.value = res.data.result.as_supplier.hs_code;
|
|
|
+};
|
|
|
+
|
|
|
+// 贸易伙伴数据
|
|
|
+const tradePartnersData = ref({});
|
|
|
+
|
|
|
+// 获取贸易伙伴数据
|
|
|
+const fetchTradePartnersData = async () => {
|
|
|
+ const params = {
|
|
|
+ source_type: 1,
|
|
|
+ data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
+ com_id: selectedSupplierId.value,
|
|
|
+ com_role: 2,
|
|
|
+ ...queryParam,
|
|
|
+ };
|
|
|
+ const res = await getCompanyPartner(params);
|
|
|
+ tradePartnersData.value = res.data.result.as_supplier.buyer;
|
|
|
};
|
|
|
|
|
|
-onMounted(() => { });
|
|
|
+const regionDistributionData = ref({});
|
|
|
+// 获取企业区域分布数据
|
|
|
+const fetchRegionDistributionData = async () => {
|
|
|
+ const params = {
|
|
|
+ source_type: 1,
|
|
|
+ data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
+ com_id: selectedSupplierId.value,
|
|
|
+ com_role: 2,
|
|
|
+ ...queryParam,
|
|
|
+ };
|
|
|
+ const res = await getRegionDistribution(params);
|
|
|
+ regionDistributionData.value = res.data.result.as_supplier.dest_country;
|
|
|
+};
|
|
|
+
|
|
|
+// Call the function to load data
|
|
|
+onMounted(() => {
|
|
|
+});
|
|
|
+
|
|
|
+// Current active tab for the modal
|
|
|
+const activeTabKey1 = ref('tradeOverview'); // Set default tab key
|
|
|
+
|
|
|
+// Handle tab change for the modal
|
|
|
+const handleTabChange1 = async (key: string) => {
|
|
|
+ activeTabKey1.value = key;
|
|
|
+ if (key === 'tradeOverview') {
|
|
|
+ await loadFreightHistoryData(); // Load freight history data
|
|
|
+ } else if (key === 'exportDetails') {
|
|
|
+ await loadExportDetailsData(); // Load export details data
|
|
|
+ } else if (key === 'exportTradingPartners') {
|
|
|
+ // Load export trading partners data
|
|
|
+ console.log('Load export trading partners data');
|
|
|
+ } else if (key === 'enterpriseAtlas') {
|
|
|
+ // Load enterprise atlas data
|
|
|
+ console.log('Load enterprise atlas data');
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+const exportDetailsData = ref([]); // 新增用于存储出口详单数据
|
|
|
+const exportDetailsColumns = [ // 新增表格列定义
|
|
|
+ {
|
|
|
+ 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 paginationExportDetails = ref({
|
|
|
+ current: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ total: 0,
|
|
|
+});
|
|
|
+
|
|
|
+const handleTableChangeExportDetails = async (pag, filters, sorter) => {
|
|
|
+ paginationExportDetails.value.current = pag.current; // 更新当前页
|
|
|
+ paginationExportDetails.value.pageSize = pag.pageSize; // 更新每页条数
|
|
|
+ // 其他处理逻辑...
|
|
|
+};
|
|
|
+
|
|
|
+const loadExportDetailsData = async () => { // 新增加载出口详单数据的方法
|
|
|
+ loading.value = true;
|
|
|
+ try {
|
|
|
+ const params = {
|
|
|
+ source_type: 1,
|
|
|
+ data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
+ com_id: selectedSupplierId.value,
|
|
|
+ com_role: 2,
|
|
|
+ ...queryParam,
|
|
|
+ };
|
|
|
+ const res = await getCompanyRecord(params);
|
|
|
+ exportDetailsData.value = res.data.result.as_supplier.response.docs.map((item) => ({
|
|
|
+ ...item,
|
|
|
+ date: item.date ? item.date.split(' ')[0] : '', // 只保留日期部分
|
|
|
+ })); // 存储回的数据
|
|
|
+ } catch (error) {
|
|
|
+ console.error('Failed to fetch export details:', error);
|
|
|
+ } finally {
|
|
|
+ loading.value = false;
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+// 修改关闭弹窗的逻辑
|
|
|
+const closeModal = () => {
|
|
|
+ activeTabKey1.value = 'tradeOverview'
|
|
|
+ isModalVisible.value = false; // 关闭弹窗
|
|
|
+ resetModalData(); // 重置数据
|
|
|
+};
|
|
|
+
|
|
|
+// 添加重置数据的函数
|
|
|
+const resetModalData = () => {
|
|
|
+ supplier.value = null; // 重置供应商信息
|
|
|
+ freightHistoryData.value = []; // 重置货运历史数据
|
|
|
+ companyHsCodeData.value = {}; // 重置企业HS编码数据
|
|
|
+ tradePartnersData.value = {}; // 重置贸易伙伴数据
|
|
|
+ regionDistributionData.value = {}; // 重置区域分布数据
|
|
|
+};
|
|
|
</script>
|
|
|
|
|
|
<style scoped lang="less">
|
|
|
-
|
|
|
.search-form {
|
|
|
padding: 20px;
|
|
|
background-color: #f5f5f5;
|