interface.ts 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. interface CustomRender {
  2. customRender: string;
  3. }
  4. // 动态表头类型
  5. export interface ColumnType {
  6. key: string;
  7. dataIndex: string;
  8. title: string;
  9. align: string; // AlignType 对齐方式 - 1:居中对齐 2:左对齐 3:右对齐
  10. filteredValue?: string | null;
  11. slots?: CustomRender;
  12. onFilter?: Function;
  13. sorter?: Function;
  14. }
  15. export interface TableKey {
  16. table_pcweb_business_aduit_dj: string; // 业务审核-点价
  17. table_pcweb_business_aduit_js: string; // 业务审核-交收
  18. table_pcweb_delivery: string; // 现货合同
  19. table_pcweb_exposure: string; // 实时敞口
  20. table_pcweb_exposure_detail: string; // 实时敞口--现货明细
  21. table_pcweb_exposure_futures_detail: string; // 实时敞口--期货明细
  22. table_pcweb_exposure_futuresposition: string; // 敞口--期货头寸
  23. table_pcweb_exposure_futuresposition_detail: string; // 敞口--现货头寸--期货明细
  24. table_pcweb_exposure_spotposition: string; // 敞口--现货头寸
  25. table_pcweb_exposure_spotposition_detail: string; // 敞口--现货头寸--现货明细
  26. table_pcweb_fincial_aduit_fp: string; // 财务审核-发票
  27. table_pcweb_fincial_aduit_kx: string; // 财务审核-款项
  28. table_pcweb_purchase_all: string; // 采购_全部
  29. table_pcweb_purchase_pointprice: string; // 采购_待点价
  30. table_pcweb_purchase_settle: string; // 采购_履约交收
  31. table_pcweb_report_expose: string; // 报表-敞口报表
  32. table_pcweb_report_fincial_invoice_day: string; // 报表-财务报表-发票-日报表
  33. table_pcweb_report_fincial_month: string; // 报表-财务报表-月报表
  34. table_pcweb_report_fincial_payment_day: string; // 报表-财务报表-款项-日报表
  35. table_pcweb_report_spot: string; // 报表-现货报表
  36. table_pcweb_report_spot_detail_day: string; // 现货日报表-详情
  37. table_pcweb_report_spot_detail_month: string; // 现货月报表-详情
  38. table_pcweb_sales_all: string; // 销售_全部
  39. table_pcweb_sales_pointprice: string; // 销售_待点价
  40. table_pcweb_sales_settle: string; // 销售_履约交收
  41. table_pcweb_stock_aduit: string; // 库存审核-入库
  42. table_pcweb_stock_aduit_out: string; // 库存审核-出库
  43. table_pcweb_stock_manage_applylog: string; // 库存管理-当前库存
  44. table_pcweb_stock_manage_current: string; // 库存管理-当前库存
  45. table_pcweb_userinfo: string; // 客户资料
  46. table_pcweb_warehouse: string; // 仓库信息
  47. table_pcweb_hedging_plan: string; // 计划
  48. }