interface.ts 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. custom_info_unsubmit: string; // 客户资料 未提交
  16. custom_info_checkpending: string; // 客户资料 待审核
  17. spot_contract_unsubmitted: string; // 现货合同 未提交
  18. spot_contract_checkpending: string; // 现货合同 待审核
  19. spot_contract_performance: string; // 现货合同 履约中
  20. spot_contract_finished: string; // 现货合同 已完成
  21. goods_info_spot_normal: string; // 现货品种 正常
  22. goods_info_spot_disable: string; // 现货品种 停用
  23. warehouse_info_normal: string; // 仓库信息 正常
  24. warehouse_info_disabled: string; // 仓库信息 停用
  25. purchase_pending: string; // 采购 待点价
  26. purchase_performance: string; // 采购 履约交收
  27. purchase_all: string; // 采购 全部
  28. sell_pending: string; // 销售 待点价
  29. sell_performance: string; // 销售 履约交收
  30. sell_all: string; // 销售 全部
  31. exposure_realtime: string; //实时敞口
  32. exposure_spot: string; //现货头寸
  33. exposure_futures: string; //期货头寸
  34. exposure_history: string; //历史敞口
  35. plan_uncommitted: string; //计划 未提交
  36. plan_audit: string; //计划 待审核
  37. plan_running: string; //计划 执行中
  38. business_review_someprice: string; // 业务审核 点价
  39. business_review_settlement: string; // 业务审核 交收
  40. finance_review_funds: string; // 财务审核 款项
  41. finance_review_invoice: string; // 财务审核 发票
  42. inventory_review_checkin: string; // 库存审核 入库
  43. inventory_review_checkout: string; // 财务审核 出库
  44. inventory_current: string; // 库存查询 当前库存
  45. inventory_applyrecord: string; // 库存查询 申请记录
  46. finance_report_finance: string; // 财务报表
  47. exposure_report_exposure: string; // 敞口报表
  48. spot_report_spot: string; // 现货报表
  49. inventory_report_inventory: string; // 库存报表
  50. }