table.ts 797 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. const totalTable = [
  2. {
  3. title: '月份',
  4. dataIndex: 'month',
  5. slotName: 'month',
  6. width: 200,
  7. },
  8. {
  9. title: '结算金额(元)',
  10. dataIndex: 'yesterday_last_amount',
  11. slotName: 'yesterday_last_amount',
  12. width: 200,
  13. },
  14. {
  15. title: '操作',
  16. dataIndex: 'operate',
  17. slotName: 'operate',
  18. width: 200,
  19. },
  20. ];
  21. const dailyTable = [
  22. {
  23. title: '日期',
  24. dataIndex: 'calculate_date',
  25. slotName: 'calculate_date',
  26. width: 200,
  27. },
  28. {
  29. title: '书籍名称',
  30. dataIndex: 'book_name',
  31. slotName: 'book_name',
  32. },
  33. {
  34. title: '结算金额(元)',
  35. dataIndex: 'yesterday_last_amount',
  36. slotName: 'yesterday_last_amount',
  37. width: 200,
  38. },
  39. ];
  40. const tableColumns = {
  41. totalTable,
  42. dailyTable
  43. };
  44. export default tableColumns;