interface.ts 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. export interface TableEventCB {
  2. clickCB?: Function; // 单击事件回调函数
  3. contextmenuCB?: Function; // 右键事件回调函数
  4. dblclick?: Function; // 双击事件回调函数
  5. }
  6. export type BtnClassName = 'btnDeafault' | 'btnPrimary' | 'btnDanger' | 'operBtn'
  7. export interface BtnList {
  8. lable: string; // 按钮名字
  9. callback: Function;
  10. className: BtnClassName // 按钮 class 名字
  11. }
  12. export interface ButtonListKey {
  13. custom_info_normal: string; // 客户资料 正常
  14. custom_info_disabled: string; // 客户资料 停用
  15. spot_contract_unsubmitted: string; // 现货合同 未提交
  16. spot_contract_checkpending: string; // 现货合同 待审核
  17. spot_contract_performance: string; // 现货合同 履约中
  18. spot_contract_finished: string; // 现货合同 已完成
  19. warehouse_info_normal: string; // 仓库信息 正常
  20. warehouse_info_disabled: string; // 仓库信息 停用
  21. purchase_pending: string; // 采购 待点价
  22. purchase_performance: string; // 采购 履约交收
  23. purchase_all: string; // 采购 全部
  24. sell_pending: string; // 销售 待点价
  25. sell_performance: string; // 销售 履约交收
  26. sell_all: string; // 销售 全部
  27. exposure_realtime: string; //实时敞口
  28. exposure_spot: string; //现货头寸
  29. exposure_futures: string; //期货头寸
  30. exposure_history: string; //历史敞口
  31. business_review_someprice: string; // 业务审核 点价
  32. business_review_settlement: string; // 业务审核 交收
  33. finance_review_funds: string; // 财务审核 款项
  34. finance_review_invoice: string; // 财务审核 发票
  35. inventory_review_checkin: string; // 库存审核 入库
  36. inventory_review_checkout: string; // 财务审核 出库
  37. inventory_current: string; // 库存查询 当前库存
  38. inventory_applyrecord: string; // 库存查询 申请记录
  39. finance_report_finance: string; // 财务报表
  40. exposure_report_exposure: string; // 敞口报表
  41. spot_report_spot: string; // 现货报表
  42. inventory_report_inventory: string; // 库存报表
  43. }