Columns.ts 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. export const OnlineMerchandiseColumns = [
  37. { type: 'seq', title: 'No.', width: 60, align: 'center', fixed: 'left', },
  38. { field: 'asin', title: 'ASIN', minWidth: 'auto', align: 'center', slots: { default: 'asin' } },
  39. { field: 'sku', title: 'SKU', minWidth: 'auto', align: 'center', slots: { default: 'sku' } },
  40. { field: 'platform_number', title: '平台编号', minWidth: 'auto', align: 'center',
  41. slots: { default: 'platform_number' }
  42. },
  43. {
  44. field: 'shop_name', title: '店 铺', minWidth: 'auto', align: 'center',
  45. slots: { default: 'shop_name' }
  46. },
  47. {
  48. field: 'country_code', title: '国 家', width: 'auto', align: 'center',
  49. slots: { default: 'country_code' }
  50. },
  51. {
  52. field: 'region', title: '站 点', width: 'auto', align: 'center',
  53. slots: { default: 'region' }
  54. },
  55. {
  56. field: 'quantity', title: '可售数量', width: 'auto', align: 'center',
  57. slots: { default: 'quantity' }
  58. },
  59. {
  60. field: 'fulfillment_channel', title: '配送方式', width: 'auto', align: 'center',
  61. slots: { default: 'fulfillment_channel' }
  62. },
  63. {
  64. field: 'raw_launch_datetime', title: '上架时间', width: 'auto', align: 'center',
  65. slots: { default: 'raw_launch_datetime' }
  66. },
  67. {
  68. field: 'price', title: '价 格', width: 'auto', align: 'center',
  69. slots: { default: 'price' }
  70. },
  71. {
  72. field: 'status', title: '状 态', width: 80, align: 'center',
  73. slots: { default: 'status' }
  74. },
  75. {
  76. field: 'operate', title: '操 作', width: 70, align: 'center', fixed: 'right',
  77. slots: { default: 'operate' }
  78. }
  79. ];