| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- interface CustomRender {
- customRender: string;
- }
- // 动态表头类型
- export interface ColumnType {
- key: string;
- dataIndex: string;
- title: string;
- align: string; // AlignType 对齐方式 - 1:居中对齐 2:左对齐 3:右对齐
- filteredValue?: string | null;
- slots?: CustomRender;
- onFilter?: Function;
- sorter?: Function;
- }
- export interface TableKey {
- table_pcweb_business_aduit_dj: string; // 业务审核-点价
- table_pcweb_business_aduit_js: string; // 业务审核-交收
- table_pcweb_delivery: string; // 现货合同
- table_pcweb_exposure: string; // 实时敞口
- table_pcweb_exposure_detail: string; // 实时敞口--现货明细
- table_pcweb_exposure_futures_detail: string; // 实时敞口--期货明细
- table_pcweb_exposure_futuresposition: string; // 敞口--期货头寸
- table_pcweb_exposure_futuresposition_detail: string; // 敞口--现货头寸--期货明细
- table_pcweb_exposure_spotposition: string; // 敞口--现货头寸
- table_pcweb_exposure_spotposition_detail: string; // 敞口--现货头寸--现货明细
- table_pcweb_fincial_aduit_fp: string; // 财务审核-发票
- table_pcweb_fincial_aduit_kx: string; // 财务审核-款项
- table_pcweb_purchase_all: string; // 采购_全部
- table_pcweb_purchase_pointprice: string; // 采购_待点价
- table_pcweb_purchase_settle: string; // 采购_履约交收
- table_pcweb_report_expose: string; // 报表-敞口报表
- table_pcweb_report_fincial_invoice_day: string; // 报表-财务报表-发票-日报表
- table_pcweb_report_fincial_month: string; // 报表-财务报表-月报表
- table_pcweb_report_fincial_payment_day: string; // 报表-财务报表-款项-日报表
- table_pcweb_report_spot: string; // 报表-现货报表
- table_pcweb_report_spot_detail_day: string; // 现货日报表-详情
- table_pcweb_report_spot_detail_month: string; // 现货月报表-详情
- table_pcweb_sales_all: string; // 销售_全部
- table_pcweb_sales_pointprice: string; // 销售_待点价
- table_pcweb_sales_settle: string; // 销售_履约交收
- table_pcweb_stock_aduit: string; // 库存审核-入库
- table_pcweb_stock_aduit_out: string; // 库存审核-出库
- table_pcweb_stock_manage_applylog: string; // 库存管理-当前库存
- table_pcweb_stock_manage_current: string; // 库存管理-当前库存
- table_pcweb_userinfo: string; // 客户资料
- table_pcweb_warehouse: string; // 仓库信息
- table_pcweb_hedging_plan: string; // 计划
- }
|