customsData.data.ts 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. import { BasicColumn } from "/@/components/Table";
  2. //列表数据
  3. export const columns: BasicColumn[] = [
  4. {
  5. title: "供应商",
  6. align: "center",
  7. dataIndex: "supplier_t",
  8. width: 100,
  9. },
  10. {
  11. title: "采购商",
  12. align: "center",
  13. dataIndex: "buyer_t",
  14. width: 100,
  15. },
  16. {
  17. title: "货运介绍",
  18. align: "center",
  19. dataIndex: "orig_country_cn",
  20. width: 100,
  21. },
  22. {
  23. title:"原产地",
  24. align: "center",
  25. dataIndex: "orig_country_cn",
  26. width: 100,
  27. },
  28. {
  29. title:"起运港",
  30. align: "center",
  31. dataIndex: "orig_port",
  32. width: 100,
  33. },
  34. {
  35. title:"目的国",
  36. align: "center",
  37. dataIndex: "dest_country_cn",
  38. width: 100,
  39. },
  40. {
  41. title:"目的港",
  42. align: "center",
  43. dataIndex: "dest_port",
  44. width: 100,
  45. },
  46. {
  47. title:"日期",
  48. align: "center",
  49. dataIndex: "date",
  50. width: 100,
  51. }
  52. ]
  53. export const companyColumns = [
  54. {
  55. title: '企业名称',
  56. dataIndex: 'name',
  57. width: 200,
  58. },
  59. {
  60. title: '注册号',
  61. dataIndex: 'registrationNumber',
  62. width: 150,
  63. },
  64. {
  65. title: '地址',
  66. dataIndex: 'address',
  67. width: 300,
  68. },
  69. // ... 添加更多需要的列
  70. ];