SupplierList.vue 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <template>
  2. <a-card title="供应商">
  3. <div>
  4. <a-table
  5. :columns="columns"
  6. :data-source="tableData"
  7. :loading="loading"
  8. row-key="fk"
  9. :pagination="false"
  10. />
  11. </div>
  12. </a-card>
  13. </template>
  14. <script lang="ts" setup>
  15. import { ref, onMounted, watch, computed } from 'vue';
  16. const props = defineProps({
  17. supplierData: { // 修改属性名
  18. type: Object,
  19. required: true
  20. }
  21. });
  22. const loading = ref(false);
  23. const columns = [
  24. {
  25. title: '供应商名称',
  26. dataIndex: 'val',
  27. key: 'val',
  28. },
  29. {
  30. title: '采购商数量',
  31. dataIndex: 'num_buyer',
  32. key: 'num_buyer',
  33. customRender: ({ text }) => {
  34. return text ? text.toLocaleString('en-US') : '0';
  35. },
  36. },
  37. {
  38. title: '金额($)',
  39. dataIndex: 'sum_amount',
  40. key: 'sum_amount',
  41. customRender: ({ text }) => formatNumber(text),
  42. },
  43. {
  44. title: '重量(KG)',
  45. dataIndex: 'sum_weight',
  46. key: 'sum_weight',
  47. customRender: ({ text }) => formatNumber(text),
  48. },
  49. {
  50. title: '交易次数',
  51. dataIndex: 'count',
  52. key: 'count',
  53. customRender: ({ text }) => {
  54. return text ? text.toLocaleString('en-US') : '0';
  55. },
  56. },
  57. ];
  58. // 计算表格数据
  59. const tableData = computed(() => {
  60. if (!props.supplierData?.buckets) return []; // 修改属性名
  61. return props.supplierData.buckets;
  62. });
  63. // 格式化函数
  64. const formatNumber = (value: number | string) => {
  65. if (!value) return '0.00';
  66. return Number(value).toLocaleString('en-US', {
  67. minimumFractionDigits: 2,
  68. maximumFractionDigits: 2,
  69. });
  70. };
  71. onMounted(async () => {
  72. });
  73. // 监听数据变化
  74. watch(
  75. () => props.supplierData // 修改属性名
  76. );
  77. </script>
  78. <style scoped>
  79. /* Add any necessary styles here */
  80. </style>