|
@@ -3,7 +3,6 @@
|
|
|
<div v-for="company in companies" :key="company.name" class="company-card">
|
|
|
<div class="company-header">
|
|
|
<h3 class="company-name">{{ company.name }}</h3>
|
|
|
- <a-button type="primary" size="small" @click="handleCompareClick(company)"> 对比 </a-button>
|
|
|
</div>
|
|
|
|
|
|
<div class="company-stats">
|
|
@@ -38,20 +37,48 @@
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
- import { defineProps, defineEmits } from 'vue';
|
|
|
+ import { ref, onMounted } from 'vue'
|
|
|
+ import { getSupplierReport } from '../customsData.api'
|
|
|
+
|
|
|
+ interface Company {
|
|
|
+ name: string
|
|
|
+ // ... other company fields
|
|
|
+ }
|
|
|
+
|
|
|
+ const companies = ref<Company[]>([])
|
|
|
+ const currentPage = ref(1)
|
|
|
+ const pageSize = ref(10)
|
|
|
+ const total = ref(0)
|
|
|
+ const loading = ref(false)
|
|
|
+
|
|
|
+ const fetchCompanies = async () => {
|
|
|
+ try {
|
|
|
+ loading.value = true
|
|
|
+ const response = await getSupplierReport({
|
|
|
+ page: currentPage.value,
|
|
|
+ pageSize: pageSize.value
|
|
|
+ })
|
|
|
+ companies.value = response.data.list
|
|
|
+ total.value = response.data.total
|
|
|
+ } catch (error) {
|
|
|
+ console.error('Failed to fetch companies:', error)
|
|
|
+ } finally {
|
|
|
+ loading.value = false
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ onMounted(() => {
|
|
|
+ fetchCompanies()
|
|
|
+ })
|
|
|
|
|
|
const props = defineProps({
|
|
|
- companies: {
|
|
|
+ queryParam: {
|
|
|
type: Array,
|
|
|
required: true,
|
|
|
default: () => [],
|
|
|
},
|
|
|
});
|
|
|
|
|
|
- const emit = defineEmits(['compare']);
|
|
|
- const handleCompareClick = (company) => {
|
|
|
- emit('compare', company);
|
|
|
- };
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|