pc_menu_企业风管.json 114 KB

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