pc_menu.json 123 KB

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