mobile_menu.json 87 KB

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