interface.ts 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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 BtnParam {
  13. first: string[],
  14. second: string[],
  15. third: string[],
  16. }
  17. export interface ButtonListKey {
  18. custom_info_normal: string; // 客户资料 正常
  19. custom_info_disabled: string; // 客户资料 停用
  20. custom_info_unsubmit: string; // 客户资料 未提交
  21. custom_info_checkpending: string; // 客户资料 待审核
  22. spot_contract_unsubmitted: string; // 现货合同 未提交
  23. spot_contract_checkpending: string; // 现货合同 待审核
  24. spot_contract_performance: string; // 现货合同 履约中
  25. spot_contract_finished: string; // 现货合同 已完成
  26. goods_info_spot_normal: string; // 现货品种 正常
  27. goods_info_spot_disable: string; // 现货品种 停用
  28. goods_info_hedge_normal: string; // 现货品种 正常
  29. goods_info_hedge_disable: string; // 套保品种 停用
  30. warehouse_info_normal: string; // 仓库信息 正常
  31. warehouse_info_disabled: string; // 仓库信息 停用
  32. purchase_pending: string; // 采购 待点价
  33. purchase_performance: string; // 采购 履约交收
  34. purchase_all: string; // 采购 全部
  35. sell_pending: string; // 销售 待点价
  36. sell_performance: string; // 销售 履约交收
  37. sell_all: string; // 销售 全部
  38. exposure_realtime: string; //实时敞口
  39. exposure_spot: string; //现货头寸
  40. exposure_futures: string; //期货头寸
  41. exposure_history: string; //历史敞口
  42. plan_uncommitted: string; //计划 未提交
  43. plan_audit: string; //计划 待审核
  44. plan_running: string; //计划 执行中
  45. business_review_someprice: string; // 业务审核 点价
  46. business_review_settlement: string; // 业务审核 交收
  47. account_info_business: string; // 业务账户
  48. account_info_trade: string; // 交易账户
  49. account_info_manager: string; // 管理账户
  50. account_info_futures: string; // 期货账户
  51. finance_review_funds: string; // 财务审核 款项
  52. finance_review_invoice: string; // 财务审核 发票
  53. inventory_review_checkin: string; // 库存审核 入库
  54. inventory_review_checkout: string; // 财务审核 出库
  55. inventory_current: string; // 库存查询 当前库存
  56. inventory_applyrecord: string; // 库存查询 申请记录
  57. finance_report_finance: string; // 财务报表
  58. exposure_report_exposure: string; // 敞口报表
  59. spot_report_spot: string; // 现货报表
  60. inventory_report_inventory: string; // 库存报表
  61. /********* =================== 千海金=================== **********/
  62. platinum_custom_info_normal: string; // 千海金 客户资料 正常
  63. platinum_customer_info_unsubmit: string; // 千海金 客户资料 待审核
  64. platinum_customer_info_stop: string; // 千海金 客户资料 停用
  65. platinum_withdrawal_review_tab: string; // 千海金 提现审核
  66. platinum_recharge_review_tab: string; // 千海金 充值审核
  67. platinum_pick_query_tab: string; // 千海金 提货查询
  68. platinum_fixed_investment_price_query_tab: string; // 千海金 定投价查询
  69. platinum_fixed_investment_flow_query: string; // 千海金 定投流水查询
  70. platinum_fixed_investment_plan_query: string; // 千海金 定投计划查询
  71. platinum_document_query_position: string; // 千海金 单据查询 持仓
  72. platinum_document_query_order: string; // 千海金 单据查询 委托单
  73. platinum_document_query_waiting: string; // 千海金 单据查询 待付单
  74. platinum_document_query_success: string; // 千海金 单据查询 成交单
  75. platinum_financing_information_tab: string; // 千海金 融资信息
  76. }
  77. }