interface.ts 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. goods_info_hedge_normal: string; // 现货品种 正常
  24. goods_info_hedge_disable: string; // 套保品种 停用
  25. warehouse_info_normal: string; // 仓库信息 正常
  26. warehouse_info_disabled: string; // 仓库信息 停用
  27. purchase_pending: string; // 采购 待点价
  28. purchase_performance: string; // 采购 履约交收
  29. purchase_all: string; // 采购 全部
  30. sell_pending: string; // 销售 待点价
  31. sell_performance: string; // 销售 履约交收
  32. sell_all: string; // 销售 全部
  33. exposure_realtime: string; //实时敞口
  34. exposure_spot: string; //现货头寸
  35. exposure_futures: string; //期货头寸
  36. exposure_history: string; //历史敞口
  37. plan_uncommitted: string; //计划 未提交
  38. plan_audit: string; //计划 待审核
  39. plan_running: string; //计划 执行中
  40. business_review_someprice: string; // 业务审核 点价
  41. business_review_settlement: string; // 业务审核 交收
  42. account_info_business: string; // 业务账户
  43. account_info_trade: string; // 交易账户
  44. account_info_manager: string; // 管理账户
  45. account_info_futures: string; // 期货账户
  46. finance_review_funds: string; // 财务审核 款项
  47. finance_review_invoice: string; // 财务审核 发票
  48. inventory_review_checkin: string; // 库存审核 入库
  49. inventory_review_checkout: string; // 财务审核 出库
  50. inventory_current: string; // 库存查询 当前库存
  51. inventory_applyrecord: string; // 库存查询 申请记录
  52. finance_report_finance: string; // 财务报表
  53. exposure_report_exposure: string; // 敞口报表
  54. spot_report_spot: string; // 现货报表
  55. inventory_report_inventory: string; // 库存报表
  56. }