Columns.ts 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. export const MarketStoreColumns = [
  2. { type: 'seq', title: 'No.', width: 60, align: 'center', fixed: 'left' },
  3. {
  4. field: 'platform_number', title: '平台编号', align: 'center',
  5. slots: { default: 'platform_number' }
  6. },
  7. {
  8. field: 'name', title: '店 铺', align: 'center',
  9. slots: { default: 'name' }
  10. },
  11. {
  12. field: 'seller', title: '卖家ID', align: 'center',
  13. slots: { default: 'seller' }
  14. },
  15. {
  16. field: 'region', title: '站 点', align: 'center',
  17. slots: { default: 'region' }
  18. },
  19. {
  20. field: 'country_code', title: '国 家', align: 'center',
  21. slots: { default: 'country_code' }
  22. },
  23. {
  24. field: 'marketplace_id', title: '市场ID', align: 'center',
  25. slots: { default: 'marketplace_id' }
  26. },
  27. {
  28. field: 'status', title: '状 态', align: 'center',
  29. slots: { default: 'status' }
  30. },
  31. {
  32. field: 'create_datetime', title: '创建时间', width: 180, align: 'center',
  33. slots: { default: 'create_datetime' }
  34. },
  35. {
  36. field: 'operate', title: '操 作', width: 110, align: 'center', fixed: 'right',
  37. slots: { default: 'operate' }
  38. }
  39. ];
  40. export const OnlineMerchandiseColumns = [
  41. { type: 'seq', title: 'No.', width: 60, align: 'center', fixed: 'left', },
  42. { field: 'asin', title: 'ASIN', minWidth: 'auto', align: 'center', slots: { default: 'asin' } },
  43. { field: 'sku', title: 'SKU', minWidth: 'auto', align: 'center', slots: { default: 'sku' } },
  44. { field: 'platform_number', title: '平台编号', minWidth: 'auto', align: 'center',
  45. slots: { default: 'platform_number' }
  46. },
  47. {
  48. field: 'shop_name', title: '店 铺', minWidth: 'auto', align: 'center',
  49. slots: { default: 'shop_name' }
  50. },
  51. {
  52. field: 'country_code', title: '国 家', width: 'auto', align: 'center',
  53. slots: { default: 'country_code' }
  54. },
  55. {
  56. field: 'region', title: '站 点', width: 'auto', align: 'center',
  57. slots: { default: 'region' }
  58. },
  59. {
  60. field: 'quantity', title: '可售数量', width: 'auto', align: 'center',
  61. slots: { default: 'quantity' }
  62. },
  63. {
  64. field: 'fulfillment_channel', title: '配送方式', width: 'auto', align: 'center',
  65. slots: { default: 'fulfillment_channel' }
  66. },
  67. {
  68. field: 'raw_launch_datetime', title: '上架时间', width: 'auto', align: 'center',
  69. slots: { default: 'raw_launch_datetime' }
  70. },
  71. {
  72. field: 'price', title: '价 格', width: 'auto', align: 'center',
  73. slots: { default: 'price' }
  74. },
  75. {
  76. field: 'status', title: '状 态', width: 80, align: 'center',
  77. slots: { default: 'status' }
  78. },
  79. {
  80. field: 'operate', title: '操 作', width: 70, align: 'center', fixed: 'right',
  81. slots: { default: 'operate' }
  82. }
  83. ];