table-account.ts 591 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. export const TableColumnOfAccount = [
  2. {
  3. title: "公众号名称",
  4. dataIndex: "account_name",
  5. },
  6. {
  7. title: "公众号唯一标识",
  8. dataIndex: "app_id",
  9. },
  10. {
  11. title: "平台",
  12. dataIndex: "platform",
  13. },
  14. {
  15. title: "站点",
  16. dataIndex: "channel_id",
  17. },
  18. {
  19. title: "推广员",
  20. dataIndex: "nickname",
  21. },
  22. {
  23. title: "开始时间",
  24. dataIndex: "start_time",
  25. },
  26. {
  27. title: "结束时间",
  28. dataIndex: "end_time",
  29. },
  30. {
  31. title: "操作",
  32. dataIndex: "operte",
  33. slots: {
  34. customRender: "operte",
  35. },
  36. },
  37. ];