mobile_menu.json 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103
  1. [
  2. {
  3. "code": "client_spotmarketprice",
  4. "title": "现货市价",
  5. "sort": 1,
  6. "type": 1,
  7. "rulekey": "client_spotmarketprice",
  8. "isshow": true,
  9. "remark": "现货市价",
  10. "children": [
  11. {
  12. "code": "client_spotmarketprice_new",
  13. "title": "市价录入",
  14. "sort": 1,
  15. "type": 1,
  16. "rulekey": "client_spotmarketprice_new",
  17. "isshow": true,
  18. "remark": "现货市价-市价录入",
  19. "children": []
  20. },
  21. {
  22. "code": "client_spotmarketprice_update",
  23. "title": "修改",
  24. "sort": 2,
  25. "type": 1,
  26. "rulekey": "client_spotmarketprice_update",
  27. "isshow": true,
  28. "remark": "现货市价-修改",
  29. "children": []
  30. },
  31. {
  32. "code": "client_spotmarketprice_delete",
  33. "title": "删除",
  34. "sort": 3,
  35. "type": 1,
  36. "rulekey": "client_spotmarketprice_delete",
  37. "isshow": true,
  38. "remark": "现货市价-删除",
  39. "children": []
  40. },
  41. {
  42. "code": "client_spotmarketprice_search",
  43. "title": "查询",
  44. "sort": 4,
  45. "type": 1,
  46. "rulekey": "client_spotmarketprice_search",
  47. "isshow": true,
  48. "remark": "现货市价-查询",
  49. "children": []
  50. }
  51. ]
  52. },
  53. {
  54. "code": "client_stock_manage",
  55. "title": "库存管理",
  56. "sort": 2,
  57. "type": 1,
  58. "rulekey": "client_stock_manage",
  59. "isshow": true,
  60. "remark": "库存管理",
  61. "children": [
  62. {
  63. "code": "client_stock_manage_current",
  64. "title": "当前库存",
  65. "sort": 1,
  66. "type": 2,
  67. "rulekey": "client_stock_manage_current",
  68. "isshow": true,
  69. "remark": "库存管理-当前库存",
  70. "children": [
  71. {
  72. "code": "client_stock_manage_in_detail",
  73. "title": "入库明细",
  74. "sort": 1,
  75. "type": 2,
  76. "rulekey": "client_stock_manage_in_detail",
  77. "isshow": true,
  78. "remark": "库存管理-当前库存-入库明细",
  79. "children": []
  80. },
  81. {
  82. "code": "client_stock_manage_out_detail",
  83. "title": "出库明细",
  84. "sort": 2,
  85. "type": 2,
  86. "rulekey": "client_stock_manage_out_detail",
  87. "isshow": true,
  88. "remark": "库存管理-当前库存-出库明细",
  89. "children": []
  90. }
  91. ]
  92. },
  93. {
  94. "code": "client_stock_manage_applylog",
  95. "title": "申请记录",
  96. "sort": 2,
  97. "type": 2,
  98. "rulekey": "client_stock_manage_applylog",
  99. "isshow": true,
  100. "remark": "库存管理-申请记录",
  101. "children": []
  102. },
  103. {
  104. "code": "client_stock_manage_add",
  105. "title": "新增",
  106. "sort": 3,
  107. "type": 1,
  108. "rulekey": "client_stock_manage_add",
  109. "isshow": true,
  110. "remark": "库存管理-新增",
  111. "children": []
  112. }
  113. ]
  114. },
  115. {
  116. "code": "client_stock_aduit",
  117. "title": "库存审核",
  118. "sort": 3,
  119. "type": 1,
  120. "rulekey": "client_stock_aduit",
  121. "isshow": true,
  122. "remark": "库存审核",
  123. "children": [
  124. {
  125. "code": "client_stock_in",
  126. "title": "入库",
  127. "sort": 1,
  128. "type": 1,
  129. "rulekey": "client_stock_in",
  130. "isshow": true,
  131. "remark": "库存审核-入库",
  132. "children": [
  133. {
  134. "code": "client_stock_in_aduit",
  135. "title": "入库审核",
  136. "sort": 1,
  137. "type": 1,
  138. "rulekey": "client_stock_in_aduit",
  139. "isshow": true,
  140. "remark": "库存审核-入库-入库审核",
  141. "children": []
  142. },
  143. {
  144. "code": "client_stock_aduit_cancel",
  145. "title": "撤回",
  146. "sort": 2,
  147. "type": 1,
  148. "rulekey": "client_stock_aduit_cancel",
  149. "isshow": true,
  150. "remark": "库存审核-入库-撤回",
  151. "children": []
  152. }
  153. ]
  154. },
  155. {
  156. "code": "client_stock_out",
  157. "title": "出库",
  158. "sort": 2,
  159. "type": 1,
  160. "rulekey": "client_stock_out",
  161. "isshow": true,
  162. "remark": "库存审核-出库",
  163. "children": [
  164. {
  165. "code": "client_stock_out_aduit",
  166. "title": "出库审核",
  167. "sort": 1,
  168. "type": 1,
  169. "rulekey": "client_stock_out_aduit",
  170. "isshow": true,
  171. "remark": "库存审核-入库-出库审核",
  172. "children": []
  173. }
  174. ]
  175. }
  176. ]
  177. },
  178. {
  179. "code": "client_warehouse",
  180. "title": "仓库信息",
  181. "sort": 4,
  182. "type": 1,
  183. "rulekey": "client_warehouse",
  184. "isshow": true,
  185. "remark": "仓库信息",
  186. "children": [
  187. {
  188. "code": "client_warehouse_add",
  189. "title": "新增",
  190. "sort": 1,
  191. "type": 1,
  192. "rulekey": "client_warehouse_add",
  193. "isshow": true,
  194. "remark": "仓库信息-新增",
  195. "children": []
  196. },
  197. {
  198. "code": "client_warehouse_normal",
  199. "title": "正常",
  200. "sort": 2,
  201. "type": 1,
  202. "rulekey": "client_warehouse_normal",
  203. "isshow": true,
  204. "remark": "仓库信息-正常",
  205. "children": [
  206. {
  207. "code": "client_warehouse_update",
  208. "title": "修改",
  209. "sort": 1,
  210. "type": 1,
  211. "rulekey": "client_warehouse_update",
  212. "isshow": true,
  213. "remark": "仓库信息-正常-修改",
  214. "children": []
  215. },
  216. {
  217. "code": "client_warehouse_stop",
  218. "title": "停用",
  219. "sort": 2,
  220. "type": 1,
  221. "rulekey": "client_warehouse_stop",
  222. "isshow": true,
  223. "remark": "仓库信息-正常-停用",
  224. "children": []
  225. }
  226. ]
  227. },
  228. {
  229. "code": "client_warehouse_stop",
  230. "title": "停用",
  231. "sort": 3,
  232. "type": 1,
  233. "rulekey": "client_warehouse_stop",
  234. "isshow": true,
  235. "remark": "仓库信息-停用",
  236. "children": [
  237. {
  238. "code": "client_warehouse_restore",
  239. "title": "恢复",
  240. "sort": 1,
  241. "type": 1,
  242. "rulekey": "client_warehouse_restore",
  243. "isshow": true,
  244. "remark": "仓库信息-停用-恢复",
  245. "children": []
  246. }
  247. ]
  248. }
  249. ]
  250. },
  251. {
  252. "code": "client_report",
  253. "title": "报表查询",
  254. "sort": 5,
  255. "type": 1,
  256. "rulekey": "client_report",
  257. "isshow": true,
  258. "remark": "报表查询",
  259. "children": [
  260. {
  261. "code": "client_report_exposure",
  262. "title": "敞口报表",
  263. "sort": 1,
  264. "type": 1,
  265. "rulekey": "client_report_exposure",
  266. "isshow": true,
  267. "remark": "报表查询-敞口报表",
  268. "children": [
  269. {
  270. "code": "client_report_exposure_parmateradjust",
  271. "title": "参数调整明细",
  272. "sort": 1,
  273. "type": 1,
  274. "rulekey": "client_report_exposure_parmateradjust",
  275. "isshow": true,
  276. "remark": "报表查询-敞口报表-参数调整明细",
  277. "children": []
  278. },
  279. {
  280. "code": "client_report_exposure_futures",
  281. "title": "期货明细",
  282. "sort": 2,
  283. "type": 1,
  284. "rulekey": "client_report_exposure_futures",
  285. "isshow": true,
  286. "remark": "报表查询-敞口报表-期货明细",
  287. "children": []
  288. },
  289. {
  290. "code": "client_report_exposure_hedgeplan",
  291. "title": "套保计划明细",
  292. "sort": 3,
  293. "type": 1,
  294. "rulekey": "client_report_exposure_hedgeplan",
  295. "isshow": true,
  296. "remark": "报表查询-敞口报表-套保计划明细",
  297. "children": []
  298. },
  299. {
  300. "code": "client_report_exposure_spotcontract",
  301. "title": "现货合同明细",
  302. "sort": 4,
  303. "type": 1,
  304. "rulekey": "client_report_exposure_spotcontract",
  305. "isshow": true,
  306. "remark": "报表查询-敞口报表-现货合同明细",
  307. "children": []
  308. }
  309. ]
  310. },
  311. {
  312. "code": "client_report_futures",
  313. "title": "期货报表",
  314. "sort": 2,
  315. "type": 1,
  316. "rulekey": "client_report_futures",
  317. "isshow": true,
  318. "remark": "报表查询-期货报表",
  319. "children": [
  320. {
  321. "code": "client_report_futures_account",
  322. "title": "账户明细",
  323. "sort": 1,
  324. "type": 1,
  325. "rulekey": "client_report_futures_account",
  326. "isshow": true,
  327. "remark": "报表查询-期货报表-账户明细",
  328. "children": []
  329. }
  330. ]
  331. },
  332. {
  333. "code": "client_report_spot",
  334. "title": "现货报表",
  335. "sort": 3,
  336. "type": 1,
  337. "rulekey": "client_report_spot",
  338. "isshow": true,
  339. "remark": "报表查询-现货报表",
  340. "children": [
  341. {
  342. "code": "client_report_spot_detail",
  343. "title": "现货明细",
  344. "sort": 1,
  345. "type": 1,
  346. "rulekey": "client_report_spot_detail",
  347. "isshow": true,
  348. "remark": "报表查询-现货报表-现货明细",
  349. "children": []
  350. }
  351. ]
  352. },
  353. {
  354. "code": "client_report_finance",
  355. "title": "财务报表",
  356. "sort": 4,
  357. "type": 1,
  358. "rulekey": "client_report_finance",
  359. "isshow": true,
  360. "remark": "报表查询-财务报表",
  361. "children": [
  362. {
  363. "code": "client_report_finance_brand",
  364. "title": "品牌明细",
  365. "sort": 1,
  366. "type": 1,
  367. "rulekey": "client_report_finance_brand",
  368. "isshow": true,
  369. "remark": "报表查询-财务报表-品牌明细",
  370. "children": []
  371. },
  372. {
  373. "code": "client_report_finance_wrstand",
  374. "title": "品类明细",
  375. "sort": 2,
  376. "type": 1,
  377. "rulekey": "client_report_finance_wrstand",
  378. "isshow": true,
  379. "remark": "报表查询-财务报表-品类明细",
  380. "children": []
  381. }
  382. ]
  383. },
  384. {
  385. "code": "client_report_wrstandstock",
  386. "title": "库存(品类)报表",
  387. "sort": 5,
  388. "type": 1,
  389. "rulekey": "client_report_wrstandstock",
  390. "isshow": true,
  391. "remark": "报表查询-库存(品类)报表",
  392. "children": [
  393. {
  394. "code": "client_report_wrstandstock_warehouse",
  395. "title": "仓库明细",
  396. "sort": 1,
  397. "type": 1,
  398. "rulekey": "client_report_wrstandstock_warehouse",
  399. "isshow": true,
  400. "remark": "报表查询-库存(品类)报表-仓库明细",
  401. "children": []
  402. },
  403. {
  404. "code": "client_report_wrstandstock_brand",
  405. "title": "品牌明细",
  406. "sort": 2,
  407. "type": 1,
  408. "rulekey": "client_report_wrstandstock_brand",
  409. "isshow": true,
  410. "remark": "报表查询-库存(品类)报表-品牌明细",
  411. "children": []
  412. }
  413. ]
  414. },
  415. {
  416. "code": "client_report_warehousestock",
  417. "title": "库存(仓库)报表",
  418. "sort": 6,
  419. "type": 1,
  420. "rulekey": "client_report_warehousestock",
  421. "isshow": true,
  422. "remark": "报表查询-库存(仓库)报表",
  423. "children": [
  424. {
  425. "code": "client_report_warehousestock_stock",
  426. "title": "库存明细",
  427. "sort": 1,
  428. "type": 1,
  429. "rulekey": "client_report_warehousestock_stock",
  430. "isshow": true,
  431. "remark": "报表查询-库存(仓库)报表-库存明细",
  432. "children": []
  433. }
  434. ]
  435. },
  436. {
  437. "code": "client_report_sumprofit",
  438. "title": "汇总损益报表",
  439. "sort": 7,
  440. "type": 1,
  441. "rulekey": "client_report_sumprofit",
  442. "isshow": true,
  443. "remark": "报表查询-汇总损益报表",
  444. "children": [
  445. {
  446. "code": "client_report_sumprofit_detail",
  447. "title": "损益明细",
  448. "sort": 1,
  449. "type": 1,
  450. "rulekey": "client_report_sumprofit_detail",
  451. "isshow": true,
  452. "remark": "报表查询-汇总损益报表-损益明细",
  453. "children": []
  454. }
  455. ]
  456. }
  457. ]
  458. },
  459. {
  460. "code": "client_traderflow",
  461. "title": "交易查询",
  462. "sort": 6,
  463. "type": 1,
  464. "rulekey": "client_traderflow",
  465. "isshow": true,
  466. "remark": "交易查询",
  467. "children": [
  468. {
  469. "code": "client_traderflow_hisorder",
  470. "title": "历史委托",
  471. "sort": 1,
  472. "type": 1,
  473. "rulekey": "client_traderflow_hisorder",
  474. "isshow": true,
  475. "remark": "交易查询-历史委托",
  476. "children": [
  477. {
  478. "code": "client_traderflow_hisorder_search",
  479. "title": "查询",
  480. "sort": 1,
  481. "type": 1,
  482. "rulekey": "client_traderflow_hisorder_search",
  483. "isshow": true,
  484. "remark": "交易查询-历史委托-查询",
  485. "children": []
  486. },
  487. {
  488. "code": "client_traderflow_hisorder_chart",
  489. "title": "图表",
  490. "sort": 2,
  491. "type": 1,
  492. "rulekey": "client_traderflow_hisorder_chart",
  493. "isshow": true,
  494. "remark": "交易查询-历史委托-图表",
  495. "children": []
  496. }
  497. ]
  498. },
  499. {
  500. "code": "client_traderflow_histrade",
  501. "title": "历史成交",
  502. "sort": 2,
  503. "type": 1,
  504. "rulekey": "client_traderflow_histrade",
  505. "isshow": true,
  506. "remark": "交易查询-历史成交",
  507. "children": [
  508. {
  509. "code": "client_traderflow_histrade_search",
  510. "title": "查询",
  511. "sort": 1,
  512. "type": 1,
  513. "rulekey": "client_traderflow_histrade_search",
  514. "isshow": true,
  515. "remark": "交易查询-历史成交-查询",
  516. "children": []
  517. },
  518. {
  519. "code": "client_traderflow_histrade_chart",
  520. "title": "图表",
  521. "sort": 2,
  522. "type": 1,
  523. "rulekey": "client_traderflow_histrade_chart",
  524. "isshow": true,
  525. "remark": "交易查询-历史成交-图表",
  526. "children": []
  527. }
  528. ]
  529. },
  530. {
  531. "code": "client_traderflow_hista",
  532. "title": "历史流水",
  533. "sort": 3,
  534. "type": 1,
  535. "rulekey": "client_traderflow_hista",
  536. "isshow": true,
  537. "remark": "交易查询-历史流水",
  538. "children": [
  539. {
  540. "code": "client_traderflow_hista_search",
  541. "title": "查询",
  542. "sort": 1,
  543. "type": 1,
  544. "rulekey": "client_traderflow_hista_search",
  545. "isshow": true,
  546. "remark": "交易查询-历史流水-查询",
  547. "children": []
  548. }
  549. ]
  550. }
  551. ]
  552. },
  553. {
  554. "code": "client_finance",
  555. "title": "财务审核",
  556. "sort": 7,
  557. "type": 1,
  558. "rulekey": "client_finance",
  559. "isshow": true,
  560. "remark": "财务审核",
  561. "children": [
  562. {
  563. "code": "client_finance_search",
  564. "title": "搜索",
  565. "sort": 1,
  566. "type": 1,
  567. "rulekey": "client_finance_search",
  568. "isshow": true,
  569. "remark": "财务审核-搜索",
  570. "children": []
  571. },
  572. {
  573. "code": "client_finance_fund",
  574. "title": "款项",
  575. "sort": 2,
  576. "type": 1,
  577. "rulekey": "client_finance_fund",
  578. "isshow": true,
  579. "remark": "财务审核-款项",
  580. "children": [
  581. {
  582. "code": "client_finance_fund_cancel",
  583. "title": "撤回",
  584. "sort": 1,
  585. "type": 1,
  586. "rulekey": "client_finance_fund_cancel",
  587. "isshow": true,
  588. "remark": "财务审核-款项-撤回",
  589. "children": []
  590. },
  591. {
  592. "code": "client_finance_fund_check",
  593. "title": "款项审核",
  594. "sort": 2,
  595. "type": 1,
  596. "rulekey": "client_finance_fund_check",
  597. "isshow": true,
  598. "remark": "财务审核-款项-款项审核",
  599. "children": []
  600. }
  601. ]
  602. },
  603. {
  604. "code": "client_finance_invoice",
  605. "title": "发票",
  606. "sort": 3,
  607. "type": 1,
  608. "rulekey": "client_finance_invoice",
  609. "isshow": true,
  610. "remark": "财务审核-发票",
  611. "children": [
  612. {
  613. "code": "client_finance_invoice_cancel",
  614. "title": "撤回",
  615. "sort": 1,
  616. "type": 1,
  617. "rulekey": "client_finance_invoice_cancel",
  618. "isshow": true,
  619. "remark": "财务审核-发票-撤回",
  620. "children": []
  621. },
  622. {
  623. "code": "client_finance_invoice_check",
  624. "title": "发票审核",
  625. "sort": 2,
  626. "type": 1,
  627. "rulekey": "client_finance_invoice_check",
  628. "isshow": true,
  629. "remark": "财务审核-发票-发票审核",
  630. "children": []
  631. }
  632. ]
  633. }
  634. ]
  635. },
  636. {
  637. "code": "client_business",
  638. "title": "业务审核",
  639. "sort": 8,
  640. "type": 1,
  641. "rulekey": "client_business",
  642. "isshow": true,
  643. "remark": "业务审核",
  644. "children": [
  645. {
  646. "code": "client_business_search",
  647. "title": "搜索",
  648. "sort": 1,
  649. "type": 1,
  650. "rulekey": "client_business_search",
  651. "isshow": true,
  652. "remark": "业务审核-搜索",
  653. "children": []
  654. },
  655. {
  656. "code": "client_business_point",
  657. "title": "点价",
  658. "sort": 2,
  659. "type": 1,
  660. "rulekey": "client_business_point",
  661. "isshow": true,
  662. "remark": "业务审核-点价",
  663. "children": [
  664. {
  665. "code": "client_business_point_check",
  666. "title": "点价审核",
  667. "sort": 1,
  668. "type": 1,
  669. "rulekey": "client_business_point_check",
  670. "isshow": true,
  671. "remark": "业务审核-点价-点价审核",
  672. "children": []
  673. },
  674. {
  675. "code": "client_business_point_cancel",
  676. "title": "撤回",
  677. "sort": 2,
  678. "type": 1,
  679. "rulekey": "client_business_point_cancel",
  680. "isshow": true,
  681. "remark": "业务审核-点价-撤回",
  682. "children": []
  683. }
  684. ]
  685. },
  686. {
  687. "code": "client_business_settle",
  688. "title": "交收",
  689. "sort": 3,
  690. "type": 1,
  691. "rulekey": "client_business_settle",
  692. "isshow": true,
  693. "remark": "业务审核-交收",
  694. "children": [
  695. {
  696. "code": "client_business_settle_check",
  697. "title": "交收审核",
  698. "sort": 1,
  699. "type": 1,
  700. "rulekey": "client_business_settle_check",
  701. "isshow": true,
  702. "remark": "业务审核-交收-交收审核",
  703. "children": []
  704. },
  705. {
  706. "code": "client_business_settle_cancel",
  707. "title": "撤回",
  708. "sort": 2,
  709. "type": 1,
  710. "rulekey": "client_business_settle_cancel",
  711. "isshow": true,
  712. "remark": "业务审核-交收-撤回",
  713. "children": []
  714. }
  715. ]
  716. }
  717. ]
  718. },
  719. {
  720. "code": "client_hedgeplan",
  721. "title": "套保计划",
  722. "sort": 9,
  723. "type": 1,
  724. "rulekey": "client_hedgeplan",
  725. "isshow": true,
  726. "remark": "套保计划",
  727. "children": [
  728. {
  729. "code": "client_hedgeplan_add",
  730. "title": "新增",
  731. "sort": 1,
  732. "type": 1,
  733. "rulekey": "client_hedgeplan_add",
  734. "isshow": true,
  735. "remark": "套保计划-新增",
  736. "children": []
  737. },
  738. {
  739. "code": "client_hedgeplan_search",
  740. "title": "搜索",
  741. "sort": 2,
  742. "type": 1,
  743. "rulekey": "client_hedgeplan_search",
  744. "isshow": true,
  745. "remark": "套保计划-搜索",
  746. "children": []
  747. },
  748. {
  749. "code": "client_hedgeplan_unsubmit",
  750. "title": "未提交",
  751. "sort": 3,
  752. "type": 1,
  753. "rulekey": "client_hedgeplan_unsubmit",
  754. "isshow": true,
  755. "remark": "套保计划-未提交",
  756. "children": [
  757. {
  758. "code": "client_hedgeplan_recommit",
  759. "title": "重新提交",
  760. "sort": 1,
  761. "type": 1,
  762. "rulekey": "client_hedgeplan_recommit",
  763. "isshow": true,
  764. "remark": "套保计划-未提交-重新提交",
  765. "children": []
  766. },
  767. {
  768. "code": "client_hedgeplan_update",
  769. "title": "修改",
  770. "sort": 2,
  771. "type": 1,
  772. "rulekey": "client_hedgeplan_update",
  773. "isshow": true,
  774. "remark": "套保计划-未提交-修改",
  775. "children": []
  776. }
  777. ]
  778. },
  779. {
  780. "code": "client_hedgeplan_unaduit",
  781. "title": "待审核",
  782. "sort": 4,
  783. "type": 1,
  784. "rulekey": "client_hedgeplan_unaduit",
  785. "isshow": true,
  786. "remark": "套保计划-待审核",
  787. "children": [
  788. {
  789. "code": "client_hedgeplan_check",
  790. "title": "审核",
  791. "sort": 1,
  792. "type": 1,
  793. "rulekey": "client_hedgeplan_check",
  794. "isshow": true,
  795. "remark": "套保计划-待审核-审核",
  796. "children": []
  797. },
  798. {
  799. "code": "client_hedgeplan_cancel",
  800. "title": "撤销",
  801. "sort": 2,
  802. "type": 1,
  803. "rulekey": "client_hedgeplan_cancel",
  804. "isshow": true,
  805. "remark": "套保计划-待审核-撤销",
  806. "children": []
  807. }
  808. ]
  809. },
  810. {
  811. "code": "client_hedgeplan_inprogress",
  812. "title": "执行中",
  813. "sort": 5,
  814. "type": 1,
  815. "rulekey": "client_hedgeplan_inprogress",
  816. "isshow": true,
  817. "remark": "套保计划-执行中",
  818. "children": []
  819. }
  820. ]
  821. },
  822. {
  823. "code": "client_spotcontract",
  824. "title": "现货合同",
  825. "sort": 10,
  826. "type": 1,
  827. "rulekey": "client_spotcontract",
  828. "isshow": true,
  829. "remark": "现货合同",
  830. "children": [
  831. {
  832. "code": "client_spotcontract_add",
  833. "title": "新增",
  834. "sort": 1,
  835. "type": 1,
  836. "rulekey": "client_spotcontract_add",
  837. "isshow": true,
  838. "remark": "现货合同-新增",
  839. "children": []
  840. },
  841. {
  842. "code": "client_spotcontract_search",
  843. "title": "搜索",
  844. "sort": 2,
  845. "type": 1,
  846. "rulekey": "client_spotcontract_search",
  847. "isshow": true,
  848. "remark": "现货合同-搜索",
  849. "children": []
  850. },
  851. {
  852. "code": "client_spotcontract_unsubmit",
  853. "title": "未提交",
  854. "sort": 3,
  855. "type": 1,
  856. "rulekey": "client_spotcontract_unsubmit",
  857. "isshow": true,
  858. "remark": "现货合同-未提交",
  859. "children": [
  860. {
  861. "code": "client_spotcontract_recommit",
  862. "title": "重新提交",
  863. "sort": 1,
  864. "type": 1,
  865. "rulekey": "client_spotcontract_recommit",
  866. "isshow": true,
  867. "remark": "现货合同-未提交-重新提交",
  868. "children": []
  869. },
  870. {
  871. "code": "client_spotcontract_update",
  872. "title": "修改",
  873. "sort": 2,
  874. "type": 1,
  875. "rulekey": "client_spotcontract_update",
  876. "isshow": true,
  877. "remark": "现货合同-未提交-修改",
  878. "children": []
  879. }
  880. ]
  881. },
  882. {
  883. "code": "client_spotcontract_unaduit",
  884. "title": "待审核",
  885. "sort": 4,
  886. "type": 1,
  887. "rulekey": "client_spotcontract_unaduit",
  888. "isshow": true,
  889. "remark": "现货合同-待审核",
  890. "children": [
  891. {
  892. "code": "client_spotcontract_check",
  893. "title": "审核",
  894. "sort": 1,
  895. "type": 1,
  896. "rulekey": "client_spotcontract_check",
  897. "isshow": true,
  898. "remark": "现货合同-待审核-审核",
  899. "children": []
  900. },
  901. {
  902. "code": "client_spotcontract_cancel",
  903. "title": "撤销",
  904. "sort": 2,
  905. "type": 1,
  906. "rulekey": "client_spotcontract_cancel",
  907. "isshow": true,
  908. "remark": "现货合同-待审核-撤销",
  909. "children": []
  910. }
  911. ]
  912. },
  913. {
  914. "code": "client_spotcontract_agreement",
  915. "title": "履约中",
  916. "sort": 5,
  917. "type": 1,
  918. "rulekey": "client_spotcontract_agreement",
  919. "isshow": true,
  920. "remark": "现货合同-履约中",
  921. "children": [
  922. {
  923. "code": "client_spotcontract_finish",
  924. "title": "完结合同",
  925. "sort": 1,
  926. "type": 1,
  927. "rulekey": "client_spotcontract_finish",
  928. "isshow": true,
  929. "remark": "现货合同-履约中-完结合同",
  930. "children": []
  931. }
  932. ]
  933. },
  934. {
  935. "code": "client_spotcontract_completed",
  936. "title": "已完成",
  937. "sort": 6,
  938. "type": 1,
  939. "rulekey": "client_spotcontract_completed",
  940. "isshow": true,
  941. "remark": "现货合同-已完成",
  942. "children": []
  943. }
  944. ]
  945. },
  946. {
  947. "code": "client_accountmanage",
  948. "title": "账户管理",
  949. "sort": 11,
  950. "type": 1,
  951. "rulekey": "client_accountmanage",
  952. "isshow": true,
  953. "remark": "账户管理",
  954. "children": [
  955. {
  956. "code": "client_accountmanage_ta",
  957. "title": "期货账户",
  958. "sort": 1,
  959. "type": 1,
  960. "rulekey": "client_accountmanage_ta",
  961. "isshow": true,
  962. "remark": "账户管理-期货账户",
  963. "children": [
  964. {
  965. "code": "client_accountmanage_ta_accountset",
  966. "title": "账户设置",
  967. "sort": 1,
  968. "type": 1,
  969. "rulekey": "client_accountmanage_ta_accountset",
  970. "isshow": true,
  971. "remark": "账户管理-期货账户-账户设置",
  972. "children": []
  973. },
  974. {
  975. "code": "client_accountmanage_ta_mainadd",
  976. "title": "新增主账户",
  977. "sort": 2,
  978. "type": 1,
  979. "rulekey": "client_accountmanage_ta_mainadd",
  980. "isshow": true,
  981. "remark": "账户管理-期货账户-新增主账户",
  982. "children": []
  983. },
  984. {
  985. "code": "client_accountmanage_ta_mainupdate",
  986. "title": "主账户修改",
  987. "sort": 3,
  988. "type": 1,
  989. "rulekey": "client_accountmanage_ta_mainupdate",
  990. "isshow": true,
  991. "remark": "账户管理-期货账户-主账户修改",
  992. "children": []
  993. },
  994. {
  995. "code": "client_accountmanage_ta_subadd",
  996. "title": "子账户新增",
  997. "sort": 4,
  998. "type": 1,
  999. "rulekey": "client_accountmanage_ta_subadd",
  1000. "isshow": true,
  1001. "remark": "账户管理-期货账户-子账户新增",
  1002. "children": []
  1003. },
  1004. {
  1005. "code": "client_accountmanage_ta_subupdate",
  1006. "title": "子账户修改",
  1007. "sort": 5,
  1008. "type": 1,
  1009. "rulekey": "client_accountmanage_ta_subupdate",
  1010. "isshow": true,
  1011. "remark": "账户管理-期货账户-子账户修改",
  1012. "children": []
  1013. },
  1014. {
  1015. "code": "client_accountmanage_ta_subclose",
  1016. "title": "子账户注销",
  1017. "sort": 6,
  1018. "type": 1,
  1019. "rulekey": "client_accountmanage_ta_subclose",
  1020. "isshow": true,
  1021. "remark": "账户管理-期货账户-子账户注销",
  1022. "children": []
  1023. },
  1024. {
  1025. "code": "client_accountmanage_ta_subcredit",
  1026. "title": "子账户授信",
  1027. "sort": 7,
  1028. "type": 1,
  1029. "rulekey": "client_accountmanage_ta_subcredit",
  1030. "isshow": true,
  1031. "remark": "账户管理-期货账户-子账户授信",
  1032. "children": []
  1033. }
  1034. ]
  1035. },
  1036. {
  1037. "code": "client_accountmanage_manage",
  1038. "title": "管理账户",
  1039. "sort": 2,
  1040. "type": 1,
  1041. "rulekey": "client_accountmanage_manage",
  1042. "isshow": true,
  1043. "remark": "账户管理-管理账户",
  1044. "children": [
  1045. {
  1046. "code": "client_accountmanage_roleset",
  1047. "title": "权限设置",
  1048. "sort": 1,
  1049. "type": 1,
  1050. "rulekey": "client_accountmanage_roleset",
  1051. "isshow": true,
  1052. "remark": "账户管理-管理账户-权限设置",
  1053. "children": []
  1054. },
  1055. {
  1056. "code": "client_accountmanage_add",
  1057. "title": "新增",
  1058. "sort": 2,
  1059. "type": 1,
  1060. "rulekey": "client_accountmanage_add",
  1061. "isshow": true,
  1062. "remark": "账户管理-管理账户-新增",
  1063. "children": []
  1064. },
  1065. {
  1066. "code": "client_accountmanage_update",
  1067. "title": "修改",
  1068. "sort": 3,
  1069. "type": 1,
  1070. "rulekey": "client_accountmanage_update",
  1071. "isshow": true,
  1072. "remark": "账户管理-管理账户-修改",
  1073. "children": []
  1074. },
  1075. {
  1076. "code": "client_accountmanage_resetpwd",
  1077. "title": "重置密码",
  1078. "sort": 4,
  1079. "type": 1,
  1080. "rulekey": "client_accountmanage_resetpwd",
  1081. "isshow": true,
  1082. "remark": "账户管理-管理账户-重置密码",
  1083. "children": []
  1084. },
  1085. {
  1086. "code": "client_accountmanage_lock",
  1087. "title": "锁定",
  1088. "sort": 5,
  1089. "type": 1,
  1090. "rulekey": "client_accountmanage_lock",
  1091. "isshow": true,
  1092. "remark": "账户管理-管理账户-锁定",
  1093. "children": []
  1094. },
  1095. {
  1096. "code": "client_accountmanage_unlock",
  1097. "title": "解锁",
  1098. "sort": 6,
  1099. "type": 1,
  1100. "rulekey": "client_accountmanage_unlock",
  1101. "isshow": true,
  1102. "remark": "账户管理-管理账户-解锁",
  1103. "children": []
  1104. },
  1105. {
  1106. "code": "client_accountmanage_close",
  1107. "title": "注销",
  1108. "sort": 7,
  1109. "type": 1,
  1110. "rulekey": "client_accountmanage_close",
  1111. "isshow": true,
  1112. "remark": "账户管理-管理账户-注销",
  1113. "children": []
  1114. }
  1115. ]
  1116. },
  1117. {
  1118. "code": "client_accountmanage_business",
  1119. "title": "业务账户",
  1120. "sort": 3,
  1121. "type": 1,
  1122. "rulekey": "client_accountmanage_business",
  1123. "isshow": true,
  1124. "remark": "账户管理-业务账户",
  1125. "children": [
  1126. {
  1127. "code": "client_accountmanage_business_add",
  1128. "title": "新增",
  1129. "sort": 1,
  1130. "type": 1,
  1131. "rulekey": "client_accountmanage_business_add",
  1132. "isshow": true,
  1133. "remark": "账户管理-业务账户-新增",
  1134. "children": []
  1135. },
  1136. {
  1137. "code": "client_accountmanage_business_update",
  1138. "title": "修改",
  1139. "sort": 2,
  1140. "type": 1,
  1141. "rulekey": "client_accountmanage_business_update",
  1142. "isshow": true,
  1143. "remark": "账户管理-业务账户-修改",
  1144. "children": []
  1145. },
  1146. {
  1147. "code": "client_accountmanage_business_resetpwd",
  1148. "title": "重置密码",
  1149. "sort": 3,
  1150. "type": 1,
  1151. "rulekey": "client_accountmanage_business_resetpwd",
  1152. "isshow": true,
  1153. "remark": "账户管理-业务账户-重置密码",
  1154. "children": []
  1155. },
  1156. {
  1157. "code": "client_accountmanage_business_lock",
  1158. "title": "锁定",
  1159. "sort": 4,
  1160. "type": 1,
  1161. "rulekey": "client_accountmanage_business_lock",
  1162. "isshow": true,
  1163. "remark": "账户管理-业务账户-锁定",
  1164. "children": []
  1165. },
  1166. {
  1167. "code": "client_accountmanage_business_unlock",
  1168. "title": "解锁",
  1169. "sort": 5,
  1170. "type": 1,
  1171. "rulekey": "client_accountmanage_business_unlock",
  1172. "isshow": true,
  1173. "remark": "账户管理-业务账户-解锁",
  1174. "children": []
  1175. },
  1176. {
  1177. "code": "client_accountmanage_business_close",
  1178. "title": "注销",
  1179. "sort": 6,
  1180. "type": 1,
  1181. "rulekey": "client_accountmanage_business_close",
  1182. "isshow": true,
  1183. "remark": "账户管理-业务账户-注销",
  1184. "children": []
  1185. }
  1186. ]
  1187. },
  1188. {
  1189. "code": "client_accountmanage_trade",
  1190. "title": "交易账户",
  1191. "sort": 4,
  1192. "type": 1,
  1193. "rulekey": "client_accountmanage_trade",
  1194. "isshow": true,
  1195. "remark": "账户管理-交易账户",
  1196. "children": [
  1197. {
  1198. "code": "client_accountmanage_trade_userupdate",
  1199. "title": "交易用户修改",
  1200. "sort": 1,
  1201. "type": 1,
  1202. "rulekey": "client_accountmanage_trade_userupdate",
  1203. "isshow": true,
  1204. "remark": "账户管理-交易账户-交易用户修改",
  1205. "children": []
  1206. },
  1207. {
  1208. "code": "client_accountmanage_trade_add",
  1209. "title": "交易员新增",
  1210. "sort": 2,
  1211. "type": 1,
  1212. "rulekey": "client_accountmanage_trade_add",
  1213. "isshow": true,
  1214. "remark": "账户管理-交易账户-交易员新增",
  1215. "children": []
  1216. },
  1217. {
  1218. "code": "client_accountmanage_trade_update",
  1219. "title": "交易员修改",
  1220. "sort": 3,
  1221. "type": 1,
  1222. "rulekey": "client_accountmanage_trade_update",
  1223. "isshow": true,
  1224. "remark": "账户管理-交易账户-交易员修改",
  1225. "children": []
  1226. },
  1227. {
  1228. "code": "client_accountmanage_trade_resetpwd",
  1229. "title": "交易员重置密码",
  1230. "sort": 4,
  1231. "type": 1,
  1232. "rulekey": "client_accountmanage_trade_resetpwd",
  1233. "isshow": true,
  1234. "remark": "账户管理-交易账户-交易员重置密码",
  1235. "children": []
  1236. },
  1237. {
  1238. "code": "client_accountmanage_trade_lock",
  1239. "title": "交易员锁定",
  1240. "sort": 5,
  1241. "type": 1,
  1242. "rulekey": "client_accountmanage_trade_lock",
  1243. "isshow": true,
  1244. "remark": "账户管理-交易账户-交易员锁定",
  1245. "children": []
  1246. },
  1247. {
  1248. "code": "client_accountmanage_trade_close",
  1249. "title": "交易员注销",
  1250. "sort": 6,
  1251. "type": 1,
  1252. "rulekey": "client_accountmanage_trade_close",
  1253. "isshow": true,
  1254. "remark": "账户管理-交易账户-交易员注销",
  1255. "children": []
  1256. },
  1257. {
  1258. "code": "client_accountmanage_trade_unlock",
  1259. "title": "交易员解锁",
  1260. "sort": 7,
  1261. "type": 1,
  1262. "rulekey": "client_accountmanage_trade_unlock",
  1263. "isshow": true,
  1264. "remark": "账户管理-交易账户-交易员解锁",
  1265. "children": []
  1266. }
  1267. ]
  1268. }
  1269. ]
  1270. },
  1271. {
  1272. "code": "client_deliverygoods",
  1273. "title": "商品信息",
  1274. "sort": 12,
  1275. "type": 1,
  1276. "rulekey": "client_deliverygoods",
  1277. "isshow": true,
  1278. "remark": "商品信息",
  1279. "children": [
  1280. {
  1281. "code": "client_deliverygoods_add",
  1282. "title": "新增",
  1283. "sort": 1,
  1284. "type": 1,
  1285. "rulekey": "client_deliverygoods_add",
  1286. "isshow": true,
  1287. "remark": "商品信息-新增",
  1288. "children": []
  1289. },
  1290. {
  1291. "code": "client_deliverygoods_search",
  1292. "title": "搜索",
  1293. "sort": 2,
  1294. "type": 1,
  1295. "rulekey": "client_deliverygoods_search",
  1296. "isshow": true,
  1297. "remark": "商品信息-搜索",
  1298. "children": []
  1299. },
  1300. {
  1301. "code": "client_deliverygoods_spot",
  1302. "title": "现货品种",
  1303. "sort": 3,
  1304. "type": 1,
  1305. "rulekey": "client_deliverygoods_spot",
  1306. "isshow": true,
  1307. "remark": "商品信息-现货品种",
  1308. "children": [
  1309. {
  1310. "code": "client_deliverygoods_spot_modify",
  1311. "title": "修改",
  1312. "sort": 1,
  1313. "type": 1,
  1314. "rulekey": "client_deliverygoods_spot_modify",
  1315. "isshow": true,
  1316. "remark": "商品信息-现货品种-修改",
  1317. "children": []
  1318. },
  1319. {
  1320. "code": "client_deliverygoods_spot_disable",
  1321. "title": "停用",
  1322. "sort": 2,
  1323. "type": 1,
  1324. "rulekey": "client_deliverygoods_spot_disable",
  1325. "isshow": true,
  1326. "remark": "商品信息-现货品种-停用",
  1327. "children": []
  1328. },
  1329. {
  1330. "code": "client_deliverygoods_spot_restore",
  1331. "title": "恢复",
  1332. "sort": 3,
  1333. "type": 1,
  1334. "rulekey": "client_deliverygoods_spot_restore",
  1335. "isshow": true,
  1336. "remark": "商品信息-现货品种-恢复",
  1337. "children": []
  1338. }
  1339. ]
  1340. },
  1341. {
  1342. "code": "client_deliverygoods_hedge",
  1343. "title": "套保品种",
  1344. "sort": 4,
  1345. "type": 1,
  1346. "rulekey": "client_deliverygoods_hedge",
  1347. "isshow": true,
  1348. "remark": "商品信息-套保品种",
  1349. "children": [
  1350. {
  1351. "code": "client_deliverygoods_hedge_modify",
  1352. "title": "修改",
  1353. "sort": 1,
  1354. "type": 1,
  1355. "rulekey": "client_deliverygoods_hedge_modify",
  1356. "isshow": true,
  1357. "remark": "商品信息-套保品种-修改",
  1358. "children": []
  1359. },
  1360. {
  1361. "code": "client_deliverygoods_hedge_disable",
  1362. "title": "停用",
  1363. "sort": 2,
  1364. "type": 1,
  1365. "rulekey": "client_deliverygoods_hedge_disable",
  1366. "isshow": true,
  1367. "remark": "商品信息-套保品种-停用",
  1368. "children": []
  1369. },
  1370. {
  1371. "code": "client_deliverygoods_hedge_restore",
  1372. "title": "恢复",
  1373. "sort": 3,
  1374. "type": 1,
  1375. "rulekey": "client_deliverygoods_hedge_restore",
  1376. "isshow": true,
  1377. "remark": "商品信息-套保品种-恢复",
  1378. "children": []
  1379. }
  1380. ]
  1381. }
  1382. ]
  1383. },
  1384. {
  1385. "code": "client_customer",
  1386. "title": "客户资料",
  1387. "sort": 13,
  1388. "type": 1,
  1389. "rulekey": "client_customer",
  1390. "isshow": true,
  1391. "remark": "客户资料",
  1392. "children": [
  1393. {
  1394. "code": "client_customer_add",
  1395. "title": "新增",
  1396. "sort": 1,
  1397. "type": 1,
  1398. "rulekey": "client_customer_add",
  1399. "isshow": true,
  1400. "remark": "客户资料-新增",
  1401. "children": []
  1402. },
  1403. {
  1404. "code": "client_customer_search",
  1405. "title": "搜索",
  1406. "sort": 2,
  1407. "type": 1,
  1408. "rulekey": "client_customer_search",
  1409. "isshow": true,
  1410. "remark": "客户资料-搜索",
  1411. "children": []
  1412. },
  1413. {
  1414. "code": "client_customer_unsubmit",
  1415. "title": "未提交",
  1416. "sort": 3,
  1417. "type": 1,
  1418. "rulekey": "client_customer_unsubmit",
  1419. "isshow": true,
  1420. "remark": "客户资料-未提交",
  1421. "children": [
  1422. {
  1423. "code": "client_customer_recommit",
  1424. "title": "重新提交",
  1425. "sort": 1,
  1426. "type": 1,
  1427. "rulekey": "client_customer_recommit",
  1428. "isshow": true,
  1429. "remark": "客户资料-未提交-重新提交",
  1430. "children": []
  1431. },
  1432. {
  1433. "code": "client_customer_update",
  1434. "title": "修改",
  1435. "sort": 2,
  1436. "type": 1,
  1437. "rulekey": "client_customer_update",
  1438. "isshow": true,
  1439. "remark": "客户资料-未提交-修改",
  1440. "children": []
  1441. },
  1442. {
  1443. "code": "client_customer_delete",
  1444. "title": "删除",
  1445. "sort": 3,
  1446. "type": 1,
  1447. "rulekey": "client_customer_delete",
  1448. "isshow": true,
  1449. "remark": "客户资料-未提交-删除",
  1450. "children": []
  1451. }
  1452. ]
  1453. },
  1454. {
  1455. "code": "client_customer_unaduit",
  1456. "title": "待审核",
  1457. "sort": 4,
  1458. "type": 1,
  1459. "rulekey": "client_customer_unaduit",
  1460. "isshow": true,
  1461. "remark": "客户资料-待审核",
  1462. "children": [
  1463. {
  1464. "code": "client_customer_check",
  1465. "title": "审核",
  1466. "sort": 1,
  1467. "type": 1,
  1468. "rulekey": "client_customer_check",
  1469. "isshow": true,
  1470. "remark": "客户资料-待审核-审核",
  1471. "children": []
  1472. },
  1473. {
  1474. "code": "client_customer_cancel",
  1475. "title": "撤销",
  1476. "sort": 2,
  1477. "type": 1,
  1478. "rulekey": "client_customer_cancel",
  1479. "isshow": true,
  1480. "remark": "客户资料-待审核-撤销",
  1481. "children": []
  1482. }
  1483. ]
  1484. },
  1485. {
  1486. "code": "client_customer_normal",
  1487. "title": "正常",
  1488. "sort": 5,
  1489. "type": 1,
  1490. "rulekey": "client_customer_normal",
  1491. "isshow": true,
  1492. "remark": "客户资料-正常",
  1493. "children": [
  1494. {
  1495. "code": "client_customer_disable",
  1496. "title": "停用",
  1497. "sort": 1,
  1498. "type": 1,
  1499. "rulekey": "client_customer_disable",
  1500. "isshow": true,
  1501. "remark": "客户资料-正常-停用",
  1502. "children": []
  1503. }
  1504. ]
  1505. },
  1506. {
  1507. "code": "client_customer_stop",
  1508. "title": "停用",
  1509. "sort": 6,
  1510. "type": 1,
  1511. "rulekey": "client_customer_stop",
  1512. "isshow": true,
  1513. "remark": "客户资料-停用",
  1514. "children": [
  1515. {
  1516. "code": "client_customer_restore",
  1517. "title": "恢复",
  1518. "sort": 1,
  1519. "type": 1,
  1520. "rulekey": "client_customer_restore",
  1521. "isshow": true,
  1522. "remark": "客户资料-停用-恢复",
  1523. "children": []
  1524. }
  1525. ]
  1526. }
  1527. ]
  1528. },
  1529. {
  1530. "code": "client_exposure",
  1531. "title": "敞口",
  1532. "sort": 14,
  1533. "type": 1,
  1534. "rulekey": "client_exposure",
  1535. "isshow": true,
  1536. "remark": "敞口",
  1537. "children": [
  1538. {
  1539. "code": "client_exposure_real",
  1540. "title": "实时敞口",
  1541. "sort": 1,
  1542. "type": 1,
  1543. "rulekey": "client_exposure_real",
  1544. "isshow": true,
  1545. "remark": "敞口-实时敞口",
  1546. "children": [
  1547. {
  1548. "code": "client_exposure_spotdetail",
  1549. "title": "现货明细",
  1550. "sort": 1,
  1551. "type": 1,
  1552. "rulekey": "client_exposure_spotdetail",
  1553. "isshow": true,
  1554. "remark": "敞口-实时敞口-现货明细",
  1555. "children": []
  1556. },
  1557. {
  1558. "code": "client_exposure_futuresdetail",
  1559. "title": "期货明细",
  1560. "sort": 2,
  1561. "type": 1,
  1562. "rulekey": "client_exposure_futuresdetail",
  1563. "isshow": true,
  1564. "remark": "敞口-实时敞口-期货明细",
  1565. "children": []
  1566. },
  1567. {
  1568. "code": "client_exposure_trade",
  1569. "title": "下单",
  1570. "sort": 3,
  1571. "type": 1,
  1572. "rulekey": "client_exposure_trade",
  1573. "isshow": true,
  1574. "remark": "敞口-实时敞口-下单",
  1575. "children": []
  1576. }
  1577. ]
  1578. },
  1579. {
  1580. "code": "client_exposure_spot",
  1581. "title": "现货头寸",
  1582. "sort": 2,
  1583. "type": 1,
  1584. "rulekey": "client_exposure_spot",
  1585. "isshow": true,
  1586. "remark": "敞口-现货头寸",
  1587. "children": []
  1588. },
  1589. {
  1590. "code": "client_exposure_future",
  1591. "title": "期货头寸",
  1592. "sort": 3,
  1593. "type": 1,
  1594. "rulekey": "client_exposure_future",
  1595. "isshow": true,
  1596. "remark": "敞口-期货头寸",
  1597. "children": []
  1598. },
  1599. {
  1600. "code": "client_exposure_his",
  1601. "title": "历史敞口",
  1602. "sort": 4,
  1603. "type": 1,
  1604. "rulekey": "client_exposure_his",
  1605. "isshow": true,
  1606. "remark": "敞口-历史敞口",
  1607. "children": []
  1608. }
  1609. ]
  1610. },
  1611. {
  1612. "code": "client_so",
  1613. "title": "销售",
  1614. "sort": 15,
  1615. "type": 1,
  1616. "rulekey": "client_so",
  1617. "isshow": true,
  1618. "remark": "销售",
  1619. "children": [
  1620. {
  1621. "code": "client_so_unpoint",
  1622. "title": "待点价",
  1623. "sort": 1,
  1624. "type": 1,
  1625. "rulekey": "client_so_unpoint",
  1626. "isshow": true,
  1627. "remark": "销售-待点价",
  1628. "children": [
  1629. {
  1630. "code": "client_so_point_register",
  1631. "title": "点价登记",
  1632. "sort": 1,
  1633. "type": 1,
  1634. "rulekey": "client_so_point_register",
  1635. "isshow": true,
  1636. "remark": "销售-待点价-点价登记",
  1637. "children": []
  1638. }
  1639. ]
  1640. },
  1641. {
  1642. "code": "client_so_settle",
  1643. "title": "履约交收",
  1644. "sort": 2,
  1645. "type": 1,
  1646. "rulekey": "client_so_settle",
  1647. "isshow": true,
  1648. "remark": "销售-履约交收",
  1649. "children": [
  1650. {
  1651. "code": "client_so_settle_register",
  1652. "title": "交收登记",
  1653. "sort": 1,
  1654. "type": 1,
  1655. "rulekey": "client_so_settle_register",
  1656. "isshow": true,
  1657. "remark": "销售-履约交收-交收登记",
  1658. "children": []
  1659. },
  1660. {
  1661. "code": "client_so_fund_register",
  1662. "title": "款项登记",
  1663. "sort": 2,
  1664. "type": 1,
  1665. "rulekey": "client_so_fund_register",
  1666. "isshow": true,
  1667. "remark": "销售-履约交收-款项登记",
  1668. "children": []
  1669. },
  1670. {
  1671. "code": "client_so_invoice_register",
  1672. "title": "发票登记",
  1673. "sort": 3,
  1674. "type": 1,
  1675. "rulekey": "client_so_invoice_register",
  1676. "isshow": true,
  1677. "remark": "销售-履约交收-发票登记",
  1678. "children": []
  1679. },
  1680. {
  1681. "code": "client_so_outstock_register",
  1682. "title": "出库登记",
  1683. "sort": 4,
  1684. "type": 1,
  1685. "rulekey": "client_so_outstock_register",
  1686. "isshow": true,
  1687. "remark": "销售-履约交收-出库登记",
  1688. "children": []
  1689. }
  1690. ]
  1691. },
  1692. {
  1693. "code": "client_so_all",
  1694. "title": "全部",
  1695. "sort": 3,
  1696. "type": 1,
  1697. "rulekey": "client_so_all",
  1698. "isshow": true,
  1699. "remark": "销售-全部",
  1700. "children": []
  1701. }
  1702. ]
  1703. },
  1704. {
  1705. "code": "client_po",
  1706. "title": "采购",
  1707. "sort": 1,
  1708. "type": 1,
  1709. "rulekey": "client_po",
  1710. "isshow": true,
  1711. "remark": "采购",
  1712. "children": [
  1713. {
  1714. "code": "client_po_unpoint",
  1715. "title": "待点价",
  1716. "sort": 1,
  1717. "type": 1,
  1718. "rulekey": "client_po_unpoint",
  1719. "isshow": true,
  1720. "remark": "采购-待点价",
  1721. "children": [
  1722. {
  1723. "code": "client_po_point_register",
  1724. "title": "点价登记",
  1725. "sort": 1,
  1726. "type": 1,
  1727. "rulekey": "client_po_point_register",
  1728. "isshow": true,
  1729. "remark": "采购-待点价-点价登记",
  1730. "children": []
  1731. }
  1732. ]
  1733. },
  1734. {
  1735. "code": "client_po_settle",
  1736. "title": "履约交收",
  1737. "sort": 2,
  1738. "type": 1,
  1739. "rulekey": "client_po_settle",
  1740. "isshow": true,
  1741. "remark": "采购-履约交收",
  1742. "children": [
  1743. {
  1744. "code": "client_po_settle_register",
  1745. "title": "交收登记",
  1746. "sort": 1,
  1747. "type": 1,
  1748. "rulekey": "client_po_settle_register",
  1749. "isshow": true,
  1750. "remark": "采购-履约交收-交收登记",
  1751. "children": []
  1752. },
  1753. {
  1754. "code": "client_po_fund_register",
  1755. "title": "款项登记",
  1756. "sort": 2,
  1757. "type": 1,
  1758. "rulekey": "client_po_fund_register",
  1759. "isshow": true,
  1760. "remark": "采购-履约交收-款项登记",
  1761. "children": []
  1762. }
  1763. ,
  1764. {
  1765. "code": "client_po_invoice_register",
  1766. "title": "发票登记",
  1767. "sort": 3,
  1768. "type": 1,
  1769. "rulekey": "client_po_invoice_register",
  1770. "isshow": true,
  1771. "remark": "采购-履约交收-发票登记",
  1772. "children": []
  1773. }
  1774. ,
  1775. {
  1776. "code": "client_po_instock_register",
  1777. "title": "入库登记",
  1778. "sort": 4,
  1779. "type": 1,
  1780. "rulekey": "client_po_instock_register",
  1781. "isshow": true,
  1782. "remark": "采购-履约交收-入库登记",
  1783. "children": []
  1784. }
  1785. ]
  1786. },
  1787. {
  1788. "code": "client_po_all",
  1789. "title": "全部",
  1790. "sort": 3,
  1791. "type": 1,
  1792. "rulekey": "client_po_all",
  1793. "isshow": true,
  1794. "remark": "采购-全部",
  1795. "children": []
  1796. }
  1797. ]
  1798. },
  1799. {
  1800. "code": "client_futures",
  1801. "title": "期货",
  1802. "sort": 16,
  1803. "type": 1,
  1804. "rulekey": "client_futures",
  1805. "isshow": true,
  1806. "remark": "期货",
  1807. "children": [
  1808. {
  1809. "code": "client_futures_search",
  1810. "title": "搜索",
  1811. "sort": 1,
  1812. "type": 1,
  1813. "rulekey": "client_futures_search",
  1814. "isshow": true,
  1815. "remark": "期货-搜索",
  1816. "children": []
  1817. },
  1818. {
  1819. "code": "client_futures_quote",
  1820. "title": "行情",
  1821. "sort": 2,
  1822. "type": 1,
  1823. "rulekey": "client_futures_quote",
  1824. "isshow": true,
  1825. "remark": "期货-行情",
  1826. "children": [
  1827. {
  1828. "code": "client_futures_quote_buy",
  1829. "title": "买入",
  1830. "sort": 1,
  1831. "type": 1,
  1832. "rulekey": "client_futures_quote_buy",
  1833. "isshow": true,
  1834. "remark": "期货-行情-买入",
  1835. "children": []
  1836. },
  1837. {
  1838. "code": "client_futures_quote_sell",
  1839. "title": "卖出",
  1840. "sort": 2,
  1841. "type": 1,
  1842. "rulekey": "client_futures_quote_sell",
  1843. "isshow": true,
  1844. "remark": "期货-行情-卖出",
  1845. "children": []
  1846. },
  1847. {
  1848. "code": "client_futures_quote_close",
  1849. "title": "平仓",
  1850. "sort": 3,
  1851. "type": 1,
  1852. "rulekey": "client_futures_quote_close",
  1853. "isshow": true,
  1854. "remark": "期货-行情-平仓",
  1855. "children": []
  1856. }
  1857. ]
  1858. },
  1859. {
  1860. "code": "client_futures_position",
  1861. "title": "持仓",
  1862. "sort": 3,
  1863. "type": 1,
  1864. "rulekey": "client_futures_position",
  1865. "isshow": true,
  1866. "remark": "期货-持仓",
  1867. "children": [
  1868. {
  1869. "code": "client_futures_position_quickclose",
  1870. "title": "快捷反手",
  1871. "sort": 1,
  1872. "type": 1,
  1873. "rulekey": "client_futures_position_quickclose",
  1874. "isshow": true,
  1875. "remark": "期货-持仓-快捷反手",
  1876. "children": []
  1877. },
  1878. {
  1879. "code": "client_futures_position_allclose",
  1880. "title": "一键平仓",
  1881. "sort": 2,
  1882. "type": 1,
  1883. "rulekey": "client_futures_position_allclose",
  1884. "isshow": true,
  1885. "remark": "期货-持仓-一键平仓",
  1886. "children": []
  1887. }
  1888. ]
  1889. },
  1890. {
  1891. "code": "client_futures_order",
  1892. "title": "委托",
  1893. "sort": 4,
  1894. "type": 1,
  1895. "rulekey": "client_futures_order",
  1896. "isshow": true,
  1897. "remark": "期货-委托",
  1898. "children": [
  1899. {
  1900. "code": "client_futures_order_cancel",
  1901. "title": "撤单",
  1902. "sort": 1,
  1903. "type": 1,
  1904. "rulekey": "client_futures_order_cancel",
  1905. "isshow": true,
  1906. "remark": "期货-成交-撤单",
  1907. "children": []
  1908. }
  1909. ]
  1910. },
  1911. {
  1912. "code": "client_futures_trade",
  1913. "title": "成交",
  1914. "sort": 5,
  1915. "type": 1,
  1916. "rulekey": "client_futures_trade",
  1917. "isshow": true,
  1918. "remark": "期货-成交",
  1919. "children": []
  1920. },
  1921. {
  1922. "code": "client_futures_fund",
  1923. "title": "资金",
  1924. "sort": 6,
  1925. "type": 1,
  1926. "rulekey": "client_futures_fund",
  1927. "isshow": true,
  1928. "remark": "期货-资金",
  1929. "children": []
  1930. }
  1931. ]
  1932. },
  1933. {
  1934. "code": "client_qhjcztx",
  1935. "title": "充值提现",
  1936. "sort": 17,
  1937. "type": 1,
  1938. "rulekey": "client_qhjcztx",
  1939. "isshow": true,
  1940. "remark": "充值提现",
  1941. "children": []
  1942. },
  1943. {
  1944. "code": "client_qhjzjxx",
  1945. "title": "资产信息",
  1946. "sort": 18,
  1947. "type": 1,
  1948. "rulekey": "client_qhjzjxx",
  1949. "isshow": true,
  1950. "remark": "资产信息",
  1951. "children": []
  1952. },
  1953. {
  1954. "code": "client_qhjdtgl",
  1955. "title": "定投管理",
  1956. "sort": 19,
  1957. "type": 1,
  1958. "rulekey": "client_qhjdtgl",
  1959. "isshow": true,
  1960. "remark": "定投管理",
  1961. "children": []
  1962. },
  1963. {
  1964. "code": "client_qhjjycx",
  1965. "title": "交易查询",
  1966. "sort": 20,
  1967. "type": 1,
  1968. "rulekey": "client_qhjjycx",
  1969. "isshow": true,
  1970. "remark": "交易查询",
  1971. "children": []
  1972. },
  1973. {
  1974. "code": "client_qhjbjb",
  1975. "title": "铂金宝",
  1976. "sort": 21,
  1977. "type": 1,
  1978. "rulekey": "client_qhjbjb",
  1979. "isshow": true,
  1980. "remark": "铂金宝",
  1981. "children": []
  1982. },
  1983. {
  1984. "code": "client_qhjsphg",
  1985. "title": "饰品回收",
  1986. "sort": 22,
  1987. "type": 1,
  1988. "rulekey": "client_qhjsphg",
  1989. "isshow": true,
  1990. "remark": "饰品回收",
  1991. "children": []
  1992. },
  1993. {
  1994. "code": "client_qhjmine",
  1995. "title": "我的",
  1996. "sort": 23,
  1997. "type": 1,
  1998. "rulekey": "client_qhjmine",
  1999. "isshow": true,
  2000. "remark": "我的",
  2001. "children": []
  2002. },
  2003. {
  2004. "code": "client_mobile_hnstcdmy",
  2005. "title": "仓单贸易",
  2006. "sort": 24,
  2007. "type": 1,
  2008. "rulekey": "client_mobile_hnstcdmy",
  2009. "isshow": true,
  2010. "remark": "仓单贸易",
  2011. "children": []
  2012. },
  2013. {
  2014. "code": "client_mobile_hnstcdys",
  2015. "title": "仓单预售",
  2016. "sort": 25,
  2017. "type": 1,
  2018. "rulekey": "client_mobile_hnstcdys",
  2019. "isshow": true,
  2020. "remark": "仓单预售",
  2021. "children": []
  2022. },
  2023. {
  2024. "code": "client_mobile_hnsthyjy",
  2025. "title": "合约交易",
  2026. "sort": 26,
  2027. "type": 1,
  2028. "rulekey": "client_mobile_hnsthyjy",
  2029. "isshow": true,
  2030. "remark": "合约交易",
  2031. "children": []
  2032. },
  2033. {
  2034. "code": "client_mobile_hnstmine",
  2035. "title": "我的",
  2036. "sort": 27,
  2037. "type": 1,
  2038. "rulekey": "client_mobile_hnstmine",
  2039. "isshow": true,
  2040. "remark": "我的",
  2041. "children": []
  2042. },
  2043. {
  2044. "code": "client_mobile_hnstxhcx",
  2045. "title": "现货查询",
  2046. "sort": 28,
  2047. "type": 1,
  2048. "rulekey": "client_mobile_hnstxhcx",
  2049. "isshow": true,
  2050. "remark": "现货查询",
  2051. "children": []
  2052. },
  2053. {
  2054. "code": "client_mobile_hnsthycx",
  2055. "title": "合约查询",
  2056. "sort": 29,
  2057. "type": 1,
  2058. "rulekey": "client_mobile_hnsthycx",
  2059. "isshow": true,
  2060. "remark": "合约查询",
  2061. "children": []
  2062. },
  2063. {
  2064. "code": "client_mobile_hnstlygl",
  2065. "title": "履约管理",
  2066. "sort": 30,
  2067. "type": 1,
  2068. "rulekey": "client_mobile_hnstlygl",
  2069. "isshow": true,
  2070. "remark": "履约管理",
  2071. "children": []
  2072. },
  2073. {
  2074. "code": "client_mobile_hnstcztx",
  2075. "title": "充值提现",
  2076. "sort": 31,
  2077. "type": 1,
  2078. "rulekey": "client_mobile_hnstcztx",
  2079. "isshow": true,
  2080. "remark": "充值提现",
  2081. "children": []
  2082. },
  2083. {
  2084. "code": "client_qhjkhzl",
  2085. "title": "客户资料",
  2086. "sort": 32,
  2087. "type": 1,
  2088. "rulekey": "client_qhjkhzl",
  2089. "isshow": true,
  2090. "remark": "客户资料",
  2091. "children": []
  2092. },
  2093. {
  2094. "code": "client_mobile_hnstckhq",
  2095. "title": "参考行情",
  2096. "sort": 33,
  2097. "type": 1,
  2098. "rulekey": "client_mobile_hnstckhq",
  2099. "isshow": true,
  2100. "remark": "参考行情",
  2101. "children": []
  2102. }
  2103. ]