customsData.data.ts 1.4 KB

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