pc_menu_企业风管.json 129 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278
  1. [
  2. {
  3. "code": "remark",
  4. "title": "",
  5. "sort": 1,
  6. "type": 1,
  7. "rulekey": "",
  8. "isshow": false,
  9. "url": "",
  10. "remark": "type: 1 右侧主菜单或是上半部分tab子菜单; 2:操作按钮;3:tab下方明细;4:底部单据菜单;5:管理端路径;",
  11. "children": []
  12. },
  13. {
  14. "code": "bottom",
  15. "title": "底部单据菜单",
  16. "sort": 1,
  17. "type": 4,
  18. "rulekey": "client_pc_web_account",
  19. "isshow": true,
  20. "url": "",
  21. "remark": "",
  22. "children": [
  23. {
  24. "code": "spot_warrant",
  25. "title": "现货仓单",
  26. "sort": 1,
  27. "type": 4,
  28. "rulekey": "client_pc_web_spot_production_bottom_spot_warrant",
  29. "isshow": true,
  30. "url": "",
  31. "remark": "",
  32. "children": [
  33. {
  34. "code": "spot_warrant_spot_summary",
  35. "title": "现货汇总",
  36. "sort": 1,
  37. "type": 4,
  38. "rulekey": "client_pc_web_spot_production_bottom_spot_summary",
  39. "isshow": false,
  40. "url": "",
  41. "remark": "",
  42. "children": [
  43. {
  44. "code": "spot_warrant_spot_summary_check",
  45. "title": "查看库存",
  46. "sort": 1,
  47. "type": 2,
  48. "rulekey": "client_pc_web_spot_production_bottom_spot_summary_check_btn",
  49. "isshow": false,
  50. "url": "",
  51. "remark": "",
  52. "children": [
  53. ]
  54. }
  55. ]
  56. },
  57. {
  58. "code": "spot_warrant_inventory_summary",
  59. "title": "库存汇总",
  60. "sort": 1,
  61. "type": 4,
  62. "rulekey": "client_pc_web_spot_production_bottom_inventory_summary",
  63. "isshow": false,
  64. "url": "",
  65. "remark": "",
  66. "children": [
  67. ]
  68. },
  69. {
  70. "code": "spot_warrant_spot_details",
  71. "title": "现货明细",
  72. "sort": 1,
  73. "type": 4,
  74. "rulekey": "client_pc_web_spot_production_bottom_spot_details_listed",
  75. "isshow": true,
  76. "url": "",
  77. "remark": "",
  78. "children": [
  79. {
  80. "code": "spot_warrant_spot_details_listed",
  81. "title": "挂牌",
  82. "sort": 1,
  83. "type": 2,
  84. "rulekey": "client_pc_web_spot_production_bottom_spot_details_listed",
  85. "isshow": true,
  86. "url": "",
  87. "remark": "",
  88. "children": [
  89. ]
  90. },
  91. {
  92. "code": "spot_warrant_spot_details_pick_up",
  93. "title": "提货",
  94. "sort": 1,
  95. "type": 2,
  96. "rulekey": "client_pc_web_spot_production_bottom_spot_details_pick_up",
  97. "isshow": true,
  98. "url": "",
  99. "remark": "",
  100. "children": [
  101. ]
  102. }
  103. ]
  104. },
  105. {
  106. "code": "spot_warrant_pending_order",
  107. "title": "挂单",
  108. "sort": 1,
  109. "type": 4,
  110. "rulekey": "client_pc_web_spot_production_bottom_spot_pending_order",
  111. "isshow": true,
  112. "url": "",
  113. "remark": "",
  114. "children": [
  115. {
  116. "code": "spot_warrant_pending_order_cancel_order",
  117. "title": "撤单",
  118. "sort": 1,
  119. "type": 2,
  120. "rulekey": "client_pc_web_spot_production_bottom_spot_pending_order_cancel_order",
  121. "isshow": true,
  122. "url": "",
  123. "remark": "",
  124. "children": [
  125. ]
  126. }
  127. ]
  128. },
  129. {
  130. "code": "spot_warrant_deal",
  131. "title": "成交",
  132. "sort": 1,
  133. "type": 4,
  134. "rulekey": "client_pc_web_spot_production_bottom_spot_deal",
  135. "isshow": true,
  136. "url": "",
  137. "remark": "",
  138. "children": [
  139. {
  140. "code": "spot_warrant_deal_detail",
  141. "title": "详情",
  142. "sort": 1,
  143. "type": 2,
  144. "rulekey": "client_pc_web_spot_production_bottom_spot_deal_detail",
  145. "isshow": true,
  146. "url": "",
  147. "remark": "",
  148. "children": [
  149. ]
  150. }
  151. ]
  152. },
  153. {
  154. "code": "spot_warrant_designated_deal",
  155. "title": "指定成交",
  156. "sort": 1,
  157. "type": 4,
  158. "rulekey": "client_pc_web_spot_production_bottom_spot_designated_transaction",
  159. "isshow": false,
  160. "url": "",
  161. "remark": "",
  162. "children": [
  163. {
  164. "code": "spot_warrant_designated_deal_confirm_purchase",
  165. "title": "确定购买",
  166. "sort": 1,
  167. "type": 2,
  168. "rulekey": "client_pc_web_spot_production_bottom_spot_designated_transaction_confirm_purchase",
  169. "isshow": true,
  170. "url": "",
  171. "remark": "",
  172. "children": [
  173. ]
  174. },
  175. {
  176. "code": "spot_warrant_designated_deal_ignore",
  177. "title": "忽略",
  178. "sort": 1,
  179. "type": 2,
  180. "rulekey": "client_pc_web_spot_production_bottom_spot_designated_transaction_ignore",
  181. "isshow": true,
  182. "url": "",
  183. "remark": "",
  184. "children": [
  185. ]
  186. },
  187. {
  188. "code": "spot_warrant_designated_deal_resell",
  189. "title": "撤销出售",
  190. "sort": 1,
  191. "type": 2,
  192. "rulekey": "client_pc_web_spot_production_bottom_spot_designated_transaction_resell",
  193. "isshow": true,
  194. "url": "",
  195. "remark": "",
  196. "children": [
  197. ]
  198. }
  199. ]
  200. },
  201. {
  202. "code": "spot_warrant_in_and_out_warehouse",
  203. "title": "提货",
  204. "sort": 1,
  205. "type": 4,
  206. "rulekey": "client_pc_web_spot_production_bottom_spot_in_out_warehouse",
  207. "isshow": true,
  208. "url": "",
  209. "remark": "",
  210. "children": [
  211. {
  212. "code": "spot_warrant_in_and_out_warehouse_logistics_information",
  213. "title": "物流信息",
  214. "sort": 1,
  215. "type": 2,
  216. "rulekey": "client_pc_web_spot_production_bottom_spot_in_out_warehouse_logistics_information",
  217. "isshow": true,
  218. "url": "",
  219. "remark": "",
  220. "children": [
  221. ]
  222. },
  223. {
  224. "code": "spot_warrant_in_and_out_warehouse_revoke",
  225. "title": "撤销",
  226. "sort": 1,
  227. "type": 2,
  228. "rulekey": "client_pc_web_spot_production_bottom_spot_in_out_warehouse_revoke",
  229. "isshow": true,
  230. "url": "",
  231. "remark": "",
  232. "children": [
  233. ]
  234. }
  235. ]
  236. }
  237. ]
  238. },
  239. {
  240. "code": "pre_sale_warehouse_receipt",
  241. "title": "预售仓单",
  242. "sort": 1,
  243. "type": 4,
  244. "rulekey": "client_pc_web_spot_production_bottom_warehouse_receipt",
  245. "isshow": true,
  246. "url": "",
  247. "remark": "",
  248. "children": [
  249. {
  250. "code": "pre_sale_warehouse_receipt_order_summary",
  251. "title": "订单汇总",
  252. "sort": 1,
  253. "type": 4,
  254. "rulekey": "client_pc_web_warehouse_receipt_bottom_order_summary",
  255. "isshow": true,
  256. "url": "",
  257. "remark": "",
  258. "children": [
  259. {
  260. "code": "pre_sale_warehouse_receipt_order_summary_listed",
  261. "title": "挂牌",
  262. "sort": 1,
  263. "type": 2,
  264. "rulekey": "client_pc_web_warehouse_receipt_bottom_order_summary_listed",
  265. "isshow": true,
  266. "url": "",
  267. "remark": "",
  268. "children": [
  269. ]
  270. }
  271. ]
  272. },
  273. {
  274. "code": "pre_sale_warehouse_receipt_pending_order",
  275. "title": "挂单",
  276. "sort": 1,
  277. "type": 4,
  278. "rulekey": "client_pc_web_warehouse_receipt_bottom_pending_order",
  279. "isshow": true,
  280. "url": "",
  281. "remark": "",
  282. "children": [
  283. {
  284. "code": "pre_sale_warehouse_receipt_pending_order_cancel_order",
  285. "title": "撤单",
  286. "sort": 1,
  287. "type": 2,
  288. "rulekey": "client_pc_web_warehouse_receipt_bottom_pending_order_cancel_order",
  289. "isshow": true,
  290. "url": "",
  291. "remark": "",
  292. "children": [
  293. ]
  294. }
  295. ]
  296. },
  297. {
  298. "code": "pre_sale_warehouse_receipt_deal",
  299. "title": "成交",
  300. "sort": 1,
  301. "type": 4,
  302. "rulekey": "client_pc_web_warehouse_receipt_bottom_deal",
  303. "isshow": true,
  304. "url": "",
  305. "remark": "",
  306. "children": [
  307. {
  308. "code": "pre_sale_warehouse_receipt_deal_detail",
  309. "title": "详情",
  310. "sort": 1,
  311. "type": 2,
  312. "rulekey": "client_pc_web_warehouse_receipt_bottom_deal_detail",
  313. "isshow": true,
  314. "url": "",
  315. "remark": "",
  316. "children": [
  317. ]
  318. }
  319. ]
  320. },
  321. {
  322. "code": "pre_sale_warehouse_receipt_designated_deal",
  323. "title": "指定成交",
  324. "sort": 1,
  325. "type": 4,
  326. "rulekey": "client_pc_web_warehouse_receipt_bottom_designated_deal",
  327. "isshow": false,
  328. "url": "",
  329. "remark": "",
  330. "children": [
  331. {
  332. "code": "pre_sale_warehouse_receipt_designated_deal_resell",
  333. "title": "撤销出售",
  334. "sort": 1,
  335. "type": 4,
  336. "rulekey": "client_pc_web_warehouse_receipt_bottom_designated_deal_resell",
  337. "isshow": true,
  338. "url": "",
  339. "remark": "",
  340. "children": [
  341. ]
  342. },
  343. {
  344. "code": "pre_sale_warehouse_receipt_designated_deal_confirm_purchase",
  345. "title": "确定购买",
  346. "sort": 1,
  347. "type": 2,
  348. "rulekey": "client_pc_web_warehouse_receipt_bottom_designated_deal_confirm_purchase",
  349. "isshow": true,
  350. "url": "",
  351. "remark": "",
  352. "children": [
  353. ]
  354. },
  355. {
  356. "code": "pre_sale_warehouse_receipt_designated_deal_ignore",
  357. "title": "忽略",
  358. "sort": 1,
  359. "type": 2,
  360. "rulekey": "client_pc_web_warehouse_receipt_bottom_designated_deal_ignore",
  361. "isshow": true,
  362. "url": "",
  363. "remark": "",
  364. "children": [
  365. ]
  366. }
  367. ]
  368. }
  369. ]
  370. },
  371. {
  372. "code": "commodity_contract",
  373. "title": "商品合约",
  374. "sort": 1,
  375. "type": 4,
  376. "rulekey": "client_pc_web_spot_production_bottom_commodity_contract",
  377. "isshow": true,
  378. "url": "",
  379. "remark": "",
  380. "children": [
  381. {
  382. "code": "commodity_contract_summary",
  383. "title": "合约汇总",
  384. "sort": 1,
  385. "type": 4,
  386. "rulekey": "client_pc_web_commodity_contract_bottom_order_summary",
  387. "isshow": true,
  388. "url": "",
  389. "remark": "",
  390. "children": [
  391. {
  392. "code": "commodity_contract_summary_transfer",
  393. "title": "转让",
  394. "sort": 1,
  395. "type": 2,
  396. "rulekey": "client_pc_web_commodity_contract_bottom_contract_summary_transfer",
  397. "isshow": true,
  398. "url": "",
  399. "remark": "",
  400. "children": [
  401. ]
  402. },
  403. {
  404. "code": "commodity_contract_summary_settlement",
  405. "title": "交收",
  406. "sort": 1,
  407. "type": 2,
  408. "rulekey": "client_pc_web_commodity_contract_bottom_contract_summary_settlement",
  409. "isshow": true,
  410. "url": "",
  411. "remark": "",
  412. "children": [
  413. ]
  414. }
  415. ]
  416. },
  417. {
  418. "code": "commodity_contract_commission",
  419. "title": "委托",
  420. "sort": 1,
  421. "type": 4,
  422. "rulekey": "client_pc_web_commodity_contract_bottom_commission",
  423. "isshow": true,
  424. "url": "",
  425. "remark": "",
  426. "children": [
  427. {
  428. "code": "commodity_contract_commission_cancel_order",
  429. "title": "撤单",
  430. "sort": 1,
  431. "type": 2,
  432. "rulekey": "client_pc_web_commodity_contract_bottom_contract_summary_cancel_order",
  433. "isshow": true,
  434. "url": "",
  435. "remark": "",
  436. "children": [
  437. ]
  438. }
  439. ]
  440. },
  441. {
  442. "code": "commodity_contract_make_deal",
  443. "title": "成交",
  444. "sort": 1,
  445. "type": 4,
  446. "rulekey": "client_pc_web_commodity_contract_bottom_make_deal",
  447. "isshow": true,
  448. "url": "",
  449. "remark": "",
  450. "children": [
  451. ]
  452. },
  453. {
  454. "code": "commodity_contract_settlement",
  455. "title": "交收",
  456. "sort": 1,
  457. "type": 4,
  458. "rulekey": "client_pc_web_commodity_contract_bottom_settlement",
  459. "isshow": true,
  460. "url": "",
  461. "remark": "",
  462. "children": [
  463. ]
  464. }
  465. ]
  466. },
  467. {
  468. "code": "financing_manager",
  469. "title": "融资管理",
  470. "sort": 1,
  471. "type": 4,
  472. "rulekey": "client_pc_web_spot_production_bottom_financing_management",
  473. "isshow": true,
  474. "url": "",
  475. "remark": "",
  476. "children": [
  477. {
  478. "code": "financing_manager_apply_order",
  479. "title": "申请单",
  480. "sort": 1,
  481. "type": 4,
  482. "rulekey": "client_pc_web_financing_management_bottom_apply_order",
  483. "isshow": true,
  484. "url": "",
  485. "remark": "",
  486. "children": [
  487. {
  488. "code": "financing_manager_apply_order_transfer",
  489. "title": "转让",
  490. "sort": 1,
  491. "type": 2,
  492. "rulekey": "client_pc_web_financing_management_bottom_apply_transfer",
  493. "isshow": true,
  494. "url": "",
  495. "remark": "",
  496. "children": [
  497. ]
  498. }
  499. ]
  500. },
  501. {
  502. "code": "financing_manager_contract",
  503. "title": "合同",
  504. "sort": 1,
  505. "type": 4,
  506. "rulekey": "client_pc_web_financing_management_bottom_contract",
  507. "isshow": true,
  508. "url": "",
  509. "remark": "",
  510. "children": [
  511. {
  512. "code": "financing_manager_contract_settlement",
  513. "title": "交收",
  514. "sort": 1,
  515. "type": 2,
  516. "rulekey": "client_pc_web_financing_management_bottom_contract_settlement",
  517. "isshow": true,
  518. "url": "",
  519. "remark": "",
  520. "children": [
  521. ]
  522. },
  523. {
  524. "code": "financing_manager_contract_cancel",
  525. "title": "撤单",
  526. "sort": 1,
  527. "type": 2,
  528. "rulekey": "client_pc_web_warehouse_receipt_bottom_contract_cancel_order",
  529. "isshow": true,
  530. "url": "",
  531. "remark": "",
  532. "children": [
  533. ]
  534. }
  535. ]
  536. }
  537. ]
  538. },
  539. {
  540. "code": "performance_information",
  541. "title": "履约信息",
  542. "sort": 1,
  543. "type": 4,
  544. "rulekey": "client_pc_web_spot_production_bottom_performance",
  545. "isshow": true,
  546. "url": "",
  547. "remark": "",
  548. "children": [
  549. {
  550. "code": "performance_information_buy_performance",
  551. "title": "买履约",
  552. "sort": 1,
  553. "type": 4,
  554. "rulekey": "client_pc_web_performance_bottom_order_summary_buy_performance",
  555. "isshow": true,
  556. "url": "",
  557. "remark": "",
  558. "children": [
  559. {
  560. "code": "performance_information_buy_performance_pay",
  561. "title": "付款",
  562. "sort": 1,
  563. "type": 2,
  564. "rulekey": "client_pc_web_performance_bottom_order_summary_buy_performance_pay",
  565. "isshow": true,
  566. "url": "",
  567. "remark": "",
  568. "children": [
  569. ]
  570. },
  571. {
  572. "code": "performance_information_buy_performance_extension",
  573. "title": "延期",
  574. "sort": 1,
  575. "type": 2,
  576. "rulekey": "client_pc_web_performance_bottom_order_summary_buy_performance_extension",
  577. "isshow": true,
  578. "url": "",
  579. "remark": "",
  580. "children": [
  581. ]
  582. },
  583. {
  584. "code": "performance_information_buy_performance_breach_contract",
  585. "title": "违约",
  586. "sort": 1,
  587. "type": 2,
  588. "rulekey": "client_pc_web_performance_bottom_order_summary_buy_performance_breach_contract",
  589. "isshow": true,
  590. "url": "",
  591. "remark": "",
  592. "children": [
  593. ]
  594. },
  595. {
  596. "code": "performance_information_buy_performance_settlement",
  597. "title": "交收",
  598. "sort": 1,
  599. "type": 2,
  600. "rulekey": "client_pc_web_performance_bottom_order_summary_buy_performance_settlement",
  601. "isshow": true,
  602. "url": "",
  603. "remark": "",
  604. "children": [
  605. ]
  606. },
  607. {
  608. "code": "performance_information_buy_performance_detail",
  609. "title": "详情",
  610. "sort": 1,
  611. "type": 2,
  612. "rulekey": "client_pc_web_performance_bottom_order_summary_buy_performance_detail",
  613. "isshow": true,
  614. "url": "",
  615. "remark": "",
  616. "children": [
  617. ]
  618. }
  619. ]
  620. },
  621. {
  622. "code": "performance_information_sell_performance",
  623. "title": "卖履约",
  624. "sort": 1,
  625. "type": 4,
  626. "rulekey": "client_pc_web_performance_bottom_order_summary_sell_performance",
  627. "isshow": true,
  628. "url": "",
  629. "remark": "",
  630. "children": [
  631. {
  632. "code": "performance_information_sell_performance_pay",
  633. "title": "付款",
  634. "sort": 1,
  635. "type": 2,
  636. "rulekey": "client_pc_web_performance_bottom_order_summary_sell_performance_pay",
  637. "isshow": true,
  638. "url": "",
  639. "remark": "",
  640. "children": [
  641. ]
  642. },
  643. {
  644. "code": "performance_information_sell_performance_extension",
  645. "title": "延期",
  646. "sort": 1,
  647. "type": 2,
  648. "rulekey": "client_pc_web_performance_bottom_order_summary_sell_performance_extension",
  649. "isshow": true,
  650. "url": "",
  651. "remark": "",
  652. "children": [
  653. ]
  654. },
  655. {
  656. "code": "performance_information_sell_performance_breach_contract",
  657. "title": "违约",
  658. "sort": 1,
  659. "type": 2,
  660. "rulekey": "client_pc_web_performance_bottom_order_summary_sell_performance_breach_contract",
  661. "isshow": true,
  662. "url": "",
  663. "remark": "",
  664. "children": [
  665. ]
  666. },
  667. {
  668. "code": "performance_information_sell_performance_settlement",
  669. "title": "交收",
  670. "sort": 1,
  671. "type": 2,
  672. "rulekey": "client_pc_web_performance_bottom_order_summary_sell_performance_settlement",
  673. "isshow": true,
  674. "url": "",
  675. "remark": "",
  676. "children": [
  677. ]
  678. },
  679. {
  680. "code": "performance_information_sell_performance_detail",
  681. "title": "详情",
  682. "sort": 1,
  683. "type": 2,
  684. "rulekey": "client_pc_web_performance_bottom_order_summary_sell_performance_detail",
  685. "isshow": true,
  686. "url": "",
  687. "remark": "",
  688. "children": [
  689. ]
  690. }
  691. ]
  692. }
  693. ]
  694. },
  695. {
  696. "code": "funding_information",
  697. "title": "资金信息",
  698. "sort": 1,
  699. "type": 4,
  700. "rulekey": "client_pc_web_spot_production_bottom_funding",
  701. "isshow": true,
  702. "url": "",
  703. "remark": "",
  704. "children": [
  705. {
  706. "code": "funding_information_funding_summary",
  707. "title": "资金汇总",
  708. "sort": 1,
  709. "type": 4,
  710. "rulekey": "client_pc_web_funding_bottom_order_funding_summary",
  711. "isshow": true,
  712. "url": "",
  713. "remark": "",
  714. "children": [
  715. {
  716. "code": "funding_information_funding_summary_recharge",
  717. "title": "充值",
  718. "sort": 1,
  719. "type": 2,
  720. "rulekey": "client_pc_web_funding_bottom_order_funding_summary_recharge",
  721. "isshow": false,
  722. "url": "",
  723. "remark": "",
  724. "children": [
  725. ]
  726. },
  727. {
  728. "code": "funding_information_funding_summary_withdraw",
  729. "title": "提现",
  730. "sort": 1,
  731. "type": 2,
  732. "rulekey": "client_pc_web_funding_bottom_order_funding_summary_withdraw",
  733. "isshow": false,
  734. "url": "",
  735. "remark": "",
  736. "children": [
  737. ]
  738. }
  739. ]
  740. },
  741. {
  742. "code": "funding_information_funding_log",
  743. "title": "资金流水",
  744. "sort": 1,
  745. "type": 4,
  746. "rulekey": "client_pc_web_funding_bottom_order_funding_log",
  747. "isshow": true,
  748. "url": "",
  749. "remark": "",
  750. "children": [
  751. ]
  752. }
  753. ]
  754. }
  755. ]
  756. },
  757. {
  758. "code": "market",
  759. "title": "市场",
  760. "sort": 1,
  761. "type": 1,
  762. "rulekey": "client_pc_web_market",
  763. "isshow": true,
  764. "url": "",
  765. "remark": "",
  766. "children": [
  767. {
  768. "code": "spot_trade",
  769. "title": "现货贸易",
  770. "sort": 1,
  771. "type": 1,
  772. "rulekey": "client_pc_web_spot_trading",
  773. "isshow": true,
  774. "url": "",
  775. "remark": "",
  776. "children": [
  777. {
  778. "code": "warehouse_receipt_trade",
  779. "title": "仓单贸易",
  780. "sort": 1,
  781. "type": 1,
  782. "rulekey": "client_pc_web_spot_warehouse_receipt_trade",
  783. "isshow": true,
  784. "url": "",
  785. "remark": "",
  786. "children": [
  787. {
  788. "code": "warehouse_receipt_trade_price",
  789. "title": "一口价挂牌",
  790. "sort": 1,
  791. "type": 1,
  792. "rulekey": "client_pc_web_spot_warehouse_receipt_trade_buy_it_out",
  793. "isshow": true,
  794. "url": "",
  795. "remark": "",
  796. "children": [
  797. {
  798. "code": "spot_trade_warehouse_post_buying",
  799. "title": "挂牌求购",
  800. "sort": 1,
  801. "type": 2,
  802. "rulekey": "client_pc_web_spot_warehouse_receipt_trade_buy_it_out_post_buying",
  803. "isshow": true,
  804. "url": "",
  805. "remark": "",
  806. "children": [
  807. ]
  808. },
  809. {
  810. "code": "spot_trade_warehouse_detail",
  811. "title": "详情",
  812. "sort": 1,
  813. "type": 2,
  814. "rulekey": "client_pc_web_spot_warehouse_receipt_trade_buy_it_out_detail",
  815. "isshow": true,
  816. "url": "",
  817. "remark": "",
  818. "children": [
  819. ]
  820. },
  821. {
  822. "code": "spot_trade_warehouse_buy_hall",
  823. "title": "买大厅",
  824. "sort": 1,
  825. "type": 1,
  826. "rulekey": "client_pc_web_spot_warehouse_price_buy_hall",
  827. "isshow": true,
  828. "url": "",
  829. "remark": "",
  830. "children": [
  831. {
  832. "code": "spot_trade_warehouse_delisting",
  833. "title": "摘牌",
  834. "sort": 1,
  835. "type": 2,
  836. "rulekey": "client_pc_web_spot_warehouse_price_buy_hall_delist",
  837. "isshow": true,
  838. "url": "",
  839. "remark": "",
  840. "children": [
  841. ]
  842. }
  843. ]
  844. },
  845. {
  846. "code": "spot_trade_warehouse_sell_hall",
  847. "title": "卖大厅",
  848. "sort": 1,
  849. "type": 1,
  850. "rulekey": "client_pc_web_spot_warehouse_price_sell_hall",
  851. "isshow": true,
  852. "url": "",
  853. "remark": "",
  854. "children": [
  855. {
  856. "code": "spot_trade_warehouse_delisting",
  857. "title": "摘牌",
  858. "sort": 1,
  859. "type": 2,
  860. "rulekey": "client_pc_web_spot_warehouse_price_sell_hall_delist",
  861. "isshow": true,
  862. "url": "",
  863. "remark": "",
  864. "children": [
  865. ]
  866. },
  867. {
  868. "code": "spot_trade_warehouse_financing_delisting",
  869. "title": "融资摘牌",
  870. "sort": 1,
  871. "type": 2,
  872. "rulekey": "client_pc_web_spot_warehouse_price_buy_hall_financing_delisting",
  873. "isshow": true,
  874. "url": "",
  875. "remark": "",
  876. "children": [
  877. ]
  878. }
  879. ]
  880. }
  881. ]
  882. },
  883. {
  884. "code": "warehouse_receipt_trade_floating_price",
  885. "title": "浮动价挂牌",
  886. "sort": 1,
  887. "type": 1,
  888. "rulekey": "client_pc_web_spot_warehouse_receipt_trade_floating_price",
  889. "isshow": true,
  890. "url": "",
  891. "remark": "",
  892. "children": [
  893. {
  894. "code": "spot_trade_warehouse_post_buying",
  895. "title": "挂牌求购",
  896. "sort": 1,
  897. "type": 2,
  898. "rulekey": "client_pc_web_spot_warehouse_receipt_trade_floating_price_post_buying",
  899. "isshow": true,
  900. "url": "",
  901. "remark": "",
  902. "children": [
  903. ]
  904. },
  905. {
  906. "code": "spot_trade_warehouse_detail",
  907. "title": "详情",
  908. "sort": 1,
  909. "type": 2,
  910. "rulekey": "client_pc_web_spot_warehouse_receipt_trade_floating_price_detail",
  911. "isshow": true,
  912. "url": "",
  913. "remark": "",
  914. "children": [
  915. ]
  916. },
  917. {
  918. "code": "spot_trade_warehouse_buy_hall",
  919. "title": "买大厅",
  920. "sort": 1,
  921. "type": 1,
  922. "rulekey": "client_pc_web_spot_warehouse_floating_price_buy_hall",
  923. "isshow": true,
  924. "url": "",
  925. "remark": "",
  926. "children": [
  927. {
  928. "code": "spot_trade_warehouse_delisting",
  929. "title": "摘牌",
  930. "sort": 1,
  931. "type": 2,
  932. "rulekey": "client_pc_web_spot_warehouse_floating_price_buy_hall_delist",
  933. "isshow": true,
  934. "url": "",
  935. "remark": "",
  936. "children": [
  937. ]
  938. }
  939. ]
  940. },
  941. {
  942. "code": "spot_trade_warehouse_sell_hall",
  943. "title": "卖大厅",
  944. "sort": 1,
  945. "type": 1,
  946. "rulekey": "client_pc_web_spot_warehouse_floating_price_sell_hall",
  947. "isshow": true,
  948. "url": "",
  949. "remark": "",
  950. "children": [
  951. {
  952. "code": "spot_trade_warehouse_delisting",
  953. "title": "摘牌",
  954. "sort": 1,
  955. "type": 2,
  956. "rulekey": "client_pc_web_spot_warehouse_floating_price_sell_hall_delist",
  957. "isshow": true,
  958. "url": "",
  959. "remark": "",
  960. "children": [
  961. ]
  962. },
  963. {
  964. "code": "spot_trade_warehouse_financing_delisting",
  965. "title": "融资摘牌",
  966. "sort": 1,
  967. "type": 2,
  968. "rulekey": "client_pc_web_spot_warehouse_floating_price_buy_hall_financing_delisting",
  969. "isshow": true,
  970. "url": "",
  971. "remark": "",
  972. "children": [
  973. ]
  974. }
  975. ]
  976. }
  977. ]
  978. }
  979. ]
  980. },
  981. {
  982. "code": "warehouse_pre_sale",
  983. "title": "仓单预售",
  984. "sort": 1,
  985. "type": 1,
  986. "rulekey": "client_pc_web_spot_warehouse_capacity",
  987. "isshow": true,
  988. "url": "",
  989. "remark": "",
  990. "children": [
  991. {
  992. "code": "warehouse_pre_sale_price",
  993. "title": "一口价预售",
  994. "sort": 1,
  995. "type": 1,
  996. "rulekey": "client_pc_web_spot_warehouse_capacity_buy_it_out",
  997. "isshow": true,
  998. "url": "",
  999. "remark": "",
  1000. "children": [
  1001. {
  1002. "code": "spot_trade_warehouse_post_buying",
  1003. "title": "挂牌求购",
  1004. "sort": 1,
  1005. "type": 2,
  1006. "rulekey": "client_pc_web_spot_warehouse_capacity_buy_it_out_post_buying",
  1007. "isshow": true,
  1008. "url": "",
  1009. "remark": "",
  1010. "children": [
  1011. ]
  1012. },
  1013. {
  1014. "code": "spot_trade_warehouse_detail",
  1015. "title": "详情",
  1016. "sort": 1,
  1017. "type": 2,
  1018. "rulekey": "client_pc_web_spot_warehouse_capacity_buy_it_out_detail",
  1019. "isshow": true,
  1020. "url": "",
  1021. "remark": "",
  1022. "children": [
  1023. ]
  1024. },
  1025. {
  1026. "code": "spot_trade_warehouse_buy_hall",
  1027. "title": "买大厅",
  1028. "sort": 1,
  1029. "type": 1,
  1030. "rulekey": "client_pc_web_spot_warehouse_capacity_buy_it_out_buy_hall",
  1031. "isshow": true,
  1032. "url": "",
  1033. "remark": "",
  1034. "children": [
  1035. {
  1036. "code": "spot_trade_warehouse_delisting",
  1037. "title": "摘牌",
  1038. "sort": 1,
  1039. "type": 2,
  1040. "rulekey": "client_pc_web_spot_warehouse_capacity_buy_it_out_buy_hall_delist",
  1041. "isshow": true,
  1042. "url": "",
  1043. "remark": "",
  1044. "children": [
  1045. ]
  1046. }
  1047. ]
  1048. },
  1049. {
  1050. "code": "spot_trade_warehouse_sell_hall",
  1051. "title": "卖大厅",
  1052. "sort": 1,
  1053. "type": 1,
  1054. "rulekey": "client_pc_web_spot_warehouse_capacity_buy_it_out_sell_hall",
  1055. "isshow": true,
  1056. "url": "",
  1057. "remark": "",
  1058. "children": [
  1059. {
  1060. "code": "spot_trade_warehouse_delisting",
  1061. "title": "摘牌",
  1062. "sort": 1,
  1063. "type": 2,
  1064. "rulekey": "client_pc_web_spot_warehouse_capacity_buy_it_out_sell_hall_delist",
  1065. "isshow": true,
  1066. "url": "",
  1067. "remark": "",
  1068. "children": [
  1069. ]
  1070. },
  1071. {
  1072. "code": "spot_trade_warehouse_financing_delisting",
  1073. "title": "融资摘牌",
  1074. "sort": 1,
  1075. "type": 2,
  1076. "rulekey": "client_pc_web_spot_warehouse_capacity_buy_it_out_buy_hall_financing_delisting",
  1077. "isshow": true,
  1078. "url": "",
  1079. "remark": "",
  1080. "children": [
  1081. ]
  1082. }
  1083. ]
  1084. }
  1085. ]
  1086. },
  1087. {
  1088. "code": "warehouse_pre_sale_floating_price",
  1089. "title": "浮动价预售",
  1090. "sort": 1,
  1091. "type": 1,
  1092. "rulekey": "client_pc_web_spot_warehouse_capacity_floating_price",
  1093. "isshow": true,
  1094. "url": "",
  1095. "remark": "",
  1096. "children": [
  1097. {
  1098. "code": "spot_trade_warehouse_post_buying",
  1099. "title": "挂牌求购",
  1100. "sort": 1,
  1101. "type": 2,
  1102. "rulekey": "client_pc_web_spot_warehouse_capacity_floating_price_post_buying",
  1103. "isshow": true,
  1104. "url": "",
  1105. "remark": "",
  1106. "children": [
  1107. ]
  1108. },
  1109. {
  1110. "code": "spot_trade_warehouse_detail",
  1111. "title": "详情",
  1112. "sort": 1,
  1113. "type": 2,
  1114. "rulekey": "client_pc_web_spot_warehouse_capacity_floating_price_detail",
  1115. "isshow": true,
  1116. "url": "",
  1117. "remark": "",
  1118. "children": [
  1119. ]
  1120. },
  1121. {
  1122. "code": "spot_trade_warehouse_buy_hall",
  1123. "title": "买大厅",
  1124. "sort": 1,
  1125. "type": 1,
  1126. "rulekey": "client_pc_web_spot_warehouse_capacity_floating_price_buy_hall",
  1127. "isshow": true,
  1128. "url": "",
  1129. "remark": "",
  1130. "children": [
  1131. {
  1132. "code": "spot_trade_warehouse_delisting",
  1133. "title": "摘牌",
  1134. "sort": 1,
  1135. "type": 2,
  1136. "rulekey": "client_pc_web_spot_warehouse_capacity_floating_price_buy_hall_delist",
  1137. "isshow": true,
  1138. "url": "",
  1139. "remark": "",
  1140. "children": [
  1141. ]
  1142. }
  1143. ]
  1144. },
  1145. {
  1146. "code": "spot_trade_warehouse_sell_hall",
  1147. "title": "卖大厅",
  1148. "sort": 1,
  1149. "type": 1,
  1150. "rulekey": "client_pc_web_spot_warehouse_capacity_floating_price_sell_hall",
  1151. "isshow": true,
  1152. "url": "",
  1153. "remark": "",
  1154. "children": [
  1155. {
  1156. "code": "spot_trade_warehouse_delisting",
  1157. "title": "摘牌",
  1158. "sort": 1,
  1159. "type": 2,
  1160. "rulekey": "client_pc_web_spot_warehouse_capacity_floating_price_sell_hall_delist",
  1161. "isshow": true,
  1162. "url": "",
  1163. "remark": "",
  1164. "children": [
  1165. ]
  1166. },
  1167. {
  1168. "code": "spot_trade_warehouse_financing_delisting",
  1169. "title": "融资摘牌",
  1170. "sort": 1,
  1171. "type": 2,
  1172. "rulekey": "client_pc_web_spot_warehouse_capacity_floating_price_buy_hall_financing_delisting",
  1173. "isshow": true,
  1174. "url": "",
  1175. "remark": "",
  1176. "children": [
  1177. ]
  1178. }
  1179. ]
  1180. }
  1181. ]
  1182. }
  1183. ]
  1184. }
  1185. ]
  1186. },
  1187. {
  1188. "code": "futures",
  1189. "title": "期货",
  1190. "sort": 1,
  1191. "type": 1,
  1192. "rulekey": "",
  1193. "isshow": false,
  1194. "url": "",
  1195. "remark": "",
  1196. "children": [
  1197. {
  1198. "code": "dominant_contract",
  1199. "title": "主力",
  1200. "sort": 1,
  1201. "type": 1,
  1202. "rulekey": "",
  1203. "isshow": false,
  1204. "url": "",
  1205. "remark": "",
  1206. "children": []
  1207. },
  1208. {
  1209. "code": "night_plate",
  1210. "title": "夜盘",
  1211. "sort": 2,
  1212. "type": 1,
  1213. "rulekey": "",
  1214. "isshow": false,
  1215. "url": "",
  1216. "remark": "",
  1217. "children": []
  1218. },
  1219. {
  1220. "code": "main_contract",
  1221. "title": "主连",
  1222. "sort": 3,
  1223. "type": 1,
  1224. "rulekey": "",
  1225. "isshow": false,
  1226. "url": "",
  1227. "remark": "",
  1228. "children": []
  1229. },
  1230. {
  1231. "code": "position",
  1232. "title": "持仓",
  1233. "sort": 21,
  1234. "type": 1,
  1235. "rulekey": "",
  1236. "isshow": false,
  1237. "url": "",
  1238. "remark": "",
  1239. "children": [
  1240. {
  1241. "code": "open",
  1242. "title": "开仓",
  1243. "sort": 1,
  1244. "type": 2,
  1245. "rulekey": "",
  1246. "isshow": false,
  1247. "url": "",
  1248. "remark": "",
  1249. "children": []
  1250. },
  1251. {
  1252. "code": "close",
  1253. "title": "平仓",
  1254. "sort": 2,
  1255. "type": 2,
  1256. "rulekey": "",
  1257. "isshow": false,
  1258. "url": "",
  1259. "remark": "",
  1260. "children": []
  1261. }
  1262. ]
  1263. },
  1264. {
  1265. "code": "orderdetail",
  1266. "title": "委托",
  1267. "sort": 22,
  1268. "type": 1,
  1269. "rulekey": "",
  1270. "isshow": false,
  1271. "url": "",
  1272. "remark": "",
  1273. "children": []
  1274. },
  1275. {
  1276. "code": "tradedetail",
  1277. "title": "成交",
  1278. "sort": 23,
  1279. "type": 1,
  1280. "rulekey": "",
  1281. "isshow": false,
  1282. "url": "",
  1283. "remark": "",
  1284. "children": []
  1285. },
  1286. {
  1287. "code": "closedetail",
  1288. "title": "平仓",
  1289. "sort": 24,
  1290. "type": 1,
  1291. "rulekey": "",
  1292. "isshow": false,
  1293. "url": "",
  1294. "remark": "",
  1295. "children": []
  1296. }
  1297. ]
  1298. }
  1299. ]
  1300. },
  1301. {
  1302. "code": "info",
  1303. "title": "信息",
  1304. "sort": 2,
  1305. "type": 1,
  1306. "rulekey": "",
  1307. "isshow": true,
  1308. "children": [
  1309. {
  1310. "code": "custom_info",
  1311. "title": "客户资料",
  1312. "sort": 1,
  1313. "type": 1,
  1314. "rulekey": "client_customer",
  1315. "isshow": true,
  1316. "url": "",
  1317. "remark": "",
  1318. "children": [
  1319. {
  1320. "code": "custom_info_unsubmit",
  1321. "title": "未提交",
  1322. "sort": 1,
  1323. "type": 1,
  1324. "rulekey": "client_customer_unsubmit",
  1325. "isshow": true,
  1326. "url": "",
  1327. "remark": "",
  1328. "children": [
  1329. {
  1330. "code": "custom_info_btn_delete",
  1331. "title": "删除",
  1332. "sort": 1,
  1333. "type": 2,
  1334. "rulekey": "client_customer_delete",
  1335. "isshow": true,
  1336. "url": "",
  1337. "remark": "",
  1338. "children": []
  1339. },
  1340. {
  1341. "code": "custom_info_btn_modify",
  1342. "title": "修改",
  1343. "sort": 2,
  1344. "type": 2,
  1345. "rulekey": "client_customer_update",
  1346. "isshow": true,
  1347. "url": "",
  1348. "remark": "",
  1349. "children": []
  1350. }
  1351. ]
  1352. },
  1353. {
  1354. "code": "custom_info_checkpending",
  1355. "title": "待审核",
  1356. "sort": 1,
  1357. "type": 1,
  1358. "rulekey": "client_customer_unaduit",
  1359. "isshow": true,
  1360. "url": "",
  1361. "remark": "",
  1362. "children": [
  1363. {
  1364. "code": "custom_info_btn_cancel",
  1365. "title": "撤销",
  1366. "sort": 1,
  1367. "type": 2,
  1368. "rulekey": "client_customer_cancel",
  1369. "isshow": true,
  1370. "url": "",
  1371. "remark": "",
  1372. "children": []
  1373. },
  1374. {
  1375. "code": "custom_info_btn_check",
  1376. "title": "审核",
  1377. "sort": 2,
  1378. "type": 2,
  1379. "rulekey": "client_customer_check",
  1380. "isshow": true,
  1381. "url": "",
  1382. "remark": "",
  1383. "children": []
  1384. }
  1385. ]
  1386. },
  1387. {
  1388. "code": "custom_info_normal",
  1389. "title": "正常",
  1390. "sort": 1,
  1391. "type": 1,
  1392. "rulekey": "client_customer_normal",
  1393. "isshow": true,
  1394. "url": "",
  1395. "remark": "",
  1396. "children": [
  1397. {
  1398. "code": "custom_info_btn_add",
  1399. "title": "新增",
  1400. "sort": 1,
  1401. "type": 2,
  1402. "rulekey": "client_customer_add",
  1403. "isshow": true,
  1404. "url": "",
  1405. "remark": "",
  1406. "children": []
  1407. },
  1408. {
  1409. "code": "custom_info_btn_disable",
  1410. "title": "停用",
  1411. "sort": 3,
  1412. "type": 2,
  1413. "rulekey": "client_customer_disable",
  1414. "isshow": true,
  1415. "url": "",
  1416. "remark": "",
  1417. "children": []
  1418. }
  1419. ]
  1420. },
  1421. {
  1422. "code": "custom_info_disabled",
  1423. "title": "停用",
  1424. "sort": 2,
  1425. "type": 1,
  1426. "rulekey": "client_customer_stop",
  1427. "isshow": true,
  1428. "url": "",
  1429. "remark": "",
  1430. "children": [
  1431. {
  1432. "code": "custom_info_btn_recover",
  1433. "title": "恢复",
  1434. "sort": 1,
  1435. "type": 2,
  1436. "rulekey": "client_customer_restore",
  1437. "isshow": true,
  1438. "url": "",
  1439. "remark": "",
  1440. "children": []
  1441. }
  1442. ]
  1443. }
  1444. ]
  1445. },
  1446. {
  1447. "code": "goods_info",
  1448. "title": "商品信息",
  1449. "sort": 2,
  1450. "type": 1,
  1451. "rulekey": "client_deliverygoods",
  1452. "isshow": true,
  1453. "url": "",
  1454. "remark": "",
  1455. "children": [
  1456. {
  1457. "code": "goods_info_spot",
  1458. "title": "现货品种",
  1459. "sort": 1,
  1460. "type": 1,
  1461. "rulekey": "client_deliverygoods_spot",
  1462. "isshow": true,
  1463. "url": "",
  1464. "remark": "",
  1465. "children": [
  1466. {
  1467. "code": "goods_info_spot_normal",
  1468. "title": "正常",
  1469. "sort": 1,
  1470. "type": 1,
  1471. "rulekey": "",
  1472. "isshow": true,
  1473. "url": "",
  1474. "remark": "",
  1475. "children": [
  1476. {
  1477. "code": "goods_info_spot_normal_add",
  1478. "title": "新增",
  1479. "sort": 1,
  1480. "type": 2,
  1481. "rulekey": "client_deliverygoods_add",
  1482. "isshow": true,
  1483. "url": "",
  1484. "remark": "",
  1485. "children": []
  1486. },
  1487. {
  1488. "code": "goods_info_spot_normal_modify",
  1489. "title": "修改",
  1490. "sort": 2,
  1491. "type": 2,
  1492. "rulekey": "client_deliverygoods_spot_modify",
  1493. "isshow": true,
  1494. "url": "",
  1495. "remark": "",
  1496. "children": []
  1497. },
  1498. {
  1499. "code": "goods_info_spot_normal_disable",
  1500. "title": "停用",
  1501. "sort": 3,
  1502. "type": 2,
  1503. "rulekey": "client_deliverygoods_spot_disable",
  1504. "isshow": true,
  1505. "url": "",
  1506. "remark": "",
  1507. "children": []
  1508. }
  1509. ]
  1510. },
  1511. {
  1512. "code": "goods_info_spot_disable",
  1513. "title": "停用",
  1514. "sort": 2,
  1515. "type": 1,
  1516. "rulekey": "",
  1517. "isshow": true,
  1518. "url": "",
  1519. "remark": "",
  1520. "children": [
  1521. ]
  1522. }
  1523. ]
  1524. },
  1525. {
  1526. "code": "goods_info_hedge",
  1527. "title": "套保品种",
  1528. "sort": 2,
  1529. "type": 1,
  1530. "rulekey": "client_deliverygoods_hedge",
  1531. "isshow": true,
  1532. "url": "",
  1533. "remark": "",
  1534. "children": [
  1535. {
  1536. "code": "goods_info_hedge_normal",
  1537. "title": "正常",
  1538. "sort": 1,
  1539. "type": 1,
  1540. "rulekey": "",
  1541. "isshow": true,
  1542. "url": "",
  1543. "remark": "",
  1544. "children": [
  1545. {
  1546. "code": "goods_info_hedge_normal_modify",
  1547. "title": "修改",
  1548. "sort": 2,
  1549. "type": 2,
  1550. "rulekey": "client_deliverygoods_hedge_modify",
  1551. "isshow": true,
  1552. "url": "",
  1553. "remark": "",
  1554. "children": []
  1555. }
  1556. ]
  1557. },
  1558. {
  1559. "code": "goods_info_hedge_disable",
  1560. "title": "停用",
  1561. "sort": 2,
  1562. "type": 1,
  1563. "rulekey": "client_deliverygoods_hedge_disable",
  1564. "isshow": true,
  1565. "url": "",
  1566. "remark": "",
  1567. "children": [
  1568. ]
  1569. }
  1570. ]
  1571. }
  1572. ]
  1573. },
  1574. {
  1575. "code": "spot_contract",
  1576. "title": "现货合同",
  1577. "sort": 3,
  1578. "type": 1,
  1579. "rulekey": "client_spotcontract",
  1580. "isshow": true,
  1581. "url": "",
  1582. "remark": "",
  1583. "children": [
  1584. {
  1585. "code": "spot_contract_unsubmitted",
  1586. "title": "未提交",
  1587. "sort": 1,
  1588. "type": 1,
  1589. "rulekey": "client_spotcontract_unsubmit",
  1590. "isshow": true,
  1591. "url": "",
  1592. "remark": "",
  1593. "children": [
  1594. {
  1595. "code": "spot_contract_btn_add",
  1596. "title": "新增",
  1597. "sort": 1,
  1598. "type": 2,
  1599. "rulekey": "client_spotcontract_add",
  1600. "isshow": true,
  1601. "url": "",
  1602. "remark": "",
  1603. "children": [
  1604. {
  1605. "code": "spot_contract_btn_modify",
  1606. "title": "重新提交",
  1607. "sort": 2,
  1608. "type": 2,
  1609. "rulekey": "client_spotcontract_recommit",
  1610. "isshow": true,
  1611. "url": "",
  1612. "remark": "",
  1613. "children": []
  1614. },
  1615. {
  1616. "code": "spot_contract_btn_delete",
  1617. "title": "删除",
  1618. "sort": 3,
  1619. "type": 2,
  1620. "rulekey": "",
  1621. "isshow": true,
  1622. "url": "",
  1623. "remark": "",
  1624. "children": []
  1625. }
  1626. ]
  1627. }
  1628. ]
  1629. },
  1630. {
  1631. "code": "spot_contract_checkpending",
  1632. "title": "待审核",
  1633. "sort": 2,
  1634. "type": 1,
  1635. "rulekey": "client_spotcontract_unaduit",
  1636. "isshow": true,
  1637. "url": "",
  1638. "remark": "",
  1639. "children": [
  1640. {
  1641. "code": "none_btn",
  1642. "title": "按钮",
  1643. "sort": 1,
  1644. "type": 2,
  1645. "rulekey": "",
  1646. "isshow": true,
  1647. "url": "",
  1648. "remark": "空按钮(只为了保证树状结构)",
  1649. "children": [
  1650. {
  1651. "code": "spot_contract_btn_check",
  1652. "title": "审核",
  1653. "sort": 1,
  1654. "type": 2,
  1655. "rulekey": "client_spotcontract_check",
  1656. "isshow": true,
  1657. "url": "",
  1658. "remark": "",
  1659. "children": []
  1660. },
  1661. {
  1662. "code": "spot_contract_btn_cancel",
  1663. "title": "撤销",
  1664. "sort": 2,
  1665. "type": 2,
  1666. "rulekey": "client_spotcontract_cancel",
  1667. "isshow": true,
  1668. "url": "",
  1669. "remark": "",
  1670. "children": []
  1671. }
  1672. ]
  1673. }
  1674. ]
  1675. },
  1676. {
  1677. "code": "spot_contract_performance",
  1678. "title": "履约中",
  1679. "sort": 3,
  1680. "type": 1,
  1681. "rulekey": "client_spotcontract_agreement",
  1682. "isshow": true,
  1683. "url": "",
  1684. "remark": "",
  1685. "children": [
  1686. {
  1687. "code": "none_btn",
  1688. "title": "按钮",
  1689. "sort": 1,
  1690. "type": 2,
  1691. "rulekey": "",
  1692. "isshow": true,
  1693. "url": "",
  1694. "remark": "空按钮(只为了保证树状结构)",
  1695. "children": [
  1696. {
  1697. "code": "spot_contract_btn_finish",
  1698. "title": "正常完结",
  1699. "sort": 1,
  1700. "type": 2,
  1701. "rulekey": "client_spotcontract_finish",
  1702. "isshow": true,
  1703. "url": "",
  1704. "remark": "",
  1705. "children": []
  1706. }
  1707. ]
  1708. }
  1709. ]
  1710. },
  1711. {
  1712. "code": "spot_contract_finished",
  1713. "title": "已完成",
  1714. "sort": 4,
  1715. "type": 1,
  1716. "rulekey": "client_spotcontract_completed",
  1717. "isshow": true,
  1718. "url": "",
  1719. "remark": "",
  1720. "children": []
  1721. }
  1722. ]
  1723. },
  1724. {
  1725. "code": "warehouse_info",
  1726. "title": "仓库信息",
  1727. "sort": 4,
  1728. "type": 1,
  1729. "rulekey": "client_warehouse",
  1730. "isshow": true,
  1731. "url": "",
  1732. "remark": "",
  1733. "children": [
  1734. {
  1735. "code": "warehouse_info_normal",
  1736. "title": "正常",
  1737. "sort": 1,
  1738. "type": 1,
  1739. "rulekey": "client_warehouse_normal",
  1740. "isshow": true,
  1741. "url": "",
  1742. "remark": "",
  1743. "children": [
  1744. {
  1745. "code": "warehouse_info_btn_add",
  1746. "title": "新增",
  1747. "sort": 1,
  1748. "type": 2,
  1749. "rulekey": "client_warehouse_add",
  1750. "isshow": true,
  1751. "url": "",
  1752. "remark": "",
  1753. "children": []
  1754. },
  1755. {
  1756. "code": "warehouse_info_btn_modify",
  1757. "title": "修改",
  1758. "sort": 2,
  1759. "type": 2,
  1760. "rulekey": "client_warehouse_update",
  1761. "isshow": true,
  1762. "url": "",
  1763. "remark": "",
  1764. "children": []
  1765. },
  1766. {
  1767. "code": "warehouse_info_btn_disable",
  1768. "title": "停用",
  1769. "sort": 3,
  1770. "type": 2,
  1771. "rulekey": "client_warehouse_stop",
  1772. "isshow": true,
  1773. "url": "",
  1774. "remark": "",
  1775. "children": []
  1776. }
  1777. ]
  1778. },
  1779. {
  1780. "code": "warehouse_info_disabled",
  1781. "title": "停用",
  1782. "sort": 2,
  1783. "type": 1,
  1784. "rulekey": "client_warehouse_stop",
  1785. "isshow": true,
  1786. "url": "",
  1787. "remark": "",
  1788. "children": [
  1789. {
  1790. "code": "warehouse_info_btn_recover",
  1791. "title": "恢复",
  1792. "sort": 1,
  1793. "type": 2,
  1794. "rulekey": "client_warehouse_restore",
  1795. "isshow": true,
  1796. "url": "",
  1797. "remark": "",
  1798. "children": []
  1799. }
  1800. ]
  1801. }
  1802. ]
  1803. },
  1804. {
  1805. "code": "account_info",
  1806. "title": "账户管理",
  1807. "sort": 4,
  1808. "type": 1,
  1809. "rulekey": "client_accountmanage",
  1810. "isshow": true,
  1811. "url": "",
  1812. "remark": "",
  1813. "children": [
  1814. {
  1815. "code": "account_info_business",
  1816. "title": "业务账户",
  1817. "sort": 1,
  1818. "type": 1,
  1819. "rulekey": "client_accountmanage_business",
  1820. "isshow": true,
  1821. "url": "",
  1822. "remark": "",
  1823. "children": [
  1824. {
  1825. "code": "account_info_business_btn_add",
  1826. "title": "新增",
  1827. "sort": 1,
  1828. "type": 2,
  1829. "rulekey": "client_accountmanage_business_add",
  1830. "isshow": true,
  1831. "remartk": "新增账户 - 业务员/跟单员",
  1832. "url": "",
  1833. "remark": "",
  1834. "children": [
  1835. {
  1836. "code": "account_info_business_btn_modify",
  1837. "title": "修改",
  1838. "sort": 2,
  1839. "type": 2,
  1840. "rulekey": "client_accountmanage_business_update",
  1841. "isshow": true,
  1842. "url": "",
  1843. "remark": "",
  1844. "children": []
  1845. },
  1846. {
  1847. "code": "account_info_business_btn_reset",
  1848. "title": "重置密码",
  1849. "sort": 3,
  1850. "type": 2,
  1851. "rulekey": "client_accountmanage_business_resetpwd",
  1852. "isshow": true,
  1853. "url": "",
  1854. "remark": "",
  1855. "children": []
  1856. },
  1857. {
  1858. "code": "account_info_business_btn_locked",
  1859. "title": "锁定",
  1860. "sort": 2,
  1861. "type": 2,
  1862. "rulekey": "client_accountmanage_business_lock",
  1863. "isshow": true,
  1864. "url": "",
  1865. "remark": "",
  1866. "children": []
  1867. },
  1868. {
  1869. "code": "account_info_business_btn_unlocked",
  1870. "title": "解锁",
  1871. "sort": 2,
  1872. "type": 2,
  1873. "rulekey": "client_accountmanage_business_unlock",
  1874. "isshow": true,
  1875. "url": "",
  1876. "remark": "",
  1877. "children": []
  1878. },
  1879. {
  1880. "code": "account_info_business_btn_cancel",
  1881. "title": "注销",
  1882. "sort": 2,
  1883. "type": 2,
  1884. "rulekey": "client_accountmanage_business_close",
  1885. "isshow": true,
  1886. "url": "",
  1887. "remark": "",
  1888. "children": []
  1889. }
  1890. ]
  1891. }
  1892. ]
  1893. },
  1894. {
  1895. "code": "account_info_trade",
  1896. "title": "交易账户",
  1897. "sort": 2,
  1898. "type": 1,
  1899. "rulekey": "client_accountmanage_trade",
  1900. "isshow": true,
  1901. "url": "",
  1902. "remark": "",
  1903. "children": [
  1904. {
  1905. "code": "account_info_trade_btn_add",
  1906. "title": "新增",
  1907. "sort": 1,
  1908. "type": 2,
  1909. "rulekey": "",
  1910. "isshow": true,
  1911. "remartk": "新增账户 - 新增交易用户",
  1912. "url": "",
  1913. "remark": "",
  1914. "children": [
  1915. {
  1916. "code": "account_info_trade_child_btn_add",
  1917. "title": "新增",
  1918. "sort": 1,
  1919. "type": 2,
  1920. "rulekey": "client_accountmanage_trade_add",
  1921. "isshow": true,
  1922. "remartk": "新增账户 - 新增交易员",
  1923. "url": "",
  1924. "remark": "",
  1925. "children": [
  1926. {
  1927. "code": "account_info_trade_btn_child_modify",
  1928. "title": "修改",
  1929. "sort": 1,
  1930. "type": 2,
  1931. "rulekey": "client_accountmanage_trade_update",
  1932. "isshow": true,
  1933. "url": "",
  1934. "remark": "",
  1935. "children": []
  1936. },
  1937. {
  1938. "code": "account_info_trade_btn_child_reset",
  1939. "title": "重置密码",
  1940. "sort": 2,
  1941. "type": 2,
  1942. "rulekey": "client_accountmanage_trade_resetpwd",
  1943. "isshow": true,
  1944. "url": "",
  1945. "remark": "",
  1946. "children": []
  1947. },
  1948. {
  1949. "code": "account_info_trade_btn_child_locked",
  1950. "title": "锁定",
  1951. "sort": 2,
  1952. "type": 2,
  1953. "rulekey": "client_accountmanage_trade_lock",
  1954. "isshow": true,
  1955. "url": "",
  1956. "remark": "",
  1957. "children": []
  1958. },
  1959. {
  1960. "code": "account_info_trade_btn_child_unlocked",
  1961. "title": "解锁",
  1962. "sort": 2,
  1963. "type": 2,
  1964. "rulekey": "client_accountmanage_trade_unlock",
  1965. "isshow": true,
  1966. "url": "",
  1967. "remark": "",
  1968. "children": []
  1969. },
  1970. {
  1971. "code": "account_info_trade_btn_child_logout",
  1972. "title": "注销",
  1973. "sort": 2,
  1974. "type": 2,
  1975. "rulekey": "client_accountmanage_trade_close",
  1976. "isshow": true,
  1977. "url": "",
  1978. "remark": "",
  1979. "children": []
  1980. }
  1981. ]
  1982. },
  1983. {
  1984. "code": "account_info_trade_btn_modify",
  1985. "title": "修改",
  1986. "sort": 2,
  1987. "type": 2,
  1988. "rulekey": "",
  1989. "isshow": true,
  1990. "remartk": "修改账户 - 修改交易用户",
  1991. "url": "",
  1992. "remark": "",
  1993. "children": []
  1994. }
  1995. ]
  1996. }
  1997. ]
  1998. },
  1999. {
  2000. "code": "account_info_manager",
  2001. "title": "管理账户",
  2002. "sort": 2,
  2003. "type": 1,
  2004. "rulekey": "client_accountmanage_manage",
  2005. "isshow": true,
  2006. "url": "",
  2007. "remark": "",
  2008. "children": [
  2009. {
  2010. "code": "account_info_manager_btn_add",
  2011. "title": "新增权限模板",
  2012. "sort": 1,
  2013. "type": 2,
  2014. "rulekey": "",
  2015. "isshow": true,
  2016. "remartk": "管理账户 - 新增权限模板",
  2017. "url": "",
  2018. "remark": "",
  2019. "children": [
  2020. {
  2021. "code": "account_info_manager_btn_child_add",
  2022. "title": "新增",
  2023. "sort": 1,
  2024. "type": 2,
  2025. "rulekey": "",
  2026. "isshow": true,
  2027. "remartk": "管理账户 - 新增管理员",
  2028. "url": "",
  2029. "remark": "",
  2030. "children": [
  2031. {
  2032. "code": "account_info_manager_btn_modify",
  2033. "title": "修改",
  2034. "sort": 2,
  2035. "type": 2,
  2036. "rulekey": "client_accountmanage_update",
  2037. "isshow": true,
  2038. "url": "",
  2039. "remark": "",
  2040. "children": []
  2041. },
  2042. {
  2043. "code": "account_info_manager_btn_reset",
  2044. "title": "重置密码",
  2045. "sort": 2,
  2046. "type": 2,
  2047. "rulekey": "client_accountmanage_resetpwd",
  2048. "isshow": true,
  2049. "url": "",
  2050. "remark": "",
  2051. "children": []
  2052. },
  2053. {
  2054. "code": "account_info_manager_btn_locked",
  2055. "title": "锁定",
  2056. "sort": 2,
  2057. "type": 2,
  2058. "rulekey": "client_accountmanage_lock",
  2059. "isshow": true,
  2060. "url": "",
  2061. "remark": "",
  2062. "children": []
  2063. },
  2064. {
  2065. "code": "account_info_manager_btn_unlocked",
  2066. "title": "解锁",
  2067. "sort": 2,
  2068. "type": 2,
  2069. "rulekey": "client_accountmanage_unlock",
  2070. "isshow": true,
  2071. "url": "",
  2072. "remark": "",
  2073. "children": []
  2074. },
  2075. {
  2076. "code": "account_info_manager_btn_logout",
  2077. "title": "注销",
  2078. "sort": 2,
  2079. "type": 2,
  2080. "rulekey": "client_accountmanage_close",
  2081. "isshow": true,
  2082. "url": "",
  2083. "remark": "",
  2084. "children": []
  2085. }
  2086. ]
  2087. }
  2088. ]
  2089. },
  2090. {
  2091. "code": "account_info_manager_btn_setting",
  2092. "title": "权限设置",
  2093. "sort": 1,
  2094. "type": 2,
  2095. "rulekey": "",
  2096. "isshow": true,
  2097. "url": "",
  2098. "remark": "",
  2099. "children": []
  2100. }
  2101. ]
  2102. },
  2103. {
  2104. "code": "account_info_futures",
  2105. "title": "期货账户",
  2106. "sort": 2,
  2107. "type": 1,
  2108. "rulekey": "client_accountmanage_ta",
  2109. "isshow": true,
  2110. "url": "",
  2111. "remark": "",
  2112. "children": [
  2113. {
  2114. "code": "account_info_futures_btn_add",
  2115. "title": "新增",
  2116. "sort": 1,
  2117. "type": 2,
  2118. "rulekey": "client_accountmanage_ta_mainadd",
  2119. "isshow": true,
  2120. "remartk": "期货账户 - 新增期货账户",
  2121. "url": "",
  2122. "remark": "",
  2123. "children": [
  2124. {
  2125. "code": "account_info_futures_btn_child_add",
  2126. "title": "新增",
  2127. "sort": 1,
  2128. "type": 2,
  2129. "rulekey": "client_accountmanage_ta_subadd",
  2130. "isshow": true,
  2131. "remartk": "期货账户 - 新增期货子账户",
  2132. "url": "",
  2133. "remark": "",
  2134. "children": [
  2135. {
  2136. "code": "account_info_futures_btn_child_credit",
  2137. "title": "授信",
  2138. "sort": 1,
  2139. "type": 2,
  2140. "rulekey": "client_accountmanage_ta_subcredit",
  2141. "isshow": true,
  2142. "url": "",
  2143. "remark": "",
  2144. "children": []
  2145. },
  2146. {
  2147. "code": "account_info_futures_btn_child_modify",
  2148. "title": "修改",
  2149. "sort": 2,
  2150. "type": 2,
  2151. "rulekey": "client_accountmanage_ta_subupdate",
  2152. "isshow": true,
  2153. "url": "",
  2154. "remark": "",
  2155. "children": []
  2156. },
  2157. {
  2158. "code": "account_info_futures_btn_child_cancel",
  2159. "title": "注销",
  2160. "sort": 2,
  2161. "type": 2,
  2162. "rulekey": "client_accountmanage_ta_subclose",
  2163. "isshow": true,
  2164. "url": "",
  2165. "remark": "",
  2166. "children": []
  2167. }
  2168. ]
  2169. },
  2170. {
  2171. "code": "account_info_futures_btn_modify",
  2172. "title": "修改",
  2173. "sort": 2,
  2174. "type": 2,
  2175. "rulekey": "client_accountmanage_ta_mainupdate",
  2176. "isshow": true,
  2177. "remartk": "期货账户 - 修改期货子账户",
  2178. "url": "",
  2179. "remark": "",
  2180. "children": []
  2181. }
  2182. ]
  2183. }
  2184. ]
  2185. }
  2186. ]
  2187. }
  2188. ]
  2189. },
  2190. {
  2191. "code": "business",
  2192. "title": "业务",
  2193. "sort": 3,
  2194. "type": 1,
  2195. "rulekey": "",
  2196. "isshow": true,
  2197. "children": [
  2198. {
  2199. "code": "purchase",
  2200. "title": "采购",
  2201. "sort": 1,
  2202. "type": 1,
  2203. "rulekey": "client_po",
  2204. "isshow": true,
  2205. "url": "",
  2206. "remark": "",
  2207. "children": [
  2208. {
  2209. "code": "purchase_pending",
  2210. "title": "待点价",
  2211. "sort": 1,
  2212. "type": 1,
  2213. "rulekey": "client_po_unpoint",
  2214. "isshow": true,
  2215. "url": "",
  2216. "remark": "",
  2217. "children": [
  2218. {
  2219. "code": "none_btn",
  2220. "title": "按钮",
  2221. "sort": 1,
  2222. "type": 2,
  2223. "rulekey": "",
  2224. "isshow": true,
  2225. "url": "",
  2226. "remark": "空按钮(只为了保证树状结构)",
  2227. "children": [
  2228. {
  2229. "code": "purchase_pending_someprice",
  2230. "title": "点价登记",
  2231. "sort": 2,
  2232. "type": 2,
  2233. "rulekey": "client_po_point_register",
  2234. "isshow": true,
  2235. "url": "",
  2236. "remark": "",
  2237. "children": []
  2238. }
  2239. ]
  2240. }
  2241. ]
  2242. },
  2243. {
  2244. "code": "purchase_performance",
  2245. "title": "履约交收",
  2246. "sort": 2,
  2247. "type": 1,
  2248. "rulekey": "client_po_settle",
  2249. "isshow": true,
  2250. "url": "",
  2251. "remark": "",
  2252. "children": [
  2253. {
  2254. "code": "none_btn",
  2255. "title": "按钮",
  2256. "sort": 1,
  2257. "type": 2,
  2258. "rulekey": "",
  2259. "isshow": true,
  2260. "url": "",
  2261. "remark": "空按钮(只为了保证树状结构)",
  2262. "children": [
  2263. {
  2264. "code": "purchase_pending_settlement",
  2265. "title": "交收登记",
  2266. "sort": 2,
  2267. "type": 2,
  2268. "rulekey": "client_po_settle_register",
  2269. "isshow": true,
  2270. "url": "",
  2271. "remark": "",
  2272. "children": []
  2273. },
  2274. {
  2275. "code": "purchase_pending_funds",
  2276. "title": "款项登记",
  2277. "sort": 2,
  2278. "type": 2,
  2279. "rulekey": "client_po_fund_register",
  2280. "isshow": true,
  2281. "url": "",
  2282. "remark": "",
  2283. "children": []
  2284. },
  2285. {
  2286. "code": "purchase_pending_invoice",
  2287. "title": "发票登记",
  2288. "sort": 3,
  2289. "type": 2,
  2290. "rulekey": "client_po_invoice_register",
  2291. "isshow": true,
  2292. "url": "",
  2293. "remark": "",
  2294. "children": []
  2295. },
  2296. {
  2297. "code": "purchase_pending_storage",
  2298. "title": "入库登记",
  2299. "sort": 4,
  2300. "type": 2,
  2301. "rulekey": "client_po_instock_register",
  2302. "isshow": true,
  2303. "url": "",
  2304. "remark": "",
  2305. "children": []
  2306. }
  2307. ]
  2308. }
  2309. ]
  2310. },
  2311. {
  2312. "code": "purchase_all",
  2313. "title": "全部",
  2314. "sort": 3,
  2315. "type": 1,
  2316. "rulekey": "client_po_all",
  2317. "isshow": true,
  2318. "url": "",
  2319. "remark": "",
  2320. "children": []
  2321. }
  2322. ]
  2323. },
  2324. {
  2325. "code": "sell",
  2326. "title": "销售",
  2327. "sort": 2,
  2328. "type": 1,
  2329. "rulekey": "client_so",
  2330. "isshow": true,
  2331. "url": "",
  2332. "remark": "",
  2333. "children": [
  2334. {
  2335. "code": "sell_pending",
  2336. "title": "待点价",
  2337. "sort": 1,
  2338. "type": 1,
  2339. "rulekey": "client_so_unpoint",
  2340. "isshow": true,
  2341. "url": "",
  2342. "remark": "",
  2343. "children": [
  2344. {
  2345. "code": "none_btn",
  2346. "title": "按钮",
  2347. "sort": 1,
  2348. "type": 2,
  2349. "rulekey": "",
  2350. "isshow": true,
  2351. "url": "",
  2352. "remark": "空按钮(只为了保证树状结构)",
  2353. "children": [
  2354. {
  2355. "code": "sell_pending_someprice",
  2356. "title": "点价登记",
  2357. "sort": 2,
  2358. "type": 2,
  2359. "rulekey": "client_so_point_register",
  2360. "isshow": true,
  2361. "url": "",
  2362. "remark": "",
  2363. "children": []
  2364. }
  2365. ]
  2366. }
  2367. ]
  2368. },
  2369. {
  2370. "code": "sell_performance",
  2371. "title": "履约交收",
  2372. "sort": 2,
  2373. "type": 1,
  2374. "rulekey": "client_so_settle",
  2375. "isshow": true,
  2376. "url": "",
  2377. "remark": "",
  2378. "children": [
  2379. {
  2380. "code": "none_btn",
  2381. "title": "按钮",
  2382. "sort": 1,
  2383. "type": 2,
  2384. "rulekey": "",
  2385. "isshow": true,
  2386. "url": "",
  2387. "remark": "空按钮(只为了保证树状结构)",
  2388. "children": [
  2389. {
  2390. "code": "sell_pending_settlement",
  2391. "title": "交收登记",
  2392. "sort": 2,
  2393. "type": 2,
  2394. "rulekey": "client_so_settle_register",
  2395. "isshow": true,
  2396. "url": "",
  2397. "remark": "",
  2398. "children": []
  2399. },
  2400. {
  2401. "code": "sell_pending_funds",
  2402. "title": "款项登记",
  2403. "sort": 2,
  2404. "type": 2,
  2405. "rulekey": "client_so_fund_register",
  2406. "isshow": true,
  2407. "url": "",
  2408. "remark": "",
  2409. "children": []
  2410. },
  2411. {
  2412. "code": "sell_pending_invoice",
  2413. "title": "发票登记",
  2414. "sort": 3,
  2415. "type": 2,
  2416. "rulekey": "client_so_invoice_register",
  2417. "isshow": true,
  2418. "url": "",
  2419. "remark": "",
  2420. "children": []
  2421. },
  2422. {
  2423. "code": "sell_pending_storage",
  2424. "title": "出库登记",
  2425. "sort": 4,
  2426. "type": 2,
  2427. "rulekey": "client_so_outstock_register",
  2428. "isshow": true,
  2429. "url": "",
  2430. "remark": "",
  2431. "children": []
  2432. }
  2433. ]
  2434. }
  2435. ]
  2436. },
  2437. {
  2438. "code": "sell_all",
  2439. "title": "全部",
  2440. "sort": 3,
  2441. "type": 1,
  2442. "rulekey": "client_so_all",
  2443. "isshow": true,
  2444. "url": "",
  2445. "remark": "",
  2446. "children": []
  2447. }
  2448. ]
  2449. },
  2450. {
  2451. "code": "exposure",
  2452. "title": "敞口",
  2453. "sort": 3,
  2454. "type": 1,
  2455. "rulekey": "client_exposure",
  2456. "isshow": true,
  2457. "url": "",
  2458. "remark": "",
  2459. "children": [
  2460. {
  2461. "code": "exposure_realtime",
  2462. "title": "实时敞口",
  2463. "sort": 1,
  2464. "type": 1,
  2465. "rulekey": "client_exposure_real",
  2466. "isshow": true,
  2467. "url": "",
  2468. "remark": "",
  2469. "children": [
  2470. {
  2471. "code": "exposure_realtime_spot_details",
  2472. "title": "现货明细",
  2473. "sort": 1,
  2474. "type": 3,
  2475. "rulekey": "",
  2476. "isshow": true,
  2477. "url": "",
  2478. "remark": "",
  2479. "children": []
  2480. },
  2481. {
  2482. "code": "exposure_realtime_futures_details",
  2483. "title": "期货明细",
  2484. "sort": 1,
  2485. "type": 3,
  2486. "rulekey": "",
  2487. "isshow": true,
  2488. "url": "",
  2489. "remark": "",
  2490. "children": []
  2491. }
  2492. ]
  2493. },
  2494. {
  2495. "code": "exposure_spot",
  2496. "title": "现货头寸",
  2497. "sort": 2,
  2498. "type": 1,
  2499. "rulekey": "client_exposure_spot",
  2500. "isshow": true,
  2501. "url": "",
  2502. "remark": "",
  2503. "children": [
  2504. {
  2505. "code": "exposure_spot_details",
  2506. "title": "现货明细",
  2507. "sort": 1,
  2508. "type": 3,
  2509. "rulekey": "",
  2510. "isshow": true,
  2511. "url": "",
  2512. "remark": "",
  2513. "children": []
  2514. }
  2515. ]
  2516. },
  2517. {
  2518. "code": "exposure_futures",
  2519. "title": "期货头寸",
  2520. "sort": 3,
  2521. "type": 1,
  2522. "rulekey": "client_exposure_future",
  2523. "isshow": true,
  2524. "url": "",
  2525. "remark": "",
  2526. "children": [
  2527. {
  2528. "code": "exposure_futures_details",
  2529. "title": "期货明细",
  2530. "sort": 1,
  2531. "type": 3,
  2532. "rulekey": "",
  2533. "isshow": true,
  2534. "url": "",
  2535. "remark": "",
  2536. "children": []
  2537. }
  2538. ]
  2539. },
  2540. {
  2541. "code": "exposure_history",
  2542. "title": "历史敞口",
  2543. "sort": 4,
  2544. "type": 1,
  2545. "rulekey": "client_exposure_his",
  2546. "isshow": true,
  2547. "url": "",
  2548. "remark": "",
  2549. "children": []
  2550. }
  2551. ]
  2552. },
  2553. {
  2554. "code": "plan",
  2555. "title": "计划",
  2556. "sort": 4,
  2557. "type": 1,
  2558. "rulekey": "client_hedgeplan",
  2559. "isshow": true,
  2560. "url": "",
  2561. "remark": "",
  2562. "children": [
  2563. {
  2564. "code": "plan_uncommitted",
  2565. "title": "未提交",
  2566. "sort": 1,
  2567. "type": 1,
  2568. "rulekey": "client_hedgeplan_unsubmit",
  2569. "isshow": true,
  2570. "url": "",
  2571. "remark": "",
  2572. "children": [
  2573. {
  2574. "code": "plan_btn_add",
  2575. "title": "新增",
  2576. "sort": 1,
  2577. "type": 2,
  2578. "rulekey": "client_hedgeplan_add",
  2579. "isshow": true,
  2580. "url": "",
  2581. "remark": "",
  2582. "children": [
  2583. {
  2584. "code": "plan_uncommitted_modify",
  2585. "title": "修改",
  2586. "sort": 3,
  2587. "type": 2,
  2588. "rulekey": "client_hedgeplan_update",
  2589. "isshow": true,
  2590. "url": "",
  2591. "remark": "",
  2592. "children": []
  2593. },
  2594. {
  2595. "code": "plan_uncommitted_delete",
  2596. "title": "删除",
  2597. "sort": 4,
  2598. "type": 2,
  2599. "rulekey": "",
  2600. "isshow": true,
  2601. "url": "",
  2602. "remark": "",
  2603. "children": []
  2604. }
  2605. ]
  2606. }
  2607. ]
  2608. },
  2609. {
  2610. "code": "plan_audit",
  2611. "title": "待审核",
  2612. "sort": 2,
  2613. "type": 1,
  2614. "rulekey": "client_hedgeplan_unaduit",
  2615. "isshow": true,
  2616. "url": "",
  2617. "remark": "",
  2618. "children": [
  2619. {
  2620. "code": "none_btn",
  2621. "title": "按钮",
  2622. "sort": 1,
  2623. "type": 2,
  2624. "rulekey": "",
  2625. "isshow": true,
  2626. "url": "",
  2627. "remark": "空按钮(只为了保证树状结构)",
  2628. "children": [
  2629. {
  2630. "code": "plan_audit_audit",
  2631. "title": "审核",
  2632. "sort": 1,
  2633. "type": 2,
  2634. "rulekey": "client_hedgeplan_check",
  2635. "isshow": true,
  2636. "url": "",
  2637. "remark": "",
  2638. "children": []
  2639. },
  2640. {
  2641. "code": "plan_audit_cancel",
  2642. "title": "撤销",
  2643. "sort": 3,
  2644. "type": 2,
  2645. "rulekey": "client_hedgeplan_cancel",
  2646. "isshow": true,
  2647. "url": "",
  2648. "remark": "",
  2649. "children": []
  2650. }
  2651. ]
  2652. }
  2653. ]
  2654. },
  2655. {
  2656. "code": "plan_running",
  2657. "title": "执行中",
  2658. "sort": 3,
  2659. "type": 1,
  2660. "rulekey": "client_hedgeplan_inprogress",
  2661. "isshow": true,
  2662. "url": "",
  2663. "remark": "",
  2664. "children": []
  2665. }
  2666. ]
  2667. }
  2668. ]
  2669. },
  2670. {
  2671. "code": "manage",
  2672. "title": "管理",
  2673. "sort": 4,
  2674. "type": 1,
  2675. "rulekey": "",
  2676. "isshow": true,
  2677. "children": [
  2678. {
  2679. "code": "business_review",
  2680. "title": "业务审核",
  2681. "sort": 1,
  2682. "type": 1,
  2683. "rulekey": "client_business",
  2684. "isshow": true,
  2685. "url": "",
  2686. "remark": "",
  2687. "children": [
  2688. {
  2689. "code": "business_review_someprice",
  2690. "title": "点价",
  2691. "sort": 1,
  2692. "type": 1,
  2693. "rulekey": "client_business_point",
  2694. "isshow": true,
  2695. "url": "",
  2696. "remark": "",
  2697. "children": [
  2698. {
  2699. "code": "business_review_someprice_audit",
  2700. "title": "审核",
  2701. "sort": 1,
  2702. "type": 2,
  2703. "rulekey": "client_business_point_check",
  2704. "isshow": true,
  2705. "url": "",
  2706. "remark": "",
  2707. "children": []
  2708. },
  2709. {
  2710. "code": "business_review_someprice_cancel",
  2711. "title": "撤销",
  2712. "sort": 2,
  2713. "type": 2,
  2714. "rulekey": "client_business_point_cancel",
  2715. "isshow": true,
  2716. "url": "",
  2717. "remark": "",
  2718. "children": []
  2719. }
  2720. ]
  2721. },
  2722. {
  2723. "code": "business_review_settlement",
  2724. "title": "交收",
  2725. "sort": 2,
  2726. "type": 1,
  2727. "rulekey": "client_business_settle",
  2728. "isshow": true,
  2729. "url": "",
  2730. "remark": "",
  2731. "children": [
  2732. {
  2733. "code": "business_review_settlement_audit",
  2734. "title": "审核",
  2735. "sort": 1,
  2736. "type": 2,
  2737. "rulekey": "client_business_settle_check",
  2738. "isshow": true,
  2739. "url": "",
  2740. "remark": "",
  2741. "children": []
  2742. },
  2743. {
  2744. "code": "business_review_settlement_cancel",
  2745. "title": "撤销",
  2746. "sort": 2,
  2747. "type": 2,
  2748. "rulekey": "client_business_settle_cancel",
  2749. "isshow": true,
  2750. "url": "",
  2751. "remark": "",
  2752. "children": []
  2753. }
  2754. ]
  2755. }
  2756. ]
  2757. },
  2758. {
  2759. "code": "finance_review",
  2760. "title": "财务审核",
  2761. "sort": 2,
  2762. "type": 1,
  2763. "rulekey": "client_finance",
  2764. "isshow": true,
  2765. "url": "",
  2766. "remark": "",
  2767. "children": [
  2768. {
  2769. "code": "finance_review_funds",
  2770. "title": "款项",
  2771. "sort": 1,
  2772. "type": 1,
  2773. "rulekey": "client_finance_fund",
  2774. "isshow": true,
  2775. "url": "",
  2776. "remark": "",
  2777. "children": [
  2778. {
  2779. "code": "finance_review_funds_audit",
  2780. "title": "审核",
  2781. "sort": 1,
  2782. "type": 2,
  2783. "rulekey": "client_finance_fund_check",
  2784. "isshow": true,
  2785. "url": "",
  2786. "remark": "",
  2787. "children": []
  2788. },
  2789. {
  2790. "code": "finance_review_funds_cancel",
  2791. "title": "撤销",
  2792. "sort": 2,
  2793. "type": 2,
  2794. "rulekey": "client_finance_fund_cancel",
  2795. "isshow": true,
  2796. "url": "",
  2797. "remark": "",
  2798. "children": []
  2799. }
  2800. ]
  2801. },
  2802. {
  2803. "code": "finance_review_invoice",
  2804. "title": "发票",
  2805. "sort": 2,
  2806. "type": 1,
  2807. "rulekey": "client_finance_invoice",
  2808. "isshow": true,
  2809. "url": "",
  2810. "remark": "",
  2811. "children": [
  2812. {
  2813. "code": "finance_review_invoice_audit",
  2814. "title": "审核",
  2815. "sort": 1,
  2816. "type": 2,
  2817. "rulekey": "client_finance_invoice_check",
  2818. "isshow": true,
  2819. "url": "",
  2820. "remark": "",
  2821. "children": []
  2822. },
  2823. {
  2824. "code": "finance_review_invoice_cancel",
  2825. "title": "撤销",
  2826. "sort": 2,
  2827. "type": 2,
  2828. "rulekey": "client_finance_invoice_cancel",
  2829. "isshow": true,
  2830. "url": "",
  2831. "remark": "",
  2832. "children": []
  2833. }
  2834. ]
  2835. }
  2836. ]
  2837. },
  2838. {
  2839. "code": "inventory_review",
  2840. "title": "库存审核",
  2841. "sort": 3,
  2842. "type": 1,
  2843. "rulekey": "client_stock_aduit",
  2844. "isshow": true,
  2845. "url": "",
  2846. "remark": "",
  2847. "children": [
  2848. {
  2849. "code": "inventory_review_checkin",
  2850. "title": "入库",
  2851. "sort": 1,
  2852. "type": 1,
  2853. "rulekey": "client_stock_in",
  2854. "isshow": true,
  2855. "url": "",
  2856. "remark": "",
  2857. "children": [
  2858. {
  2859. "code": "inventory_review_checkin_audit",
  2860. "title": "审核",
  2861. "sort": 1,
  2862. "type": 2,
  2863. "rulekey": "client_stock_in_aduit",
  2864. "isshow": true,
  2865. "url": "",
  2866. "remark": "",
  2867. "children": []
  2868. },
  2869. {
  2870. "code": "inventory_review_checkin_cancel",
  2871. "title": "撤销",
  2872. "sort": 2,
  2873. "type": 2,
  2874. "rulekey": "client_stock_aduit_cancel",
  2875. "isshow": true,
  2876. "url": "",
  2877. "remark": "",
  2878. "children": []
  2879. }
  2880. ]
  2881. },
  2882. {
  2883. "code": "inventory_review_checkout",
  2884. "title": "出库",
  2885. "sort": 2,
  2886. "type": 1,
  2887. "rulekey": "client_stock_out",
  2888. "isshow": true,
  2889. "url": "",
  2890. "remark": "",
  2891. "children": [
  2892. {
  2893. "code": "inventory_review_checkout_audit",
  2894. "title": "审核",
  2895. "sort": 1,
  2896. "type": 2,
  2897. "rulekey": "client_stock_out_aduit",
  2898. "isshow": true,
  2899. "url": "",
  2900. "remark": "",
  2901. "children": []
  2902. },
  2903. {
  2904. "code": "inventory_review_checkout_cancel",
  2905. "title": "撤销",
  2906. "sort": 2,
  2907. "type": 2,
  2908. "rulekey": "",
  2909. "isshow": true,
  2910. "url": "",
  2911. "remark": "",
  2912. "children": []
  2913. }
  2914. ]
  2915. }
  2916. ]
  2917. },
  2918. {
  2919. "code": "inventory_manager",
  2920. "title": "库存管理",
  2921. "sort": 3,
  2922. "type": 1,
  2923. "rulekey": "client_stock_manage",
  2924. "isshow": true,
  2925. "url": "",
  2926. "remark": "",
  2927. "children": [
  2928. {
  2929. "code": "inventory_manager_tab",
  2930. "title": "库存管理",
  2931. "sort": 3,
  2932. "type": 1,
  2933. "rulekey": "client_stock_manage",
  2934. "isshow": true,
  2935. "url": "",
  2936. "remark": "",
  2937. "children": [
  2938. {
  2939. "code": "inventory_manager_inbound_details",
  2940. "title": "入库明细",
  2941. "sort": 1,
  2942. "type": 3,
  2943. "rulekey": "client_stock_manage_in_detail",
  2944. "isshow": true,
  2945. "url": "",
  2946. "remark": "",
  2947. "children": [
  2948. ]
  2949. },
  2950. {
  2951. "code": "inventory_manager_outbound_details",
  2952. "title": "出库明细",
  2953. "sort": 2,
  2954. "type": 3,
  2955. "rulekey": "client_stock_manage_out_detail",
  2956. "isshow": true,
  2957. "url": "",
  2958. "remark": "",
  2959. "children": [
  2960. ]
  2961. }
  2962. ]
  2963. }
  2964. ]
  2965. }
  2966. ]
  2967. },
  2968. {
  2969. "code": "search",
  2970. "title": "查询",
  2971. "sort": 5,
  2972. "type": 1,
  2973. "rulekey": "",
  2974. "isshow": true,
  2975. "children": [
  2976. {
  2977. "code": "inventory",
  2978. "title": "库存查询",
  2979. "sort": 1,
  2980. "type": 1,
  2981. "rulekey": "client_stock_manage",
  2982. "isshow": true,
  2983. "url": "",
  2984. "remark": "",
  2985. "children": [
  2986. {
  2987. "code": "inventory_current",
  2988. "title": "当前库存",
  2989. "sort": 1,
  2990. "type": 1,
  2991. "rulekey": "client_stock_manage_current",
  2992. "isshow": true,
  2993. "url": "",
  2994. "remark": "",
  2995. "children": [
  2996. {
  2997. "code": "inventory_current_add",
  2998. "title": "新增",
  2999. "sort": 1,
  3000. "type": 2,
  3001. "rulekey": "client_hedgeplan_check",
  3002. "isshow": true,
  3003. "url": "",
  3004. "remark": "",
  3005. "children": [
  3006. {
  3007. "code": "inventory_current_detail_storehouse",
  3008. "title": "仓库明细",
  3009. "sort": 1,
  3010. "type": 2,
  3011. "rulekey": "client_hedgeplan_check",
  3012. "isshow": true,
  3013. "url": "",
  3014. "remark": "",
  3015. "children": []
  3016. },
  3017. {
  3018. "code": "inventory_current_detail_storesave",
  3019. "title": "库存明细",
  3020. "sort": 1,
  3021. "type": 2,
  3022. "rulekey": "client_hedgeplan_check",
  3023. "isshow": true,
  3024. "url": "",
  3025. "remark": "",
  3026. "children": []
  3027. }
  3028. ]
  3029. }
  3030. ]
  3031. },
  3032. {
  3033. "code": "inventory_applyrecord",
  3034. "title": "申请记录",
  3035. "sort": 2,
  3036. "type": 1,
  3037. "rulekey": "client_stock_manage_applylog",
  3038. "isshow": true,
  3039. "url": "",
  3040. "remark": "",
  3041. "children": []
  3042. }
  3043. ]
  3044. },
  3045. {
  3046. "code": "outaccount_status",
  3047. "title": "账户状态",
  3048. "sort": 2,
  3049. "type": 1,
  3050. "rulekey": "",
  3051. "isshow": false,
  3052. "url": "",
  3053. "remark": "",
  3054. "children": [
  3055. {
  3056. "code": "outaccount_status_status",
  3057. "title": "账户状态",
  3058. "sort": 1,
  3059. "type": 1,
  3060. "rulekey": "",
  3061. "isshow": true,
  3062. "url": "",
  3063. "remark": "",
  3064. "children": []
  3065. }
  3066. ]
  3067. }
  3068. ]
  3069. },
  3070. {
  3071. "code": "report",
  3072. "title": "报表",
  3073. "sort": 6,
  3074. "type": 1,
  3075. "rulekey": "",
  3076. "isshow": true,
  3077. "children": [
  3078. {
  3079. "code": "finance_report",
  3080. "title": "财务报表",
  3081. "sort": 1,
  3082. "type": 1,
  3083. "rulekey": "client_report_finance",
  3084. "isshow": true,
  3085. "url": "",
  3086. "remark": "",
  3087. "children": [
  3088. {
  3089. "code": "finance_report_finance",
  3090. "title": "财务报表",
  3091. "sort": 1,
  3092. "type": 1,
  3093. "rulekey": "",
  3094. "isshow": true,
  3095. "url": "",
  3096. "remark": "",
  3097. "children": [
  3098. {
  3099. "code": "finance_report_finance_category_breakdown",
  3100. "title": "品类明细",
  3101. "sort": 1,
  3102. "type": 3,
  3103. "rulekey": "",
  3104. "isshow": true,
  3105. "url": "",
  3106. "remark": "",
  3107. "children": []
  3108. },
  3109. {
  3110. "code": "finance_report_finance_brand_details",
  3111. "title": "品牌明细",
  3112. "sort": 1,
  3113. "type": 3,
  3114. "rulekey": "",
  3115. "isshow": true,
  3116. "url": "",
  3117. "remark": "",
  3118. "children": []
  3119. }
  3120. ]
  3121. }
  3122. ]
  3123. },
  3124. {
  3125. "code": "exposure_report",
  3126. "title": "敞口报表",
  3127. "sort": 2,
  3128. "type": 1,
  3129. "rulekey": "client_report_exposure",
  3130. "isshow": true,
  3131. "url": "",
  3132. "remark": "",
  3133. "children": [
  3134. {
  3135. "code": "exposure_report_exposure",
  3136. "title": "敞口报表",
  3137. "sort": 1,
  3138. "type": 1,
  3139. "rulekey": "",
  3140. "isshow": true,
  3141. "url": "",
  3142. "remark": "",
  3143. "children": [
  3144. {
  3145. "code": "exposure_report_exposure_contract_changes",
  3146. "title": "现货合同变动量明细",
  3147. "sort": 1,
  3148. "type": 3,
  3149. "rulekey": "",
  3150. "isshow": true,
  3151. "url": "",
  3152. "remark": "",
  3153. "children": []
  3154. },
  3155. {
  3156. "code": "exposure_report_exposure_hedging_plan",
  3157. "title": "套保计划变动量明细",
  3158. "sort": 1,
  3159. "type": 3,
  3160. "rulekey": "",
  3161. "isshow": true,
  3162. "url": "",
  3163. "remark": "",
  3164. "children": []
  3165. },
  3166. {
  3167. "code": "exposure_report_exposure_futures_changes",
  3168. "title": "期货变动量明细",
  3169. "sort": 1,
  3170. "type": 3,
  3171. "rulekey": "",
  3172. "isshow": true,
  3173. "url": "",
  3174. "remark": "",
  3175. "children": []
  3176. },
  3177. {
  3178. "code": "exposure_report_exposure_parameter_adjustment_changes",
  3179. "title": "参数调整变动量明细",
  3180. "sort": 1,
  3181. "type": 3,
  3182. "rulekey": "",
  3183. "isshow": true,
  3184. "url": "",
  3185. "remark": "",
  3186. "children": []
  3187. }
  3188. ]
  3189. }
  3190. ]
  3191. },
  3192. {
  3193. "code": "spot_report",
  3194. "title": "现货报表",
  3195. "sort": 3,
  3196. "type": 1,
  3197. "rulekey": "client_report_spot",
  3198. "isshow": true,
  3199. "url": "",
  3200. "remark": "",
  3201. "children": [
  3202. {
  3203. "code": "spot_report_spot",
  3204. "title": "现货报表",
  3205. "sort": 1,
  3206. "type": 1,
  3207. "rulekey": "",
  3208. "isshow": true,
  3209. "url": "",
  3210. "remark": "",
  3211. "children": [
  3212. {
  3213. "code": "spot_report_spot_detail",
  3214. "title": "现货明细",
  3215. "sort": 1,
  3216. "type": 3,
  3217. "rulekey": "",
  3218. "isshow": true,
  3219. "url": "",
  3220. "remark": "",
  3221. "children": []
  3222. }
  3223. ]
  3224. }
  3225. ]
  3226. },
  3227. {
  3228. "code": "inventory_report",
  3229. "title": "库存报表",
  3230. "sort": 4,
  3231. "type": 1,
  3232. "rulekey": "client_report_stock",
  3233. "isshow": true,
  3234. "url": "",
  3235. "remark": "",
  3236. "children": [
  3237. {
  3238. "code": "inventory_report_inventory_category",
  3239. "title": "库存报表(品类)",
  3240. "sort": 4,
  3241. "type": 1,
  3242. "rulekey": "client_report_wrstandstock",
  3243. "isshow": true,
  3244. "url": "",
  3245. "remark": "",
  3246. "children": [
  3247. {
  3248. "code": "inventory_report_inventory_category_brand_detail",
  3249. "title": "品牌明细",
  3250. "sort": 4,
  3251. "type": 3,
  3252. "rulekey": "",
  3253. "isshow": true,
  3254. "url": "",
  3255. "remark": "",
  3256. "children": []
  3257. },
  3258. {
  3259. "code": "inventory_report_inventory_category_warehouse_detail",
  3260. "title": "仓库明细",
  3261. "sort": 4,
  3262. "type": 3,
  3263. "rulekey": "",
  3264. "isshow": true,
  3265. "url": "",
  3266. "remark": "",
  3267. "children": []
  3268. }
  3269. ]
  3270. },
  3271. {
  3272. "code": "inventory_report_warehouse",
  3273. "title": "库存报表(仓库)",
  3274. "sort": 4,
  3275. "type": 1,
  3276. "rulekey": "client_report_warehousestock",
  3277. "isshow": true,
  3278. "url": "",
  3279. "remark": "",
  3280. "children": [
  3281. {
  3282. "code": "inventory_report_warehouse_inventory_detail",
  3283. "title": "库存明细",
  3284. "sort": 4,
  3285. "type": 3,
  3286. "rulekey": "",
  3287. "isshow": true,
  3288. "url": "",
  3289. "remark": "",
  3290. "children": []
  3291. }
  3292. ]
  3293. }
  3294. ]
  3295. },
  3296. {
  3297. "code": "sum_pl_report",
  3298. "title": "汇总损益报表",
  3299. "sort": 3,
  3300. "type": 1,
  3301. "rulekey": "client_report_sumprofit",
  3302. "isshow": true,
  3303. "url": "",
  3304. "remark": "",
  3305. "children": [
  3306. {
  3307. "code": "sum_pl_report_sum_pl",
  3308. "title": "汇总损益报表",
  3309. "sort": 1,
  3310. "type": 1,
  3311. "rulekey": "",
  3312. "isshow": true,
  3313. "url": "",
  3314. "remark": "",
  3315. "children": [
  3316. {
  3317. "code": "sum_pl_report_profit_and_loss_details",
  3318. "title": "损益明细",
  3319. "sort": 4,
  3320. "type": 3,
  3321. "rulekey": "",
  3322. "isshow": true,
  3323. "url": "",
  3324. "remark": "",
  3325. "children": []
  3326. }
  3327. ]
  3328. }
  3329. ]
  3330. },
  3331. {
  3332. "code": "future_report",
  3333. "title": "期货报表",
  3334. "sort": 3,
  3335. "type": 1,
  3336. "rulekey": "client_report_futures",
  3337. "isshow": true,
  3338. "url": "",
  3339. "remark": "",
  3340. "children": [
  3341. {
  3342. "code": "future_report_future",
  3343. "title": "期货报表",
  3344. "sort": 1,
  3345. "type": 1,
  3346. "rulekey": "",
  3347. "isshow": true,
  3348. "url": "",
  3349. "remark": "",
  3350. "children": [
  3351. {
  3352. "code": "future_report_future_detail",
  3353. "title": "账户明细",
  3354. "sort": 4,
  3355. "type": 3,
  3356. "rulekey": "",
  3357. "isshow": true,
  3358. "url": "",
  3359. "remark": "",
  3360. "children": []
  3361. }
  3362. ]
  3363. }
  3364. ]
  3365. }
  3366. ]
  3367. },
  3368. {
  3369. "code": "platinum",
  3370. "title": "铂金宝",
  3371. "sort": 6,
  3372. "type": 1,
  3373. "rulekey": "",
  3374. "isshow": true,
  3375. "children": [
  3376. {
  3377. "code": "platinum_customer_info",
  3378. "title": "客户资料",
  3379. "sort": 2,
  3380. "type": 1,
  3381. "rulekey": "client_pc_web_qhj_khzl",
  3382. "isshow": true,
  3383. "url": "",
  3384. "remark": "",
  3385. "children": [
  3386. {
  3387. "code": "platinum_custom_info_normal",
  3388. "title": "正常",
  3389. "sort": 1,
  3390. "type": 1,
  3391. "rulekey": "client_pc_web_qhj_khzl_noraml",
  3392. "isshow": true,
  3393. "url": "",
  3394. "remark": "",
  3395. "children": [
  3396. {
  3397. "code": "platinum_custom_info_add",
  3398. "title": "新增",
  3399. "sort": 1,
  3400. "type": 2,
  3401. "rulekey": "client_pc_web_qhj_khzl_noraml_add",
  3402. "isshow": true,
  3403. "url": "",
  3404. "remark": "",
  3405. "children": [
  3406. {
  3407. "code": "platinum_custom_info_normal_modify",
  3408. "title": "修改",
  3409. "sort": 2,
  3410. "type": 2,
  3411. "rulekey": "client_pc_web_qhj_khzl_noraml_modify",
  3412. "isshow": false,
  3413. "url": "",
  3414. "remark": "",
  3415. "children": []
  3416. },
  3417. {
  3418. "code": "platinum_custom_info_normal_stop",
  3419. "title": "停用",
  3420. "sort": 3,
  3421. "type": 2,
  3422. "rulekey": "client_pc_web_qhj_khzl_noraml_stop",
  3423. "isshow": true,
  3424. "url": "",
  3425. "remark": "",
  3426. "children": []
  3427. }
  3428. ]
  3429. }
  3430. ]
  3431. },
  3432. {
  3433. "code": "platinum_customer_info_unsubmit",
  3434. "title": "待审核",
  3435. "sort": 1,
  3436. "type": 1,
  3437. "rulekey": "client_pc_web_qhj_khzl_waiting",
  3438. "isshow": true,
  3439. "url": "",
  3440. "remark": "",
  3441. "children": [
  3442. {
  3443. "code": "platinum_custom_info_add",
  3444. "title": "新增",
  3445. "sort": 1,
  3446. "type": 2,
  3447. "rulekey": "client_pc_web_qhj_khzl_waiting_add",
  3448. "isshow": true,
  3449. "url": "",
  3450. "remark": "",
  3451. "children": [
  3452. {
  3453. "code": "platinum_customer_info_unsubmit_check",
  3454. "title": "审核",
  3455. "sort": 2,
  3456. "type": 2,
  3457. "rulekey": "client_pc_web_qhj_khzl_waiting_check",
  3458. "isshow": true,
  3459. "url": "",
  3460. "remark": "",
  3461. "children": []
  3462. }
  3463. ]
  3464. }
  3465. ]
  3466. },
  3467. {
  3468. "code": "platinum_customer_info_stop",
  3469. "title": "停用",
  3470. "sort": 1,
  3471. "type": 1,
  3472. "rulekey": "client_pc_web_qhj_khzl_stop",
  3473. "isshow": true,
  3474. "url": "",
  3475. "remark": "",
  3476. "children": [
  3477. {
  3478. "code": "platinum_custom_info_add",
  3479. "title": "新增",
  3480. "sort": 1,
  3481. "type": 2,
  3482. "rulekey": "client_pc_web_qhj_khzl_stop_add",
  3483. "isshow": true,
  3484. "url": "",
  3485. "remark": "",
  3486. "children": [
  3487. {
  3488. "code": "platinum_customer_info_stop_resume",
  3489. "title": "恢复",
  3490. "sort": 2,
  3491. "type": 2,
  3492. "rulekey": "client_pc_web_qhj_khzl_stop_resume",
  3493. "isshow": true,
  3494. "url": "",
  3495. "remark": "",
  3496. "children": []
  3497. },
  3498. {
  3499. "code": "platinum_customer_info_stop_delete",
  3500. "title": "删除",
  3501. "sort": 3,
  3502. "type": 2,
  3503. "rulekey": "client_pc_web_qhj_khzl_stop_delete",
  3504. "isshow": true,
  3505. "url": "",
  3506. "remark": "",
  3507. "children": []
  3508. }
  3509. ]
  3510. }
  3511. ]
  3512. }
  3513. ]
  3514. },
  3515. {
  3516. "code": "platinum_pick_goods_management",
  3517. "title": "提货商品管理",
  3518. "sort": 3,
  3519. "type": 1,
  3520. "rulekey": "",
  3521. "isshow": false,
  3522. "url": "",
  3523. "remark": "",
  3524. "children": [
  3525. {
  3526. "code": "platinum_pick_goods_management_tab",
  3527. "title": "提货商品管理",
  3528. "sort": 3,
  3529. "type": 1,
  3530. "rulekey": "",
  3531. "isshow": true,
  3532. "url": "",
  3533. "remark": "",
  3534. "children": [
  3535. {
  3536. "code": "platinum_pick_goods_management_add",
  3537. "title": "新增",
  3538. "sort": 3,
  3539. "type": 2,
  3540. "rulekey": "",
  3541. "isshow": true,
  3542. "url": "",
  3543. "remark": "",
  3544. "children": [
  3545. {
  3546. "code": "platinum_pick_goods_management_modify",
  3547. "title": "修改",
  3548. "sort": 1,
  3549. "type": 2,
  3550. "rulekey": "",
  3551. "isshow": true,
  3552. "url": "",
  3553. "remark": "",
  3554. "children": []
  3555. },
  3556. {
  3557. "code": "platinum_pick_goods_management_logout",
  3558. "title": "注销",
  3559. "sort": 1,
  3560. "type": 2,
  3561. "rulekey": "",
  3562. "isshow": true,
  3563. "url": "",
  3564. "remark": "",
  3565. "children": []
  3566. }
  3567. ]
  3568. }
  3569. ]
  3570. }
  3571. ]
  3572. },
  3573. {
  3574. "code": "platinum_pick_query",
  3575. "title": "提货查询",
  3576. "sort": 3,
  3577. "type": 1,
  3578. "rulekey": "client_pc_web_qhj_thcx",
  3579. "isshow": true,
  3580. "url": "",
  3581. "remark": "",
  3582. "children": [
  3583. {
  3584. "code": "platinum_pick_query_tab",
  3585. "title": "提货查询",
  3586. "sort": 3,
  3587. "type": 1,
  3588. "rulekey": "client_pc_web_qhj_thcx",
  3589. "isshow": true,
  3590. "url": "",
  3591. "remark": "",
  3592. "children": [
  3593. {
  3594. "code": "platinum_pick_query_complete_stocking",
  3595. "title": "完成备货",
  3596. "sort": 3,
  3597. "type": 2,
  3598. "rulekey": "client_pc_web_qhj_thcx_complete_stocking",
  3599. "isshow": true,
  3600. "url": "",
  3601. "remark": "",
  3602. "children": [
  3603. ]
  3604. },
  3605. {
  3606. "code": "platinum_pick_query_upload_logistics",
  3607. "title": "上传物流",
  3608. "sort": 3,
  3609. "type": 2,
  3610. "rulekey": "client_pc_web_qhj_thcx_upload_logistics",
  3611. "isshow": true,
  3612. "url": "",
  3613. "remark": "",
  3614. "children": [
  3615. ]
  3616. },
  3617. {
  3618. "code": "platinum_pick_query_receipt",
  3619. "title": "确认收货",
  3620. "sort": 3,
  3621. "type": 2,
  3622. "rulekey": "client_pc_web_qhj_thcx_receipt",
  3623. "isshow": true,
  3624. "url": "",
  3625. "remark": "",
  3626. "children": [
  3627. ]
  3628. },
  3629. {
  3630. "code": "platinum_pick_query_confirm_pickup",
  3631. "title": "确认取货",
  3632. "sort": 3,
  3633. "type": 2,
  3634. "rulekey": "client_pc_web_qhj_thcx_pickup",
  3635. "isshow": true,
  3636. "url": "",
  3637. "remark": "",
  3638. "children": [
  3639. ]
  3640. }
  3641. ]
  3642. }
  3643. ]
  3644. },
  3645. {
  3646. "code": "platinum_recharge_withdrawal_review",
  3647. "title": "充值和提现审核",
  3648. "sort": 3,
  3649. "type": 1,
  3650. "rulekey": "client_pc_web_qhj_cztx",
  3651. "isshow": true,
  3652. "url": "",
  3653. "remark": "",
  3654. "children": [
  3655. {
  3656. "code": "platinum_recharge_review_tab",
  3657. "title": "充值审核",
  3658. "sort": 3,
  3659. "type": 1,
  3660. "rulekey": "client_pc_web_qhj_cztx_recharge_tab",
  3661. "isshow": true,
  3662. "url": "",
  3663. "remark": "",
  3664. "children": [
  3665. {
  3666. "code": "platinum_recharge_review_confirm_payment",
  3667. "title": "确认收款",
  3668. "sort": 3,
  3669. "type": 2,
  3670. "rulekey": "client_pc_web_qhj_cztx_recharge_tab_confirm_payment",
  3671. "isshow": true,
  3672. "url": "",
  3673. "remark": "",
  3674. "children": [
  3675. ]
  3676. },
  3677. {
  3678. "code": "platinum_recharge_review_refuse",
  3679. "title": "审核拒绝",
  3680. "sort": 3,
  3681. "type": 2,
  3682. "rulekey": "client_pc_web_qhj_cztx_recharge_tab_review_refuse",
  3683. "isshow": true,
  3684. "url": "",
  3685. "remark": "",
  3686. "children": [
  3687. ]
  3688. }
  3689. ]
  3690. },
  3691. {
  3692. "code": "platinum_withdrawal_review_tab",
  3693. "title": "提现审核",
  3694. "sort": 3,
  3695. "type": 1,
  3696. "rulekey": "client_pc_web_qhj_cztx_withdrawal_tab",
  3697. "isshow": true,
  3698. "url": "",
  3699. "remark": "",
  3700. "children": [
  3701. {
  3702. "code": "platinum_withdrawal_review_confirm_withdrawal",
  3703. "title": "确认提现",
  3704. "sort": 3,
  3705. "type": 2,
  3706. "rulekey": "client_pc_web_qhj_cztx_withdrawal_tab_confirm_withdrawal",
  3707. "isshow": true,
  3708. "url": "",
  3709. "remark": "",
  3710. "children": [
  3711. ]
  3712. },
  3713. {
  3714. "code": "platinum_withdrawal_review_refuse",
  3715. "title": "审核拒绝",
  3716. "sort": 3,
  3717. "type": 2,
  3718. "rulekey": "client_pc_web_qhj_cztx_withdrawal_tab_review_refuse",
  3719. "isshow": true,
  3720. "url": "",
  3721. "remark": "",
  3722. "children": [
  3723. ]
  3724. }
  3725. ]
  3726. }
  3727. ]
  3728. },
  3729. {
  3730. "code": "platinum_fixed_investment_price_query",
  3731. "title": "定投价查询",
  3732. "sort": 3,
  3733. "type": 1,
  3734. "rulekey": "client_pc_web_qhj_dtj",
  3735. "isshow": true,
  3736. "url": "",
  3737. "remark": "",
  3738. "children": [
  3739. {
  3740. "code": "platinum_fixed_investment_price_query_tab",
  3741. "title": "定投价查询",
  3742. "sort": 3,
  3743. "type": 1,
  3744. "rulekey": "",
  3745. "isshow": true,
  3746. "url": "",
  3747. "remark": "",
  3748. "children": [
  3749. ]
  3750. }
  3751. ]
  3752. },
  3753. {
  3754. "code": "platinum_fixed_investment_query",
  3755. "title": "定投查询",
  3756. "sort": 3,
  3757. "type": 1,
  3758. "rulekey": "client_pc_web_qhj_dt",
  3759. "isshow": true,
  3760. "url": "",
  3761. "remark": "",
  3762. "children": [
  3763. {
  3764. "code": "platinum_fixed_investment_plan_query",
  3765. "title": "定投计划查询",
  3766. "sort": 3,
  3767. "type": 1,
  3768. "rulekey": "client_pc_web_qhj_dt_plan",
  3769. "isshow": true,
  3770. "url": "",
  3771. "remark": "",
  3772. "children": [
  3773. ]
  3774. },
  3775. {
  3776. "code": "platinum_fixed_investment_flow_query",
  3777. "title": "定投流水查询",
  3778. "sort": 3,
  3779. "type": 1,
  3780. "rulekey": "client_pc_web_qhj_dt_log",
  3781. "isshow": true,
  3782. "url": "",
  3783. "remark": "",
  3784. "children": [
  3785. ]
  3786. }
  3787. ]
  3788. },
  3789. {
  3790. "code": "platinum_document_query",
  3791. "title": "单据查询",
  3792. "sort": 3,
  3793. "type": 1,
  3794. "rulekey": "client_pc_web_qhj_dj",
  3795. "isshow": true,
  3796. "url": "",
  3797. "remark": "",
  3798. "children": [
  3799. {
  3800. "code": "platinum_document_query_position",
  3801. "title": "持仓",
  3802. "sort": 3,
  3803. "type": 1,
  3804. "rulekey": "client_pc_web_qhj_dj_position",
  3805. "isshow": true,
  3806. "url": "",
  3807. "remark": "",
  3808. "children": [
  3809. ]
  3810. },
  3811. {
  3812. "code": "platinum_document_query_order",
  3813. "title": "委托单",
  3814. "sort": 3,
  3815. "type": 1,
  3816. "rulekey": "client_pc_web_qhj_dj_order",
  3817. "isshow": true,
  3818. "url": "",
  3819. "remark": "",
  3820. "children": [
  3821. ]
  3822. },
  3823. {
  3824. "code": "platinum_document_query_waiting",
  3825. "title": "待付单",
  3826. "sort": 3,
  3827. "type": 1,
  3828. "rulekey": "client_pc_web_qhj_dj_waiting",
  3829. "isshow": true,
  3830. "url": "",
  3831. "remark": "",
  3832. "children": [
  3833. ]
  3834. },
  3835. {
  3836. "code": "platinum_document_query_success",
  3837. "title": "成交单",
  3838. "sort": 3,
  3839. "type": 1,
  3840. "rulekey": "client_pc_web_qhj_dj_success",
  3841. "isshow": true,
  3842. "url": "",
  3843. "remark": "",
  3844. "children": [
  3845. ]
  3846. }
  3847. ]
  3848. },
  3849. {
  3850. "code": "platinum_financing_information",
  3851. "title": "融资信息",
  3852. "sort": 3,
  3853. "type": 1,
  3854. "rulekey": "client_pc_web_qhj_rz",
  3855. "isshow": true,
  3856. "url": "",
  3857. "remark": "",
  3858. "children": [
  3859. {
  3860. "code": "platinum_financing_information_tab",
  3861. "title": "融资信息",
  3862. "sort": 3,
  3863. "type": 1,
  3864. "rulekey": "",
  3865. "isshow": true,
  3866. "url": "",
  3867. "remark": "",
  3868. "children": [
  3869. {
  3870. "code": "platinum_financing_information_detail",
  3871. "title": "融资明细",
  3872. "sort": 3,
  3873. "type": 2,
  3874. "rulekey": "client_pc_web_qhj_rz_detail",
  3875. "isshow": true,
  3876. "url": "",
  3877. "remark": "",
  3878. "children": []
  3879. }
  3880. ]
  3881. }
  3882. ]
  3883. },
  3884. {
  3885. "code": "platinum_contract_goods",
  3886. "title": "合约商品",
  3887. "sort": 3,
  3888. "type": 1,
  3889. "rulekey": "",
  3890. "isshow": false,
  3891. "url": "",
  3892. "remark": "",
  3893. "children": [
  3894. {
  3895. "code": "platinum_contract_goods_tab",
  3896. "title": "合约商品",
  3897. "sort": 3,
  3898. "type": 1,
  3899. "rulekey": "",
  3900. "isshow": true,
  3901. "url": "",
  3902. "remark": "",
  3903. "children": [
  3904. {
  3905. "code": "platinum_contract_goods_add",
  3906. "title": "新增",
  3907. "sort": 1,
  3908. "type": 2,
  3909. "rulekey": "",
  3910. "isshow": true,
  3911. "url": "",
  3912. "remark": "",
  3913. "children": [
  3914. {
  3915. "code": "platinum_contract_goods_modify",
  3916. "title": "修改",
  3917. "sort": 2,
  3918. "type": 2,
  3919. "rulekey": "",
  3920. "isshow": true,
  3921. "url": "",
  3922. "remark": "",
  3923. "children": []
  3924. },
  3925. {
  3926. "code": "platinum_contract_goods_logout",
  3927. "title": "注销",
  3928. "sort": 3,
  3929. "type": 2,
  3930. "rulekey": "",
  3931. "isshow": true,
  3932. "url": "",
  3933. "remark": "",
  3934. "children": []
  3935. }
  3936. ]
  3937. }
  3938. ]
  3939. }
  3940. ]
  3941. },
  3942. {
  3943. "code": "platinum_contract_commodity_suspension",
  3944. "title": "合约商品停牌",
  3945. "sort": 3,
  3946. "type": 1,
  3947. "rulekey": "",
  3948. "isshow": false,
  3949. "url": "",
  3950. "remark": "",
  3951. "children": [
  3952. {
  3953. "code": "platinum_contract_commodity_suspension_tab",
  3954. "title": "合约商品停牌",
  3955. "sort": 3,
  3956. "type": 1,
  3957. "rulekey": "",
  3958. "isshow": true,
  3959. "url": "",
  3960. "remark": "",
  3961. "children": [
  3962. {
  3963. "code": "platinum_contract_commodity_suspension_add",
  3964. "title": "新增",
  3965. "sort": 1,
  3966. "type": 2,
  3967. "rulekey": "",
  3968. "isshow": true,
  3969. "url": "",
  3970. "remark": "",
  3971. "children": [
  3972. {
  3973. "code": "platinum_contract_commodity_suspension_modify",
  3974. "title": "修改",
  3975. "sort": 2,
  3976. "type": 2,
  3977. "rulekey": "",
  3978. "isshow": true,
  3979. "url": "",
  3980. "remark": "",
  3981. "children": []
  3982. }
  3983. ]
  3984. }
  3985. ]
  3986. }
  3987. ]
  3988. },
  3989. {
  3990. "code": "platinum_agents_and_stores",
  3991. "title": "代理和门店",
  3992. "sort": 2,
  3993. "type": 1,
  3994. "rulekey": "",
  3995. "isshow": false,
  3996. "url": "",
  3997. "remark": "",
  3998. "children": [
  3999. {
  4000. "code": "platinum_agents_and_stores_tab",
  4001. "title": "代理和门店",
  4002. "sort": 2,
  4003. "type": 1,
  4004. "rulekey": "",
  4005. "isshow": true,
  4006. "url": "",
  4007. "remark": "",
  4008. "children": [
  4009. {
  4010. "code": "platinum_agents_and_stores_add",
  4011. "title": "新增",
  4012. "sort": 1,
  4013. "type": 2,
  4014. "rulekey": "",
  4015. "isshow": true,
  4016. "url": "",
  4017. "remark": "",
  4018. "children": []
  4019. },
  4020. {
  4021. "code": "platinum_agents_and_stores_modify",
  4022. "title": "修改",
  4023. "sort": 1,
  4024. "type": 2,
  4025. "rulekey": "",
  4026. "isshow": true,
  4027. "url": "",
  4028. "remark": "",
  4029. "children": []
  4030. },
  4031. {
  4032. "code": "platinum_agents_and_stores_logout",
  4033. "title": "注销",
  4034. "sort": 1,
  4035. "type": 2,
  4036. "rulekey": "",
  4037. "isshow": true,
  4038. "url": "",
  4039. "remark": "",
  4040. "children": []
  4041. }
  4042. ]
  4043. }
  4044. ]
  4045. },
  4046. {
  4047. "code": "platinum_spot_and_price",
  4048. "title": "现货市价",
  4049. "sort": 2,
  4050. "type": 1,
  4051. "rulekey": "client_spotmarketprice",
  4052. "isshow": false,
  4053. "url": "",
  4054. "remark": "",
  4055. "children": [
  4056. {
  4057. "code": "platinum_spot_and_price_tab",
  4058. "title": "现货市价",
  4059. "sort": 2,
  4060. "type": 1,
  4061. "rulekey": "",
  4062. "isshow": true,
  4063. "url": "",
  4064. "remark": "",
  4065. "children": [
  4066. {
  4067. "code": "platinum_spot_and_price_modify",
  4068. "title": "修改",
  4069. "sort": 1,
  4070. "type": 2,
  4071. "rulekey": "client_spotmarketprice_update",
  4072. "isshow": true,
  4073. "url": "",
  4074. "remark": "",
  4075. "children": []
  4076. }
  4077. ]
  4078. }
  4079. ]
  4080. },
  4081. {
  4082. "code": "platinum_agreement",
  4083. "title": "协议管理",
  4084. "sort": 2,
  4085. "type": 1,
  4086. "rulekey": "client_pc_web_qhj_xygl",
  4087. "isshow": true,
  4088. "url": "",
  4089. "remark": "",
  4090. "children": [
  4091. {
  4092. "code": "platinum_agreement_tab",
  4093. "title": "协议管理",
  4094. "sort": 2,
  4095. "type": 1,
  4096. "rulekey": "client_pc_web_qhj_xygl_tab",
  4097. "isshow": true,
  4098. "url": "",
  4099. "remark": "",
  4100. "children": [
  4101. {
  4102. "code": "platinum_agreement_add",
  4103. "title": "新增",
  4104. "sort": 1,
  4105. "type": 2,
  4106. "rulekey": "client_pc_web_qhj_xygl_add",
  4107. "isshow": true,
  4108. "url": "",
  4109. "remark": "",
  4110. "children": [
  4111. {
  4112. "code": "platinum_agreement_modify",
  4113. "title": "修改",
  4114. "sort": 1,
  4115. "type": 2,
  4116. "rulekey": "client_pc_web_qhj_xygl_modify",
  4117. "isshow": true,
  4118. "url": "",
  4119. "remark": "",
  4120. "children": []
  4121. },
  4122. {
  4123. "code": "platinum_agreement_stop",
  4124. "title": "停用",
  4125. "sort": 1,
  4126. "type": 2,
  4127. "rulekey": "client_pc_web_qhj_xygl_stop",
  4128. "isshow": true,
  4129. "url": "",
  4130. "remark": "",
  4131. "children": []
  4132. },
  4133. {
  4134. "code": "platinum_agreement_resume",
  4135. "title": "恢复",
  4136. "sort": 1,
  4137. "type": 2,
  4138. "rulekey": "client_pc_web_qhj_xygl_resume",
  4139. "isshow": true,
  4140. "url": "",
  4141. "remark": "",
  4142. "children": []
  4143. },
  4144. {
  4145. "code": "platinum_agreement_delete",
  4146. "title": "注销",
  4147. "sort": 1,
  4148. "type": 2,
  4149. "rulekey": "client_pc_web_qhj_xygl_delete",
  4150. "isshow": true,
  4151. "url": "",
  4152. "remark": "",
  4153. "children": []
  4154. }
  4155. ]
  4156. }
  4157. ]
  4158. }
  4159. ]
  4160. },
  4161. {
  4162. "code": "platinum_capital_flow",
  4163. "title": "积分流水",
  4164. "sort": 1,
  4165. "type": 2,
  4166. "rulekey": "client_pc_web_qhj_zjls",
  4167. "isshow": true,
  4168. "url": "",
  4169. "remark": "",
  4170. "children": [
  4171. {
  4172. "code": "platinum_capital_flow_tab",
  4173. "title": "积分流水",
  4174. "sort": 1,
  4175. "type": 5,
  4176. "rulekey": "client_pc_web_qhj_zjls_tab",
  4177. "isshow": true,
  4178. "url": "/qhj/scorelog/init",
  4179. "remark": "",
  4180. "children": []
  4181. }
  4182. ]
  4183. },
  4184. {
  4185. "code": "platinum_promotion_report",
  4186. "title": "推广报表",
  4187. "sort": 1,
  4188. "type": 2,
  4189. "rulekey": "client_pc_web_qhj_tgbb",
  4190. "isshow": true,
  4191. "url": "",
  4192. "remark": "",
  4193. "children": [
  4194. {
  4195. "code": "platinum_promotion_report_tab",
  4196. "title": "推广报表",
  4197. "sort": 1,
  4198. "type": 5,
  4199. "rulekey": "client_pc_web_qhj_tgbb_tab",
  4200. "isshow": true,
  4201. "url": "/reckon/brokerreward/init",
  4202. "remark": "",
  4203. "children": []
  4204. }
  4205. ]
  4206. },
  4207. {
  4208. "code": "platinum_broker_management",
  4209. "title": "经纪人管理",
  4210. "sort": 1,
  4211. "type": 2,
  4212. "rulekey": "client_pc_web_qhj_jjrgl",
  4213. "isshow": true,
  4214. "url": "",
  4215. "remark": "",
  4216. "children": [
  4217. {
  4218. "code": "platinum_broker_management_normal_tab",
  4219. "title": "正常",
  4220. "sort": 1,
  4221. "type": 5,
  4222. "rulekey": "client_pc_web_qhj_jjrgl_normal_tab",
  4223. "isshow": true,
  4224. "url": "/qhj/brokerapply/init",
  4225. "remark": "",
  4226. "children": []
  4227. },
  4228. {
  4229. "code": "platinum_broker_management_waiting_tab",
  4230. "title": "待审核",
  4231. "sort": 1,
  4232. "type": 5,
  4233. "rulekey": "client_pc_web_qhj_jjrgl_waiting_tab",
  4234. "isshow": true,
  4235. "url": "/qhj/brokerapply/init",
  4236. "remark": "",
  4237. "children": [
  4238. {
  4239. "code": "platinum_broker_management_check",
  4240. "title": "审核",
  4241. "sort": 1,
  4242. "type": 2,
  4243. "rulekey": "client_pc_web_qhj_jjrgl_check",
  4244. "isshow": true,
  4245. "url": "",
  4246. "remark": "",
  4247. "children": []
  4248. }
  4249. ]
  4250. },
  4251. {
  4252. "code": "platinum_broker_management_refuse_tab",
  4253. "title": "审核拒绝",
  4254. "sort": 1,
  4255. "type": 5,
  4256. "rulekey": "client_pc_web_qhj_jjrgl_resume",
  4257. "isshow": true,
  4258. "url": "/qhj/brokerapply/init",
  4259. "remark": "",
  4260. "children": [
  4261. {
  4262. "code": "platinum_broker_management_resume",
  4263. "title": "恢复",
  4264. "sort": 1,
  4265. "type": 2,
  4266. "rulekey": "client_pc_web_qhj_jjrgl_resume",
  4267. "isshow": true,
  4268. "url": "",
  4269. "remark": "",
  4270. "children": []
  4271. }
  4272. ]
  4273. }
  4274. ]
  4275. }
  4276. ]
  4277. }
  4278. ]