pc_menu_企业风管.json 115 KB

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