enumRouterName.ts 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. // 路由名 枚举
  2. export enum EnumRouterName {
  3. remark = 'remark', //
  4. market = 'market', // 市场
  5. info = 'info', // 信息
  6. business = 'business', // 业务
  7. manage = 'manage', // 管理
  8. search = 'search', // 查询
  9. report = 'report', // 报表
  10. platinum = 'platinum', // 铂金宝
  11. spot_trade = 'spot_trade', // 现货贸易
  12. futures = 'futures', // 期货
  13. custom_info = 'custom_info', // 客户资料
  14. goods_info = 'goods_info', // 商品信息
  15. spot_contract = 'spot_contract', // 现货合同
  16. warehouse_info = 'warehouse_info', // 仓库信息
  17. account_info = 'account_info', // 账户管理
  18. purchase = 'purchase', // 采购
  19. sell = 'sell', // 销售
  20. exposure = 'exposure', // 敞口
  21. finance_review = 'finance_review', // 财务审核
  22. inventory_review = 'inventory_review', // 库存审核
  23. plan = 'plan', // 计划
  24. business_review = 'business_review', // 业务审核
  25. finance_report = 'finance_report', // 财务报表
  26. exposure_report = 'exposure_report', // 敞口报表
  27. spot_report = 'spot_report', // 现货报表
  28. sum_pl_report = 'sum_pl_report', // 汇总损益报表
  29. future_report = 'future_report', // 期货报表
  30. platinum_pick_goods_management = 'platinum_pick_goods_management', // 提货商品管理
  31. platinum_customer_info = 'platinum_customer_info', // 客户资料
  32. platinum_pick_query = 'platinum_pick_query', // 提货查询
  33. inventory_report = 'inventory_report', // 库存报表
  34. platinum_recharge_withdrawal_review = 'platinum_recharge_withdrawal_review', // 充值和提现审核
  35. platinum_fixed_investment_price_query = 'platinum_fixed_investment_price_query', // 定投价查询
  36. platinum_fixed_investment_query = 'platinum_fixed_investment_query', // 定投查询
  37. platinum_document_query = 'platinum_document_query', // 单据查询
  38. platinum_financing_information = 'platinum_financing_information', // 融资信息
  39. platinum_contract_goods = 'platinum_contract_goods', // 合约商品
  40. platinum_contract_commodity_suspension = 'platinum_contract_commodity_suspension', // 合约商品停牌
  41. platinum_agents_and_stores = 'platinum_agents_and_stores', // 代理和门店
  42. platinum_spot_and_price = 'platinum_spot_and_price', // 现货市价
  43. platinum_agreement = 'platinum_agreement', // 协议管理
  44. outaccount_status = 'outaccount_status', // 账户状态
  45. warehouse_receipt_trade = 'warehouse_receipt_trade', // 仓单贸易
  46. warehouse_pre_sale = 'warehouse_pre_sale', // 仓单预售
  47. dominant_contract = 'dominant_contract', // 主力
  48. night_plate = 'night_plate', // 夜盘
  49. main_contract = 'main_contract', // 主连
  50. position = 'position', // 持仓
  51. orderdetail = 'orderdetail', // 委托
  52. tradedetail = 'tradedetail', // 成交
  53. closedetail = 'closedetail', // 平仓
  54. custom_info_unsubmit = 'custom_info_unsubmit', // 未提交
  55. custom_info_checkpending = 'custom_info_checkpending', // 待审核
  56. custom_info_normal = 'custom_info_normal', // 正常
  57. custom_info_disabled = 'custom_info_disabled', // 停用
  58. goods_info_spot = 'goods_info_spot', // 现货品种
  59. goods_info_hedge = 'goods_info_hedge', // 套保品种
  60. spot_contract_unsubmitted = 'spot_contract_unsubmitted', // 未提交
  61. spot_contract_checkpending = 'spot_contract_checkpending', // 待审核
  62. spot_contract_performance = 'spot_contract_performance', // 履约中
  63. spot_contract_finished = 'spot_contract_finished', // 已完成
  64. warehouse_info_normal = 'warehouse_info_normal', // 正常
  65. warehouse_info_disabled = 'warehouse_info_disabled', // 停用
  66. account_info_business = 'account_info_business', // 业务账户
  67. account_info_trade = 'account_info_trade', // 交易账户
  68. account_info_manager = 'account_info_manager', // 管理账户
  69. account_info_futures = 'account_info_futures', // 期货账户
  70. purchase_pending = 'purchase_pending', // 待点价
  71. purchase_performance = 'purchase_performance', // 履约交收
  72. purchase_all = 'purchase_all', // 全部
  73. sell_pending = 'sell_pending', // 待点价
  74. sell_performance = 'sell_performance', // 履约交收
  75. sell_all = 'sell_all', // 全部
  76. exposure_realtime = 'exposure_realtime', // 实时敞口
  77. exposure_spot = 'exposure_spot', // 现货头寸
  78. exposure_futures = 'exposure_futures', // 期货头寸
  79. exposure_history = 'exposure_history', // 历史敞口
  80. finance_review_funds = 'finance_review_funds', // 款项
  81. finance_review_invoice = 'finance_review_invoice', // 发票
  82. inventory_review_checkin = 'inventory_review_checkin', // 入库
  83. inventory_review_checkout = 'inventory_review_checkout', // 出库
  84. plan_audit = 'plan_audit', // 待审核
  85. plan_uncommitted = 'plan_uncommitted', // 未提交
  86. plan_running = 'plan_running', // 执行中
  87. business_review_someprice = 'business_review_someprice', // 点价
  88. business_review_settlement = 'business_review_settlement', // 交收
  89. inventory_current = 'inventory_current', // 当前库存
  90. inventory_applyrecord = 'inventory_applyrecord', // 申请记录
  91. finance_report_finance = 'finance_report_finance', // 财务报表
  92. exposure_report_exposure = 'exposure_report_exposure', // 敞口报表
  93. spot_report_spot = 'spot_report_spot', // 现货报表
  94. sum_pl_report_sum_pl = 'sum_pl_report_sum_pl', // 汇总损益报表
  95. future_report_future = 'future_report_future', // 期货报表
  96. platinum_pick_goods_management_tab = 'platinum_pick_goods_management_tab', // 提货商品管理
  97. platinum_custom_info_normal = 'platinum_custom_info_normal', // 正常
  98. platinum_customer_info_unsubmit = 'platinum_customer_info_unsubmit', // 待审核
  99. platinum_customer_info_stop = 'platinum_customer_info_stop', // 停用
  100. platinum_pick_query_tab = 'platinum_pick_query_tab', // 提货查询
  101. inventory_report_inventory_category = 'inventory_report_inventory_category', // 库存报表(品类)
  102. inventory_report_warehouse = 'inventory_report_warehouse', // 库存报表(仓库)
  103. platinum_recharge_review_tab = 'platinum_recharge_review_tab', // 充值审核
  104. platinum_withdrawal_review_tab = 'platinum_withdrawal_review_tab', // 提现审核
  105. platinum_fixed_investment_price_query_tab = 'platinum_fixed_investment_price_query_tab', // 定投价查询
  106. platinum_fixed_investment_plan_query = 'platinum_fixed_investment_plan_query', // 定投计划查询
  107. platinum_fixed_investment_flow_query = 'platinum_fixed_investment_flow_query', // 定投流水查询
  108. platinum_document_query_position = 'platinum_document_query_position', // 持仓
  109. platinum_document_query_order = 'platinum_document_query_order', // 委托单
  110. platinum_document_query_waiting = 'platinum_document_query_waiting', // 待付单
  111. platinum_document_query_success = 'platinum_document_query_success', // 成交单
  112. platinum_financing_information_tab = 'platinum_financing_information_tab', // 融资信息
  113. platinum_contract_goods_tab = 'platinum_contract_goods_tab', // 合约商品
  114. platinum_contract_commodity_suspension_tab = 'platinum_contract_commodity_suspension_tab', // 合约商品停牌
  115. platinum_agents_and_stores_tab = 'platinum_agents_and_stores_tab', // 代理和门店
  116. platinum_spot_and_price_tab = 'platinum_spot_and_price_tab', // 现货市价
  117. platinum_agreement_tab = 'platinum_agreement_tab', // 协议管理
  118. outaccount_status_status = 'outaccount_status_status', // 账户状态
  119. warehouse_receipt_trade_price = 'warehouse_receipt_trade_price', // 一口价挂牌
  120. warehouse_receipt_trade_floating_price = 'warehouse_receipt_trade_floating_price', // 浮动价挂牌
  121. warehouse_pre_sale_price = 'warehouse_pre_sale_price', // 一口价预售
  122. warehouse_pre_sale_floating_price = 'warehouse_pre_sale_floating_price', // 浮动价预售
  123. goods_info_spot_normal = 'goods_info_spot_normal', // 正常
  124. goods_info_spot_disable = 'goods_info_spot_disable', // 停用
  125. goods_info_hedge_normal = 'goods_info_hedge_normal', // 正常
  126. goods_info_hedge_disable = 'goods_info_hedge_disable', // 停用
  127. spot_trade_warehouse_buy_hall = 'spot_trade_warehouse_buy_hall', // 买大厅
  128. spot_trade_warehouse_sell_hall = 'spot_trade_warehouse_sell_hall', // 卖大厅
  129. }