table_financial.ts 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * @Author: your name
  3. * @Date: 2021-01-07 15:24:09
  4. * @LastEditTime: 2021-06-03 11:59:53
  5. * @LastEditors: Please set LastEditors
  6. * @Description: In User Settings Edit
  7. * @FilePath: \precise_delivery_distribution_front\src\views\_pageOptions\table_financial.ts
  8. */
  9. export const TableColumnOfFinancial = [
  10. {
  11. title: "日期",
  12. dataIndex: "date",
  13. fixed: "left",
  14. ellipsis: true,
  15. width:150
  16. },
  17. {
  18. title: "账户",
  19. dataIndex: "advertiser_name",
  20. slots: { customRender: "advertiser" },
  21. fixed: "left",
  22. ellipsis: true,
  23. width:220
  24. },
  25. {
  26. title: "所属代理商",
  27. dataIndex: "agent_name",
  28. slots: { customRender: "agent" },
  29. fixed: "left",
  30. ellipsis: true,
  31. width:220
  32. },
  33. {
  34. title: "总支出",
  35. dataIndex: "cost",
  36. sorter:true,
  37. sortDirections: ['descend', 'ascend',false],
  38. },
  39. {
  40. title: "现金支出",
  41. dataIndex: "cash_cost",
  42. sorter:true,
  43. sortDirections: ['descend', 'ascend',false],
  44. },
  45. {
  46. title: "赠款支出",
  47. dataIndex: "reward_cost",
  48. },
  49. {
  50. title: "总存入",
  51. dataIndex: "income",
  52. },
  53. {
  54. title: "总转入",
  55. dataIndex: "transfer_in",
  56. },
  57. {
  58. title: "总转出",
  59. dataIndex: "transfer_out",
  60. },
  61. {
  62. title: "冻结",
  63. dataIndex: "frozen",
  64. },
  65. {
  66. title: "日终结余",
  67. dataIndex: "balance",
  68. sorter:true,
  69. sortDirections: ['descend', 'ascend',false],
  70. },
  71. ];