|
@@ -203,7 +203,6 @@
|
|
|
<!-- 按钮行 -->
|
|
|
<a-row class="button-row" justify="end">
|
|
|
<a-button type="primary" @click="handleSearch">搜索</a-button>
|
|
|
- <a-button style="margin-left: 8px" @click="handleReset">重置</a-button>
|
|
|
</a-row>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -212,29 +211,40 @@
|
|
|
<div v-show="showDataContent" class="table-container">
|
|
|
<a-tabs v-model:activeKey="activeTabKey" @change="handleTabChange" class="custom-tabs" type="card">
|
|
|
<a-tab-pane key="transaction" tab="交易信息">
|
|
|
- <a-table :columns="columns" :data-source="tableData" :loading="loading" :pagination="{
|
|
|
- current: pagination.current,
|
|
|
- pageSize: pagination.pageSize,
|
|
|
- total: pagination.total,
|
|
|
- showSizeChanger: true,
|
|
|
- showQuickJumper: true,
|
|
|
- showTotal: (total) => `共 ${total} 条`,
|
|
|
- onChange: handleTableChange,
|
|
|
- onShowSizeChange: handleTableChange,
|
|
|
- }" @change="handleTableChange">
|
|
|
-
|
|
|
- <template #bodyCell="{ column, record, text }">
|
|
|
- <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>
|
|
|
+ <a-card title="交易信息">
|
|
|
+ <template #extra>
|
|
|
+ <span>排序:</span>
|
|
|
+ <a-radio-group v-model:value="sortMode" button-style="solid" style="margin-left: 16px;"
|
|
|
+ @change="handleSortChange">
|
|
|
+ <a-radio-button value="date">交易日期</a-radio-button>
|
|
|
+ <a-radio-button value="weight">交易重量</a-radio-button>
|
|
|
+ </a-radio-group>
|
|
|
</template>
|
|
|
- </a-table>
|
|
|
+ <a-table :columns="columns" :data-source="tableData" :loading="loading" :pagination="{
|
|
|
+ current: pagination.current,
|
|
|
+ pageSize: pagination.pageSize,
|
|
|
+ total: pagination.total,
|
|
|
+ showSizeChanger: true,
|
|
|
+ showQuickJumper: true,
|
|
|
+ showTotal: (total) => `共 ${total} 条`,
|
|
|
+ onChange: handleTableChange,
|
|
|
+ onShowSizeChange: handleTableChange,
|
|
|
+ }" @change="handleTableChange">
|
|
|
+
|
|
|
+ <template #bodyCell="{ column, record, text }">
|
|
|
+ <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>
|
|
|
+ </a-card>
|
|
|
+
|
|
|
<div :inert="isModalVisible">
|
|
|
<!-- 其他内容 -->
|
|
|
<a-modal v-model:open="isModalVisible" title="企业详情" :width="1200" @close="closeModal">
|
|
@@ -242,7 +252,8 @@
|
|
|
<div v-if="supplier">
|
|
|
<h1>{{ supplier.name }}</h1> <!-- 添加企业名称 -->
|
|
|
<p><strong>地址:</strong> {{ supplier.address }}</p> <!-- 添加企业地址 -->
|
|
|
- <p v-if="supplier.postal_code"><strong>联系方式:</strong> postal code:{{ supplier.postal_code }}</p> <!-- 添加联系方式 -->
|
|
|
+ <p v-if="supplier.postal_code"><strong>联系方式:</strong> postal code:{{ supplier.postal_code }}</p>
|
|
|
+ <!-- 添加联系方式 -->
|
|
|
</div>
|
|
|
</div>
|
|
|
<!-- 选项卡 -->
|
|
@@ -289,32 +300,6 @@
|
|
|
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-tabs>
|
|
|
</a-modal>
|
|
|
</div>
|
|
@@ -330,28 +315,28 @@
|
|
|
<trade-analysis :monthly-trend-data="monthlyTrendData" />
|
|
|
</div>
|
|
|
<div class="analysis-item">
|
|
|
- <HsCodeAnalysis :hs-code-data="hsCodeData" />
|
|
|
+ <HsCodeAnalysis :hs-code-data="hsCodeData" @update:sortMode="handleSortMode" />
|
|
|
</div>
|
|
|
<a-row :gutter="16">
|
|
|
<!-- 新增行 -->
|
|
|
<a-col :span="12">
|
|
|
<!-- 左侧列 -->
|
|
|
<div class="analysis-item">
|
|
|
- <OriginCountryAnalysis :origin-country-data="originCountryData" />
|
|
|
+ <OriginCountryAnalysis :origin-country-data="originCountryData" @update:sortMode="handleSortModeOriginCountryData" />
|
|
|
</div>
|
|
|
</a-col>
|
|
|
<a-col :span="12">
|
|
|
<!-- 右侧列 -->
|
|
|
<div class="analysis-item">
|
|
|
- <DestinationCountryAnalysis :destination-country-data="destinationCountryData" />
|
|
|
+ <DestinationCountryAnalysis :destination-country-data="destinationCountryData" @update:sortMode="handleSortModeDestinationCountryData"/>
|
|
|
</div>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
<div class="analysis-item">
|
|
|
- <SupplierList :supplierData="supplierData" />
|
|
|
+ <SupplierList :queryParam = "queryParam"/>
|
|
|
</div>
|
|
|
<div class="analysis-item">
|
|
|
- <BuyerList :buyerData="buyerData" />
|
|
|
+ <BuyerList :queryParam = "queryParam" />
|
|
|
</div>
|
|
|
</div>
|
|
|
</a-tab-pane>
|
|
@@ -380,6 +365,7 @@
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
import { reactive, ref, onMounted } from 'vue';
|
|
|
+import dayjs, { Dayjs } from 'dayjs';
|
|
|
import {
|
|
|
list,
|
|
|
listCompanies,
|
|
@@ -428,8 +414,8 @@ const queryParam = reactive<any>({});
|
|
|
const form = ref({
|
|
|
product: '',
|
|
|
hsCode: '',
|
|
|
- startDate: null,
|
|
|
- endDate: null,
|
|
|
+ startDate: dayjs('20230101'),//后面更换
|
|
|
+ endDate: dayjs('20230630'),//后面更换
|
|
|
supplier: '',
|
|
|
supplierReg: '',
|
|
|
supplierAddress: '',
|
|
@@ -536,36 +522,6 @@ const handleSearch = async () => {
|
|
|
}
|
|
|
};
|
|
|
|
|
|
-// 修改重置方法
|
|
|
-const handleReset = () => {
|
|
|
- // 隐藏数据内容
|
|
|
- showDataContent.value = false;
|
|
|
-
|
|
|
- // 重置表单
|
|
|
- form.value = {
|
|
|
- product: '',
|
|
|
- hsCode: '',
|
|
|
- startDate: null,
|
|
|
- endDate: null,
|
|
|
- supplier: '',
|
|
|
- supplierReg: '',
|
|
|
- supplierAddress: '',
|
|
|
- options: ['excludeNVL'],
|
|
|
- buyer: '',
|
|
|
- buyerReg: '',
|
|
|
- buyerAddress: '',
|
|
|
- buyerOptions: ['excludeNVL'],
|
|
|
- // ... 其他字段重置
|
|
|
- };
|
|
|
-
|
|
|
- // 重置查询参数,但保留基础参数
|
|
|
- Object.assign(queryParam, {
|
|
|
- source_type: 1,
|
|
|
- data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
- date: [20230101, 20230630],
|
|
|
- });
|
|
|
-};
|
|
|
-
|
|
|
const showAdvancedSearch = ref(false);
|
|
|
|
|
|
const toggleAdvancedSearch = () => {
|
|
@@ -577,7 +533,6 @@ onMounted(() => {
|
|
|
Object.assign(queryParam, {
|
|
|
source_type: 1,
|
|
|
data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
- date: [20230101, 20230630],
|
|
|
});
|
|
|
});
|
|
|
|
|
@@ -595,12 +550,9 @@ const handleTableChange = async (pag, filters, sorter) => {
|
|
|
loading.value = true;
|
|
|
try {
|
|
|
const params = {
|
|
|
+ sort: sortMode.value,
|
|
|
page: pag.current,
|
|
|
page_size: pag.pageSize,
|
|
|
- sortField: sorter?.field,
|
|
|
- sortOrder: sorter?.order,
|
|
|
- source_type: 1,
|
|
|
- data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
...queryParam,
|
|
|
};
|
|
|
|
|
@@ -663,7 +615,6 @@ const handleTabChange = async (key: string) => {
|
|
|
fetchHsCodeData(),
|
|
|
fetchOriginCountryData(),
|
|
|
fetchDestinationCountryData(),
|
|
|
- fetchSupplierData(),
|
|
|
fetchBuyerData(),
|
|
|
]);
|
|
|
} else if (key === 'shippingAnalysis') {
|
|
@@ -674,10 +625,6 @@ const handleTabChange = async (key: string) => {
|
|
|
fetchTransTypeData(),
|
|
|
fetchIncotermsData()
|
|
|
]);
|
|
|
- } else if (key === 'importTradingPartners') {
|
|
|
- await loadImportTradingPartnersData(); // Load import trading partners data
|
|
|
- } else if (key === 'exportTradingPartners') {
|
|
|
- await loadExportTradingPartnersData(); // Load export trading partners data
|
|
|
}
|
|
|
};
|
|
|
|
|
@@ -688,8 +635,6 @@ const monthlyTrendData = ref([]);
|
|
|
const loadMonthlyTrendData = async () => {
|
|
|
try {
|
|
|
const params = {
|
|
|
- source_type: 1,
|
|
|
- data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
...queryParam,
|
|
|
};
|
|
|
|
|
@@ -700,7 +645,6 @@ const loadMonthlyTrendData = async () => {
|
|
|
...item,
|
|
|
}));
|
|
|
}
|
|
|
- console.log(monthlyTrendData.value);
|
|
|
} catch (error) {
|
|
|
console.error('Failed to fetch data:', error);
|
|
|
} finally {
|
|
@@ -711,11 +655,10 @@ const loadMonthlyTrendData = async () => {
|
|
|
const hsCodeData = ref({});
|
|
|
|
|
|
// 获取HS编码数据
|
|
|
-const fetchHsCodeData = async () => {
|
|
|
+const fetchHsCodeData = async (sortMode = 'count') => {
|
|
|
const params = {
|
|
|
- source_type: 1,
|
|
|
- data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
...queryParam,
|
|
|
+ sort: sortMode,
|
|
|
};
|
|
|
const res = await getHsCodeReport(params);
|
|
|
hsCodeData.value = res.result.data.result;
|
|
@@ -724,11 +667,10 @@ const fetchHsCodeData = async () => {
|
|
|
const originCountryData = ref({});
|
|
|
|
|
|
// 获取原产国数据
|
|
|
-const fetchOriginCountryData = async () => {
|
|
|
+const fetchOriginCountryData = async (sortMode = 'count') => {
|
|
|
const params = {
|
|
|
- source_type: 1,
|
|
|
- data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
...queryParam,
|
|
|
+ sort: sortMode
|
|
|
};
|
|
|
const res = await getOrigCountryReport(params);
|
|
|
originCountryData.value = res.result.data.result;
|
|
@@ -737,36 +679,20 @@ const fetchOriginCountryData = async () => {
|
|
|
const destinationCountryData = ref({});
|
|
|
|
|
|
// 获取目的国数据
|
|
|
-const fetchDestinationCountryData = async () => {
|
|
|
+const fetchDestinationCountryData = async (sortMode = 'count') => {
|
|
|
const params = {
|
|
|
- source_type: 1,
|
|
|
- data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
...queryParam,
|
|
|
+ sort: sortMode
|
|
|
};
|
|
|
const res = await getDestCountryReport(params);
|
|
|
destinationCountryData.value = res.result.data.result;
|
|
|
};
|
|
|
|
|
|
-const supplierData = ref({});
|
|
|
-
|
|
|
-// 获取供应商数据
|
|
|
-const fetchSupplierData = async () => {
|
|
|
- const params = {
|
|
|
- source_type: 1,
|
|
|
- data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
- ...queryParam,
|
|
|
- };
|
|
|
- const res = await getSupplierReport(params);
|
|
|
- supplierData.value = res.result.data.result;
|
|
|
-};
|
|
|
-
|
|
|
const buyerData = ref({});
|
|
|
|
|
|
// 获取采购商数据
|
|
|
const fetchBuyerData = async () => {
|
|
|
const params = {
|
|
|
- source_type: 1,
|
|
|
- data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
...queryParam,
|
|
|
};
|
|
|
const res = await getBuyerReport(params);
|
|
@@ -777,8 +703,6 @@ const origPortData = ref({});
|
|
|
// 获取起运港数据
|
|
|
const fetchOrigPortData = async () => {
|
|
|
const params = {
|
|
|
- source_type: 1,
|
|
|
- data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
...queryParam,
|
|
|
};
|
|
|
const res = await getOrigPortReport(params);
|
|
@@ -789,8 +713,6 @@ const destPortData = ref({});
|
|
|
// 获取起运港数据
|
|
|
const fetchDestPortData = async () => {
|
|
|
const params = {
|
|
|
- source_type: 1,
|
|
|
- data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
...queryParam,
|
|
|
};
|
|
|
const res = await getDestPortReport(params);
|
|
@@ -801,8 +723,6 @@ const transTypeData = ref({});
|
|
|
// 获取运输方式数据
|
|
|
const fetchTransTypeData = async () => {
|
|
|
const params = {
|
|
|
- source_type: 1,
|
|
|
- data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
...queryParam,
|
|
|
};
|
|
|
const res = await getTransTypeReport(params);
|
|
@@ -813,8 +733,6 @@ const incotermsData = ref({});
|
|
|
// 获取成交方式数据
|
|
|
const fetchIncotermsData = async () => {
|
|
|
const params = {
|
|
|
- source_type: 1,
|
|
|
- data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
...queryParam,
|
|
|
};
|
|
|
const res = await getIncotermsReport(params);
|
|
@@ -831,11 +749,9 @@ const handleSupplierClick = async (supplierId) => {
|
|
|
loading.value = true;
|
|
|
selectedComId.value = supplierId; // Set the selected comId
|
|
|
const params = {
|
|
|
- source_type: 1,
|
|
|
- data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
- date: [20230101, 20230630],
|
|
|
com_id: supplierId,
|
|
|
com_role: 2,
|
|
|
+ ...queryParam,
|
|
|
};
|
|
|
const response = await getCompanyInfo(params);
|
|
|
supplier.value = {
|
|
@@ -859,11 +775,9 @@ 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,
|
|
|
+ ...queryParam,
|
|
|
};
|
|
|
const response = await getCompanyInfo(params);
|
|
|
supplier.value = {
|
|
@@ -885,8 +799,6 @@ const freightHistoryData = ref([]);
|
|
|
const loadFreightHistoryData = async () => {
|
|
|
try {
|
|
|
const params = {
|
|
|
- source_type: 1,
|
|
|
- data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
com_id: selectedComId.value,
|
|
|
...queryParam,
|
|
|
};
|
|
@@ -933,8 +845,6 @@ const companyHsCodeData = ref({});
|
|
|
// 获取企业HS编码数据
|
|
|
const fetchCompanyHsCodeData = async () => {
|
|
|
const params = {
|
|
|
- source_type: 1,
|
|
|
- data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
com_id: selectedComId.value,
|
|
|
com_role: 2,
|
|
|
...queryParam,
|
|
@@ -942,8 +852,6 @@ const fetchCompanyHsCodeData = async () => {
|
|
|
const res = await getCompanyHsCode(params);
|
|
|
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,
|
|
@@ -959,8 +867,6 @@ const tradePartnersData = ref({});
|
|
|
// 获取贸易伙伴数据
|
|
|
const fetchTradePartnersData = async () => {
|
|
|
const params = {
|
|
|
- source_type: 1,
|
|
|
- data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
com_id: selectedComId.value,
|
|
|
com_role: 2,
|
|
|
...queryParam,
|
|
@@ -968,8 +874,6 @@ const fetchTradePartnersData = async () => {
|
|
|
const res = await getCompanyPartner(params);
|
|
|
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,
|
|
@@ -982,8 +886,6 @@ const regionDistributionData = ref({});
|
|
|
// 获取企业区域分布数据
|
|
|
const fetchRegionDistributionData = async () => {
|
|
|
const params = {
|
|
|
- source_type: 1,
|
|
|
- data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
com_id: selectedComId.value,
|
|
|
com_role: 2,
|
|
|
...queryParam,
|
|
@@ -991,8 +893,6 @@ const fetchRegionDistributionData = async () => {
|
|
|
const res = await getRegionDistribution(params);
|
|
|
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,
|
|
@@ -1067,8 +967,6 @@ const loadExportDetailsData = async () => { // 新增加载出口详单数据的
|
|
|
loading.value = true;
|
|
|
try {
|
|
|
const params = {
|
|
|
- source_type: 1,
|
|
|
- data_source: ['IMP_AMERICA_BL_SEA'],
|
|
|
com_id: selectedComId.value,
|
|
|
com_role: 2,
|
|
|
...queryParam,
|
|
@@ -1126,8 +1024,6 @@ 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,
|
|
@@ -1159,119 +1055,24 @@ 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;
|
|
|
- }
|
|
|
+const handleSortMode = (value) => {
|
|
|
+ fetchHsCodeData(value);
|
|
|
};
|
|
|
|
|
|
-// 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 handleSortModeOriginCountryData = (value) => {
|
|
|
+ fetchOriginCountryData(value);
|
|
|
+}
|
|
|
|
|
|
-const paginationExportTradingPartners = ref({
|
|
|
- current: 1,
|
|
|
- pageSize: 10,
|
|
|
- total: 0,
|
|
|
-});
|
|
|
+const handleSortModeDestinationCountryData = (value) => {
|
|
|
+ fetchDestinationCountryData(value);
|
|
|
+}
|
|
|
|
|
|
-// 新增处理出口贸易伙伴表格的分页和排序
|
|
|
-const handleTableChangeExportTradingPartners = async (pag, filters, sorter) => {
|
|
|
- paginationExportTradingPartners.value.current = pag.current; // 更新当前页
|
|
|
- paginationExportTradingPartners.value.pageSize = pag.pageSize; // 更新每页条数
|
|
|
- // 其他处理逻辑...
|
|
|
-};
|
|
|
+const sortMode = ref('date'); // Set default sort mode to 'date'
|
|
|
|
|
|
-// 新增加载出口贸易伙伴数据的方法
|
|
|
-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;
|
|
|
- }
|
|
|
+// Modify handleSortChange to include sort parameter in the API request
|
|
|
+const handleSortChange = async (event) => {
|
|
|
+ sortMode.value = event.target.value; // Update sort mode
|
|
|
+ await handleTableChange(pagination.value)
|
|
|
};
|
|
|
</script>
|
|
|
|