| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187 |
- [
- {
- "code": "remark",
- "title": "",
- "sort": 1,
- "type": 1,
- "rulekey": "",
- "isshow": false,
- "url": "",
- "remark": "type: 1 右侧主菜单或是上半部分tab子菜单; 2:操作按钮;3:tab下方明细;4:底部单据菜单;5:管理端路径;",
- "children": []
- },
- {
- "code": "bottom",
- "title": "底部单据菜单",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_account",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_warrant",
- "title": "现货仓单",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_spot_production_bottom_spot_warrant",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_warrant_spot_summary",
- "title": "现货汇总",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_spot_production_bottom_spot_summary",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_warrant_spot_summary_check",
- "title": "查看库存",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_production_bottom_spot_summary_check_btn",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "spot_warrant_inventory_summary",
- "title": "库存汇总",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_spot_production_bottom_inventory_summary",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "spot_warrant_spot_details",
- "title": "现货明细",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_spot_production_bottom_spot_details_listed",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_warrant_spot_details_listed",
- "title": "挂牌",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_production_bottom_spot_details_listed",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "spot_warrant_spot_details_pick_up",
- "title": "提货",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_production_bottom_spot_details_pick_up",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "spot_warrant_pending_order",
- "title": "挂单",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_spot_production_bottom_spot_pending_order",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_warrant_pending_order_cancel_order",
- "title": "撤单",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_production_bottom_spot_pending_order_cancel_order",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "spot_warrant_deal",
- "title": "成交",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_spot_production_bottom_spot_deal",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_warrant_deal_detail",
- "title": "详情",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_production_bottom_spot_deal_detail",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "spot_warrant_designated_deal",
- "title": "指定成交",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_spot_production_bottom_spot_designated_transaction",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_warrant_designated_deal_confirm_purchase",
- "title": "确定购买",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_production_bottom_spot_designated_transaction_confirm_purchase",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "spot_warrant_designated_deal_ignore",
- "title": "忽略",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_production_bottom_spot_designated_transaction_ignore",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "spot_warrant_designated_deal_resell",
- "title": "撤销出售",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_production_bottom_spot_designated_transaction_resell",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "spot_warrant_in_and_out_warehouse",
- "title": "提货",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_spot_production_bottom_spot_in_out_warehouse",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_warrant_in_and_out_warehouse_sure_pick_up",
- "title": "确认提货",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_production_bottom_spot_in_out_warehouse_confirm_delivery",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "spot_warrant_in_and_out_warehouse_revoke",
- "title": "撤销",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_production_bottom_spot_in_out_warehouse_revoke",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- }
- ]
- },
- {
- "code": "pre_sale_warehouse_receipt",
- "title": "预售仓单",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_spot_production_bottom_warehouse_receipt",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "pre_sale_warehouse_receipt_order_summary",
- "title": "订单汇总",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_warehouse_receipt_bottom_order_summary",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "pre_sale_warehouse_receipt_order_summary_listed",
- "title": "挂牌",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_warehouse_receipt_bottom_order_summary_listed",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "pre_sale_warehouse_receipt_pending_order",
- "title": "挂单",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_warehouse_receipt_bottom_pending_order",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "pre_sale_warehouse_receipt_pending_order_cancel_order",
- "title": "撤单",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_warehouse_receipt_bottom_pending_order_cancel_order",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "pre_sale_warehouse_receipt_deal",
- "title": "成交",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_warehouse_receipt_bottom_deal",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "pre_sale_warehouse_receipt_deal_detail",
- "title": "详情",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_warehouse_receipt_bottom_deal_detail",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "pre_sale_warehouse_receipt_designated_deal",
- "title": "指定成交",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_warehouse_receipt_bottom_designated_deal",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "pre_sale_warehouse_receipt_designated_deal_resell",
- "title": "撤销出售",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_warehouse_receipt_bottom_designated_deal_resell",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "pre_sale_warehouse_receipt_designated_deal_confirm_purchase",
- "title": "确定购买",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_warehouse_receipt_bottom_designated_deal_confirm_purchase",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "pre_sale_warehouse_receipt_designated_deal_ignore",
- "title": "忽略",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_warehouse_receipt_bottom_designated_deal_ignore",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- }
- ]
- },
- {
- "code": "commodity_contract",
- "title": "商品合约",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_spot_production_bottom_commodity_contract",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "commodity_contract_summary",
- "title": "合约汇总",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_commodity_contract_bottom_order_summary",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "commodity_contract_summary_transfer",
- "title": "转让",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_commodity_contract_bottom_contract_summary_transfer",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "commodity_contract_summary_settlement",
- "title": "交收",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_commodity_contract_bottom_contract_summary_settlement",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "commodity_contract_commission",
- "title": "委托",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_commodity_contract_bottom_commission",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "commodity_contract_commission_cancel_order",
- "title": "撤单",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_commodity_contract_bottom_contract_summary_cancel_order",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "commodity_contract_make_deal",
- "title": "成交",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_commodity_contract_bottom_make_deal",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "commodity_contract_settlement",
- "title": "交收",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_commodity_contract_bottom_settlement",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "financing_manager",
- "title": "融资管理",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_spot_production_bottom_financing_management",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "financing_manager_apply_order",
- "title": "申请单",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_financing_management_bottom_apply_order",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "financing_manager_apply_cancel",
- "title": "撤销",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_financing_management_bottom_cancel",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "financing_manager_contract",
- "title": "合同",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_financing_management_bottom_contract",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "financing_manager_contract_repurchase_warrant",
- "title": "回购仓单",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_financing_management_bottom_repurchase_warrant",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "financing_manager_contract_pay_arrears",
- "title": "支付欠款",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_warehouse_receipt_bottom_pay_arrears",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- }
- ]
- },
- {
- "code": "performance_information",
- "title": "履约信息",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_spot_production_bottom_performance",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "performance_information_buy_performance",
- "title": "买履约",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_performance_bottom_order_summary_buy_performance",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "performance_information_buy_performance_pay",
- "title": "付款",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_performance_bottom_order_summary_buy_performance_pay",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "performance_information_buy_performance_extension",
- "title": "延期",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_performance_bottom_order_summary_buy_performance_extension",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "performance_information_buy_performance_breach_contract",
- "title": "违约",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_performance_bottom_order_summary_buy_performance_breach_contract",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "performance_information_buy_performance_settlement",
- "title": "交收",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_performance_bottom_order_summary_buy_performance_settlement",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "performance_information_buy_performance_detail",
- "title": "详情",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_performance_bottom_order_summary_buy_performance_detail",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "performance_information_sell_performance",
- "title": "卖履约",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_performance_bottom_order_summary_sell_performance",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "performance_information_sell_performance_pay",
- "title": "付款",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_performance_bottom_order_summary_sell_performance_pay",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "performance_information_sell_performance_extension",
- "title": "延期",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_performance_bottom_order_summary_sell_performance_extension",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "performance_information_sell_performance_breach_contract",
- "title": "违约",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_performance_bottom_order_summary_sell_performance_breach_contract",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "performance_information_sell_performance_settlement",
- "title": "交收",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_performance_bottom_order_summary_sell_performance_settlement",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "performance_information_sell_performance_detail",
- "title": "详情",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_performance_bottom_order_summary_sell_performance_detail",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- }
- ]
- },
- {
- "code": "funding_information",
- "title": "资金信息",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_spot_production_bottom_funding",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "funding_information_funding_summary",
- "title": "资金汇总",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_funding_bottom_order_funding_summary",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "funding_information_funding_summary_recharge",
- "title": "充值",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_funding_bottom_order_funding_summary_recharge",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "funding_information_funding_summary_withdraw",
- "title": "提现",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_funding_bottom_order_funding_summary_withdraw",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "funding_information_funding_log",
- "title": "资金流水",
- "sort": 1,
- "type": 4,
- "rulekey": "client_pc_web_funding_bottom_order_funding_log",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- }
- ]
- },
- {
- "code": "market",
- "title": "市场",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_market",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_trade",
- "title": "现货贸易",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_spot_trading",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "warehouse_receipt_trade",
- "title": "仓单贸易",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_spot_warehouse_receipt_trade",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "warehouse_receipt_trade_price",
- "title": "一口价挂牌",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_spot_warehouse_receipt_trade_buy_it_out",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_trade_warehouse_post_buying",
- "title": "挂牌求购",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_warehouse_receipt_trade_buy_it_out_post_buying",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "spot_trade_warehouse_detail",
- "title": "详情",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_warehouse_receipt_trade_buy_it_out_detail",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "spot_trade_warehouse_buy_hall",
- "title": "买大厅",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_spot_warehouse_price_buy_hall",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_trade_warehouse_delisting",
- "title": "摘牌",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_warehouse_price_buy_hall_delist",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "spot_trade_warehouse_sell_hall",
- "title": "卖大厅",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_spot_warehouse_price_sell_hall",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_trade_warehouse_delisting",
- "title": "摘牌",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_warehouse_price_sell_hall_delist",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "spot_trade_warehouse_financing_delisting",
- "title": "融资摘牌",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_warehouse_price_buy_hall_financing_delisting",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- }
- ]
- },
- {
- "code": "warehouse_receipt_trade_floating_price",
- "title": "浮动价挂牌",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_spot_warehouse_receipt_trade_floating_price",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_trade_warehouse_post_buying",
- "title": "挂牌求购",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_warehouse_receipt_trade_floating_price_post_buying",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "spot_trade_warehouse_detail",
- "title": "详情",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_warehouse_receipt_trade_floating_price_detail",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "spot_trade_warehouse_buy_hall",
- "title": "买大厅",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_spot_warehouse_floating_price_buy_hall",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_trade_warehouse_delisting",
- "title": "摘牌",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_warehouse_floating_price_buy_hall_delist",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "spot_trade_warehouse_sell_hall",
- "title": "卖大厅",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_spot_warehouse_floating_price_sell_hall",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_trade_warehouse_delisting",
- "title": "摘牌",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_warehouse_floating_price_sell_hall_delist",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "spot_trade_warehouse_financing_delisting",
- "title": "融资摘牌",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_warehouse_floating_price_buy_hall_financing_delisting",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "code": "warehouse_pre_sale",
- "title": "仓单预售",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_spot_warehouse_capacity",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "warehouse_pre_sale_price",
- "title": "一口价预售",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_spot_warehouse_capacity_buy_it_out",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_trade_warehouse_post_buying",
- "title": "挂牌求购",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_warehouse_capacity_buy_it_out_post_buying",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "spot_trade_warehouse_detail",
- "title": "详情",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_warehouse_capacity_buy_it_out_detail",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "spot_trade_warehouse_buy_hall",
- "title": "买大厅",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_spot_warehouse_capacity_buy_it_out_buy_hall",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_trade_warehouse_delisting",
- "title": "摘牌",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_warehouse_capacity_buy_it_out_buy_hall_delist",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "spot_trade_warehouse_sell_hall",
- "title": "卖大厅",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_spot_warehouse_capacity_buy_it_out_sell_hall",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_trade_warehouse_delisting",
- "title": "摘牌",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_warehouse_capacity_buy_it_out_sell_hall_delist",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "spot_trade_warehouse_financing_delisting",
- "title": "融资摘牌",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_warehouse_capacity_buy_it_out_buy_hall_financing_delisting",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- }
- ]
- },
- {
- "code": "warehouse_pre_sale_floating_price",
- "title": "浮动价预售",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_spot_warehouse_capacity_floating_price",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_trade_warehouse_post_buying",
- "title": "挂牌求购",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_warehouse_capacity_floating_price_post_buying",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "spot_trade_warehouse_detail",
- "title": "详情",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_warehouse_capacity_floating_price_detail",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "spot_trade_warehouse_buy_hall",
- "title": "买大厅",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_spot_warehouse_capacity_floating_price_buy_hall",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_trade_warehouse_delisting",
- "title": "摘牌",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_warehouse_capacity_floating_price_buy_hall_delist",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "spot_trade_warehouse_sell_hall",
- "title": "卖大厅",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_spot_warehouse_capacity_floating_price_sell_hall",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_trade_warehouse_delisting",
- "title": "摘牌",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_warehouse_capacity_floating_price_sell_hall_delist",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "spot_trade_warehouse_financing_delisting",
- "title": "融资摘牌",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_spot_warehouse_capacity_floating_price_buy_hall_financing_delisting",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "code": "spot_trade_order_transaction",
- "title": "订单交易",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_spot_order_transaction",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_trade_order_transaction_listing_transfer",
- "title": "挂牌转让",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_spot_order_transaction_listing_transfer",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "spot_trade_order_transaction_basis_difference",
- "title": "基差点价",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_spot_order_transaction_basis_difference",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "spot_trade_reference_market",
- "title": "参考行情",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_spot_reference_market",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "futures",
- "title": "期货",
- "sort": 1,
- "type": 1,
- "rulekey": "",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "dominant_contract",
- "title": "主力",
- "sort": 1,
- "type": 1,
- "rulekey": "",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "night_plate",
- "title": "夜盘",
- "sort": 2,
- "type": 1,
- "rulekey": "",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "main_contract",
- "title": "主连",
- "sort": 3,
- "type": 1,
- "rulekey": "",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "position",
- "title": "持仓",
- "sort": 21,
- "type": 1,
- "rulekey": "",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "open",
- "title": "开仓",
- "sort": 1,
- "type": 2,
- "rulekey": "",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "close",
- "title": "平仓",
- "sort": 2,
- "type": 2,
- "rulekey": "",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "orderdetail",
- "title": "委托",
- "sort": 22,
- "type": 1,
- "rulekey": "",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "tradedetail",
- "title": "成交",
- "sort": 23,
- "type": 1,
- "rulekey": "",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "closedetail",
- "title": "平仓",
- "sort": 24,
- "type": 1,
- "rulekey": "",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "info",
- "title": "信息",
- "sort": 2,
- "type": 1,
- "rulekey": "",
- "isshow": true,
- "children": [
- {
- "code": "custom_info",
- "title": "客户资料",
- "sort": 1,
- "type": 1,
- "rulekey": "client_customer",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "custom_info_unsubmit",
- "title": "未提交",
- "sort": 1,
- "type": 1,
- "rulekey": "client_customer_unsubmit",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "custom_info_btn_delete",
- "title": "删除",
- "sort": 1,
- "type": 2,
- "rulekey": "client_customer_delete",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "custom_info_btn_modify",
- "title": "修改",
- "sort": 2,
- "type": 2,
- "rulekey": "client_customer_update",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "custom_info_checkpending",
- "title": "待审核",
- "sort": 1,
- "type": 1,
- "rulekey": "client_customer_unaduit",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "custom_info_btn_cancel",
- "title": "撤销",
- "sort": 1,
- "type": 2,
- "rulekey": "client_customer_cancel",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "custom_info_btn_check",
- "title": "审核",
- "sort": 2,
- "type": 2,
- "rulekey": "client_customer_check",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "custom_info_normal",
- "title": "正常",
- "sort": 1,
- "type": 1,
- "rulekey": "client_customer_normal",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "custom_info_btn_add",
- "title": "新增",
- "sort": 1,
- "type": 2,
- "rulekey": "client_customer_add",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "custom_info_btn_disable",
- "title": "停用",
- "sort": 3,
- "type": 2,
- "rulekey": "client_customer_disable",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "custom_info_disabled",
- "title": "停用",
- "sort": 2,
- "type": 1,
- "rulekey": "client_customer_stop",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "custom_info_btn_recover",
- "title": "恢复",
- "sort": 1,
- "type": 2,
- "rulekey": "client_customer_restore",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "goods_info",
- "title": "商品信息",
- "sort": 2,
- "type": 1,
- "rulekey": "client_deliverygoods",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "goods_info_spot",
- "title": "现货品种",
- "sort": 1,
- "type": 1,
- "rulekey": "client_deliverygoods_spot",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "goods_info_spot_normal",
- "title": "正常",
- "sort": 1,
- "type": 1,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "goods_info_spot_normal_add",
- "title": "新增",
- "sort": 1,
- "type": 2,
- "rulekey": "client_deliverygoods_add",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "goods_info_spot_normal_modify",
- "title": "修改",
- "sort": 2,
- "type": 2,
- "rulekey": "client_deliverygoods_spot_modify",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "goods_info_spot_normal_disable",
- "title": "停用",
- "sort": 3,
- "type": 2,
- "rulekey": "client_deliverygoods_spot_disable",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "goods_info_spot_disable",
- "title": "停用",
- "sort": 2,
- "type": 1,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "goods_info_hedge",
- "title": "套保品种",
- "sort": 2,
- "type": 1,
- "rulekey": "client_deliverygoods_hedge",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "goods_info_hedge_normal",
- "title": "正常",
- "sort": 1,
- "type": 1,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "goods_info_hedge_normal_modify",
- "title": "修改",
- "sort": 2,
- "type": 2,
- "rulekey": "client_deliverygoods_hedge_modify",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "goods_info_hedge_disable",
- "title": "停用",
- "sort": 2,
- "type": 1,
- "rulekey": "client_deliverygoods_hedge_disable",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- }
- ]
- },
- {
- "code": "spot_contract",
- "title": "现货合同",
- "sort": 3,
- "type": 1,
- "rulekey": "client_spotcontract",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_contract_unsubmitted",
- "title": "未提交",
- "sort": 1,
- "type": 1,
- "rulekey": "client_spotcontract_unsubmit",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_contract_btn_add",
- "title": "新增",
- "sort": 1,
- "type": 2,
- "rulekey": "client_spotcontract_add",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_contract_btn_modify",
- "title": "重新提交",
- "sort": 2,
- "type": 2,
- "rulekey": "client_spotcontract_recommit",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "spot_contract_btn_delete",
- "title": "删除",
- "sort": 3,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "spot_contract_checkpending",
- "title": "待审核",
- "sort": 2,
- "type": 1,
- "rulekey": "client_spotcontract_unaduit",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "none_btn",
- "title": "按钮",
- "sort": 1,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "空按钮(只为了保证树状结构)",
- "children": [
- {
- "code": "spot_contract_btn_check",
- "title": "审核",
- "sort": 1,
- "type": 2,
- "rulekey": "client_spotcontract_check",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "spot_contract_btn_cancel",
- "title": "撤销",
- "sort": 2,
- "type": 2,
- "rulekey": "client_spotcontract_cancel",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "spot_contract_performance",
- "title": "履约中",
- "sort": 3,
- "type": 1,
- "rulekey": "client_spotcontract_agreement",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "none_btn",
- "title": "按钮",
- "sort": 1,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "空按钮(只为了保证树状结构)",
- "children": [
- {
- "code": "spot_contract_btn_finish",
- "title": "正常完结",
- "sort": 1,
- "type": 2,
- "rulekey": "client_spotcontract_finish",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "spot_contract_finished",
- "title": "已完成",
- "sort": 4,
- "type": 1,
- "rulekey": "client_spotcontract_completed",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "warehouse_info",
- "title": "仓库信息",
- "sort": 4,
- "type": 1,
- "rulekey": "client_warehouse",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "warehouse_info_normal",
- "title": "正常",
- "sort": 1,
- "type": 1,
- "rulekey": "client_warehouse_normal",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "warehouse_info_btn_add",
- "title": "新增",
- "sort": 1,
- "type": 2,
- "rulekey": "client_warehouse_add",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "warehouse_info_btn_modify",
- "title": "修改",
- "sort": 2,
- "type": 2,
- "rulekey": "client_warehouse_update",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "warehouse_info_btn_disable",
- "title": "停用",
- "sort": 3,
- "type": 2,
- "rulekey": "client_warehouse_stop",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "warehouse_info_disabled",
- "title": "停用",
- "sort": 2,
- "type": 1,
- "rulekey": "client_warehouse_stop",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "warehouse_info_btn_recover",
- "title": "恢复",
- "sort": 1,
- "type": 2,
- "rulekey": "client_warehouse_restore",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "account_info",
- "title": "账户管理",
- "sort": 4,
- "type": 1,
- "rulekey": "client_accountmanage",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "account_info_business",
- "title": "业务账户",
- "sort": 1,
- "type": 1,
- "rulekey": "client_accountmanage_business",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "account_info_business_btn_add",
- "title": "新增",
- "sort": 1,
- "type": 2,
- "rulekey": "client_accountmanage_business_add",
- "isshow": true,
- "remartk": "新增账户 - 业务员/跟单员",
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "account_info_business_btn_modify",
- "title": "修改",
- "sort": 2,
- "type": 2,
- "rulekey": "client_accountmanage_business_update",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "account_info_business_btn_reset",
- "title": "重置密码",
- "sort": 3,
- "type": 2,
- "rulekey": "client_accountmanage_business_resetpwd",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "account_info_business_btn_locked",
- "title": "锁定",
- "sort": 2,
- "type": 2,
- "rulekey": "client_accountmanage_business_lock",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "account_info_business_btn_unlocked",
- "title": "解锁",
- "sort": 2,
- "type": 2,
- "rulekey": "client_accountmanage_business_unlock",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "account_info_business_btn_cancel",
- "title": "注销",
- "sort": 2,
- "type": 2,
- "rulekey": "client_accountmanage_business_close",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "account_info_trade",
- "title": "交易账户",
- "sort": 2,
- "type": 1,
- "rulekey": "client_accountmanage_trade",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "account_info_trade_btn_add",
- "title": "新增",
- "sort": 1,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "remartk": "新增账户 - 新增交易用户",
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "account_info_trade_child_btn_add",
- "title": "新增",
- "sort": 1,
- "type": 2,
- "rulekey": "client_accountmanage_trade_add",
- "isshow": true,
- "remartk": "新增账户 - 新增交易员",
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "account_info_trade_btn_child_modify",
- "title": "修改",
- "sort": 1,
- "type": 2,
- "rulekey": "client_accountmanage_trade_update",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "account_info_trade_btn_child_reset",
- "title": "重置密码",
- "sort": 2,
- "type": 2,
- "rulekey": "client_accountmanage_trade_resetpwd",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "account_info_trade_btn_child_locked",
- "title": "锁定",
- "sort": 2,
- "type": 2,
- "rulekey": "client_accountmanage_trade_lock",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "account_info_trade_btn_child_unlocked",
- "title": "解锁",
- "sort": 2,
- "type": 2,
- "rulekey": "client_accountmanage_trade_unlock",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "account_info_trade_btn_child_logout",
- "title": "注销",
- "sort": 2,
- "type": 2,
- "rulekey": "client_accountmanage_trade_close",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "account_info_trade_btn_modify",
- "title": "修改",
- "sort": 2,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "remartk": "修改账户 - 修改交易用户",
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "account_info_manager",
- "title": "管理账户",
- "sort": 2,
- "type": 1,
- "rulekey": "client_accountmanage_manage",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "account_info_manager_btn_add",
- "title": "新增权限模板",
- "sort": 1,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "remartk": "管理账户 - 新增权限模板",
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "account_info_manager_btn_child_add",
- "title": "新增",
- "sort": 1,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "remartk": "管理账户 - 新增管理员",
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "account_info_manager_btn_modify",
- "title": "修改",
- "sort": 2,
- "type": 2,
- "rulekey": "client_accountmanage_update",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "account_info_manager_btn_reset",
- "title": "重置密码",
- "sort": 2,
- "type": 2,
- "rulekey": "client_accountmanage_resetpwd",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "account_info_manager_btn_locked",
- "title": "锁定",
- "sort": 2,
- "type": 2,
- "rulekey": "client_accountmanage_lock",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "account_info_manager_btn_unlocked",
- "title": "解锁",
- "sort": 2,
- "type": 2,
- "rulekey": "client_accountmanage_unlock",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "account_info_manager_btn_logout",
- "title": "注销",
- "sort": 2,
- "type": 2,
- "rulekey": "client_accountmanage_close",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "account_info_manager_btn_setting",
- "title": "权限设置",
- "sort": 1,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "account_info_futures",
- "title": "期货账户",
- "sort": 2,
- "type": 1,
- "rulekey": "client_accountmanage_ta",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "account_info_futures_btn_add",
- "title": "新增",
- "sort": 1,
- "type": 2,
- "rulekey": "client_accountmanage_ta_mainadd",
- "isshow": true,
- "remartk": "期货账户 - 新增期货账户",
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "account_info_futures_btn_child_add",
- "title": "新增",
- "sort": 1,
- "type": 2,
- "rulekey": "client_accountmanage_ta_subadd",
- "isshow": true,
- "remartk": "期货账户 - 新增期货子账户",
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "account_info_futures_btn_child_credit",
- "title": "授信",
- "sort": 1,
- "type": 2,
- "rulekey": "client_accountmanage_ta_subcredit",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "account_info_futures_btn_child_modify",
- "title": "修改",
- "sort": 2,
- "type": 2,
- "rulekey": "client_accountmanage_ta_subupdate",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "account_info_futures_btn_child_cancel",
- "title": "注销",
- "sort": 2,
- "type": 2,
- "rulekey": "client_accountmanage_ta_subclose",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "account_info_futures_btn_modify",
- "title": "修改",
- "sort": 2,
- "type": 2,
- "rulekey": "client_accountmanage_ta_mainupdate",
- "isshow": true,
- "remartk": "期货账户 - 修改期货子账户",
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "code": "business",
- "title": "业务",
- "sort": 3,
- "type": 1,
- "rulekey": "",
- "isshow": true,
- "children": [
- {
- "code": "purchase",
- "title": "采购",
- "sort": 1,
- "type": 1,
- "rulekey": "client_po",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "purchase_pending",
- "title": "待点价",
- "sort": 1,
- "type": 1,
- "rulekey": "client_po_unpoint",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "none_btn",
- "title": "按钮",
- "sort": 1,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "空按钮(只为了保证树状结构)",
- "children": [
- {
- "code": "purchase_pending_someprice",
- "title": "点价登记",
- "sort": 2,
- "type": 2,
- "rulekey": "client_po_point_register",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "purchase_performance",
- "title": "履约交收",
- "sort": 2,
- "type": 1,
- "rulekey": "client_po_settle",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "none_btn",
- "title": "按钮",
- "sort": 1,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "空按钮(只为了保证树状结构)",
- "children": [
- {
- "code": "purchase_pending_settlement",
- "title": "交收登记",
- "sort": 2,
- "type": 2,
- "rulekey": "client_po_settle_register",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "purchase_pending_funds",
- "title": "款项登记",
- "sort": 2,
- "type": 2,
- "rulekey": "client_po_fund_register",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "purchase_pending_invoice",
- "title": "发票登记",
- "sort": 3,
- "type": 2,
- "rulekey": "client_po_invoice_register",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "purchase_pending_storage",
- "title": "入库登记",
- "sort": 4,
- "type": 2,
- "rulekey": "client_po_instock_register",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "purchase_all",
- "title": "全部",
- "sort": 3,
- "type": 1,
- "rulekey": "client_po_all",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "sell",
- "title": "销售",
- "sort": 2,
- "type": 1,
- "rulekey": "client_so",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "sell_pending",
- "title": "待点价",
- "sort": 1,
- "type": 1,
- "rulekey": "client_so_unpoint",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "none_btn",
- "title": "按钮",
- "sort": 1,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "空按钮(只为了保证树状结构)",
- "children": [
- {
- "code": "sell_pending_someprice",
- "title": "点价登记",
- "sort": 2,
- "type": 2,
- "rulekey": "client_so_point_register",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "sell_performance",
- "title": "履约交收",
- "sort": 2,
- "type": 1,
- "rulekey": "client_so_settle",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "none_btn",
- "title": "按钮",
- "sort": 1,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "空按钮(只为了保证树状结构)",
- "children": [
- {
- "code": "sell_pending_settlement",
- "title": "交收登记",
- "sort": 2,
- "type": 2,
- "rulekey": "client_so_settle_register",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "sell_pending_funds",
- "title": "款项登记",
- "sort": 2,
- "type": 2,
- "rulekey": "client_so_fund_register",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "sell_pending_invoice",
- "title": "发票登记",
- "sort": 3,
- "type": 2,
- "rulekey": "client_so_invoice_register",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "sell_pending_storage",
- "title": "出库登记",
- "sort": 4,
- "type": 2,
- "rulekey": "client_so_outstock_register",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "sell_all",
- "title": "全部",
- "sort": 3,
- "type": 1,
- "rulekey": "client_so_all",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "exposure",
- "title": "敞口",
- "sort": 3,
- "type": 1,
- "rulekey": "client_exposure",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "exposure_realtime",
- "title": "实时敞口",
- "sort": 1,
- "type": 1,
- "rulekey": "client_exposure_real",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "exposure_realtime_spot_details",
- "title": "现货明细",
- "sort": 1,
- "type": 3,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "exposure_realtime_futures_details",
- "title": "期货明细",
- "sort": 1,
- "type": 3,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "exposure_spot",
- "title": "现货头寸",
- "sort": 2,
- "type": 1,
- "rulekey": "client_exposure_spot",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "exposure_spot_details",
- "title": "现货明细",
- "sort": 1,
- "type": 3,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "exposure_futures",
- "title": "期货头寸",
- "sort": 3,
- "type": 1,
- "rulekey": "client_exposure_future",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "exposure_futures_details",
- "title": "期货明细",
- "sort": 1,
- "type": 3,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "exposure_history",
- "title": "历史敞口",
- "sort": 4,
- "type": 1,
- "rulekey": "client_exposure_his",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "plan",
- "title": "计划",
- "sort": 4,
- "type": 1,
- "rulekey": "client_hedgeplan",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "plan_uncommitted",
- "title": "未提交",
- "sort": 1,
- "type": 1,
- "rulekey": "client_hedgeplan_unsubmit",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "plan_btn_add",
- "title": "新增",
- "sort": 1,
- "type": 2,
- "rulekey": "client_hedgeplan_add",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "plan_uncommitted_modify",
- "title": "修改",
- "sort": 3,
- "type": 2,
- "rulekey": "client_hedgeplan_update",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "plan_uncommitted_delete",
- "title": "删除",
- "sort": 4,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "plan_audit",
- "title": "待审核",
- "sort": 2,
- "type": 1,
- "rulekey": "client_hedgeplan_unaduit",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "none_btn",
- "title": "按钮",
- "sort": 1,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "空按钮(只为了保证树状结构)",
- "children": [
- {
- "code": "plan_audit_audit",
- "title": "审核",
- "sort": 1,
- "type": 2,
- "rulekey": "client_hedgeplan_check",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "plan_audit_cancel",
- "title": "撤销",
- "sort": 3,
- "type": 2,
- "rulekey": "client_hedgeplan_cancel",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "plan_running",
- "title": "执行中",
- "sort": 3,
- "type": 1,
- "rulekey": "client_hedgeplan_inprogress",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "manage",
- "title": "管理",
- "sort": 4,
- "type": 1,
- "rulekey": "",
- "isshow": true,
- "children": [
- {
- "code": "business_review",
- "title": "业务审核",
- "sort": 1,
- "type": 1,
- "rulekey": "client_business",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "business_review_someprice",
- "title": "点价",
- "sort": 1,
- "type": 1,
- "rulekey": "client_business_point",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "business_review_someprice_audit",
- "title": "审核",
- "sort": 1,
- "type": 2,
- "rulekey": "client_business_point_check",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "business_review_someprice_cancel",
- "title": "撤销",
- "sort": 2,
- "type": 2,
- "rulekey": "client_business_point_cancel",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "business_review_settlement",
- "title": "交收",
- "sort": 2,
- "type": 1,
- "rulekey": "client_business_settle",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "business_review_settlement_audit",
- "title": "审核",
- "sort": 1,
- "type": 2,
- "rulekey": "client_business_settle_check",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "business_review_settlement_cancel",
- "title": "撤销",
- "sort": 2,
- "type": 2,
- "rulekey": "client_business_settle_cancel",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "finance_review",
- "title": "财务审核",
- "sort": 2,
- "type": 1,
- "rulekey": "client_finance",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "finance_review_funds",
- "title": "款项",
- "sort": 1,
- "type": 1,
- "rulekey": "client_finance_fund",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "finance_review_funds_audit",
- "title": "审核",
- "sort": 1,
- "type": 2,
- "rulekey": "client_finance_fund_check",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "finance_review_funds_cancel",
- "title": "撤销",
- "sort": 2,
- "type": 2,
- "rulekey": "client_finance_fund_cancel",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "finance_review_invoice",
- "title": "发票",
- "sort": 2,
- "type": 1,
- "rulekey": "client_finance_invoice",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "finance_review_invoice_audit",
- "title": "审核",
- "sort": 1,
- "type": 2,
- "rulekey": "client_finance_invoice_check",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "finance_review_invoice_cancel",
- "title": "撤销",
- "sort": 2,
- "type": 2,
- "rulekey": "client_finance_invoice_cancel",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "inventory_review",
- "title": "库存审核",
- "sort": 3,
- "type": 1,
- "rulekey": "client_stock_aduit",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "inventory_review_checkin",
- "title": "入库",
- "sort": 1,
- "type": 1,
- "rulekey": "client_stock_in",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "inventory_review_checkin_audit",
- "title": "审核",
- "sort": 1,
- "type": 2,
- "rulekey": "client_stock_in_aduit",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "inventory_review_checkin_cancel",
- "title": "撤销",
- "sort": 2,
- "type": 2,
- "rulekey": "client_stock_aduit_cancel",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "inventory_review_checkout",
- "title": "出库",
- "sort": 2,
- "type": 1,
- "rulekey": "client_stock_out",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "inventory_review_checkout_audit",
- "title": "审核",
- "sort": 1,
- "type": 2,
- "rulekey": "client_stock_out_aduit",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "inventory_review_checkout_cancel",
- "title": "撤销",
- "sort": 2,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "inventory_manager",
- "title": "库存管理",
- "sort": 3,
- "type": 1,
- "rulekey": "client_stock_manage",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "inventory_manager_tab",
- "title": "库存管理",
- "sort": 3,
- "type": 1,
- "rulekey": "client_stock_manage",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "inventory_manager_inbound_details",
- "title": "入库明细",
- "sort": 1,
- "type": 3,
- "rulekey": "client_stock_manage_in_detail",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "inventory_manager_outbound_details",
- "title": "出库明细",
- "sort": 2,
- "type": 3,
- "rulekey": "client_stock_manage_out_detail",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "code": "search",
- "title": "查询",
- "sort": 5,
- "type": 1,
- "rulekey": "",
- "isshow": true,
- "children": [
- {
- "code": "inventory",
- "title": "库存查询",
- "sort": 1,
- "type": 1,
- "rulekey": "client_stock_manage",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "inventory_current",
- "title": "当前库存",
- "sort": 1,
- "type": 1,
- "rulekey": "client_stock_manage_current",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "inventory_current_add",
- "title": "新增",
- "sort": 1,
- "type": 2,
- "rulekey": "client_hedgeplan_check",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "inventory_current_detail_storehouse",
- "title": "仓库明细",
- "sort": 1,
- "type": 2,
- "rulekey": "client_hedgeplan_check",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "inventory_current_detail_storesave",
- "title": "库存明细",
- "sort": 1,
- "type": 2,
- "rulekey": "client_hedgeplan_check",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "inventory_applyrecord",
- "title": "申请记录",
- "sort": 2,
- "type": 1,
- "rulekey": "client_stock_manage_applylog",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "outaccount_status",
- "title": "账户状态",
- "sort": 2,
- "type": 1,
- "rulekey": "",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "outaccount_status_status",
- "title": "账户状态",
- "sort": 1,
- "type": 1,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "search_document_records",
- "title": "单据记录",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_document_record",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "search_spot_warrant",
- "title": "现货仓单",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_document_record_spot_warrant",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "search_spot_warrant_warehouse_receipt_details",
- "title": "仓单明细",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_document_record_spot_warrant_warehouse_receipt_details",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "search_spot_warrant_listing_record",
- "title": "挂牌记录",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_document_record_spot_warrant_listing_record",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "search_spot_warrant_transaction_record",
- "title": "成交记录",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_document_record_spot_warrant_transaction_record",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "search_spot_warrant_protocol_specified_record",
- "title": "协议指定记录",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_document_record_spot_warrant_protocol_specified_record",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "search_pre_sale_warehouse_receipt",
- "title": "预售仓单",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_document_record_pre_sale_warehouse_receipt",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "search_pre_sale_warehouse_receipt_order_summary",
- "title": "订单汇总",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_document_record_pre_sale_warehouse_receipt_order_summary",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "search_pre_sale_warehouse_receipt_commission_record",
- "title": "委托记录",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_document_record_pre_sale_warehouse_receipt_commission_record",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "search_pre_sale_warehouse_receipt_transaction_record",
- "title": "成交记录",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_document_record_pre_sale_warehouse_receipt_transaction_record",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "search_pre_sale_warehouse_receipt_protocol_specified_record",
- "title": "协议指定记录",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_document_record_pre_sale_warehouse_receipt_protocol_specified_record",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "search_commodity_contract",
- "title": "商品合约",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_document_record_commodity_contract",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "search_document_records_contract_summary",
- "title": "合约汇总",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_document_record_commodity_contract_contract_summary",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "search_document_records_commission_record",
- "title": "委托记录",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_document_record_commodity_contract_commission_record",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "search_document_records_transaction_record",
- "title": "成交记录",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_document_record_commodity_contract_transaction_record",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "search_document_records_delivery_record",
- "title": "交收记录",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_document_record_commodity_contract_delivery_record",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- }
- ]
- },
- {
- "code": "search_capital_flow",
- "title": "资金流水",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_capital_flow",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "search_capital_flow_tab",
- "title": "资金流水",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_capital_flow_tab",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "search_financing_inquiry",
- "title": "融资查询",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_financing_inquiry",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "search_financing_inquiry_apply_order",
- "title": "申请单",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_financing_inquiry_requisition",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "search_financing_inquiry_contract",
- "title": "合同",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_financing_inquiry_contract",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "search_performance_query",
- "title": "履约查询",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_performance_query",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "search_performance_query_buy_performance",
- "title": "买履约",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_performance_query_buy_performance",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "search_performance_query_sell_performance",
- "title": "卖履约",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_performance_query_sell_performance",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "search_pickup_query",
- "title": "提货查询",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_pickup_query",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "search_pickup_query_tab",
- "title": "提货查询",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_pickup_query_tab",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "search_login_log",
- "title": "登录日志",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_inquire_login_log",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "report",
- "title": "报表",
- "sort": 6,
- "type": 1,
- "rulekey": "",
- "isshow": true,
- "children": [
- {
- "code": "finance_report",
- "title": "财务报表",
- "sort": 1,
- "type": 1,
- "rulekey": "client_report_finance",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "finance_report_finance",
- "title": "财务报表",
- "sort": 1,
- "type": 1,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "finance_report_finance_category_breakdown",
- "title": "品类明细",
- "sort": 1,
- "type": 3,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "finance_report_finance_brand_details",
- "title": "品牌明细",
- "sort": 1,
- "type": 3,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "exposure_report",
- "title": "敞口报表",
- "sort": 2,
- "type": 1,
- "rulekey": "client_report_exposure",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "exposure_report_exposure",
- "title": "敞口报表",
- "sort": 1,
- "type": 1,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "exposure_report_exposure_contract_changes",
- "title": "现货合同变动量明细",
- "sort": 1,
- "type": 3,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "exposure_report_exposure_hedging_plan",
- "title": "套保计划变动量明细",
- "sort": 1,
- "type": 3,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "exposure_report_exposure_futures_changes",
- "title": "期货变动量明细",
- "sort": 1,
- "type": 3,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "exposure_report_exposure_parameter_adjustment_changes",
- "title": "参数调整变动量明细",
- "sort": 1,
- "type": 3,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "spot_report",
- "title": "现货报表",
- "sort": 3,
- "type": 1,
- "rulekey": "client_report_spot",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_report_spot",
- "title": "现货报表",
- "sort": 1,
- "type": 1,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "spot_report_spot_detail",
- "title": "现货明细",
- "sort": 1,
- "type": 3,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "inventory_report",
- "title": "库存报表",
- "sort": 4,
- "type": 1,
- "rulekey": "client_report_stock",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "inventory_report_inventory_category",
- "title": "库存报表(品类)",
- "sort": 4,
- "type": 1,
- "rulekey": "client_report_wrstandstock",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "inventory_report_inventory_category_brand_detail",
- "title": "品牌明细",
- "sort": 4,
- "type": 3,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "inventory_report_inventory_category_warehouse_detail",
- "title": "仓库明细",
- "sort": 4,
- "type": 3,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "inventory_report_warehouse",
- "title": "库存报表(仓库)",
- "sort": 4,
- "type": 1,
- "rulekey": "client_report_warehousestock",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "inventory_report_warehouse_inventory_detail",
- "title": "库存明细",
- "sort": 4,
- "type": 3,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "sum_pl_report",
- "title": "汇总损益报表",
- "sort": 3,
- "type": 1,
- "rulekey": "client_report_sumprofit",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "sum_pl_report_sum_pl",
- "title": "汇总损益报表",
- "sort": 1,
- "type": 1,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "sum_pl_report_profit_and_loss_details",
- "title": "损益明细",
- "sort": 4,
- "type": 3,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "future_report",
- "title": "期货报表",
- "sort": 3,
- "type": 1,
- "rulekey": "client_report_futures",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "future_report_future",
- "title": "期货报表",
- "sort": 1,
- "type": 1,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "future_report_future_detail",
- "title": "账户明细",
- "sort": 4,
- "type": 3,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "code": "platinum",
- "title": "铂金宝",
- "sort": 6,
- "type": 1,
- "rulekey": "",
- "isshow": true,
- "children": [
- {
- "code": "platinum_customer_info",
- "title": "客户资料",
- "sort": 2,
- "type": 1,
- "rulekey": "client_pc_web_qhj_khzl",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_custom_info_normal",
- "title": "正常",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_qhj_khzl_noraml",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_custom_info_add",
- "title": "新增",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_khzl_noraml_add",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_custom_info_normal_modify",
- "title": "修改",
- "sort": 2,
- "type": 2,
- "rulekey": "client_pc_web_qhj_khzl_noraml_modify",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_custom_info_normal_stop",
- "title": "停用",
- "sort": 3,
- "type": 2,
- "rulekey": "client_pc_web_qhj_khzl_noraml_stop",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "platinum_customer_info_unsubmit",
- "title": "待审核",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_qhj_khzl_waiting",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_custom_info_add",
- "title": "新增",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_khzl_waiting_add",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_customer_info_unsubmit_check",
- "title": "审核",
- "sort": 2,
- "type": 2,
- "rulekey": "client_pc_web_qhj_khzl_waiting_check",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "platinum_customer_info_stop",
- "title": "停用",
- "sort": 1,
- "type": 1,
- "rulekey": "client_pc_web_qhj_khzl_stop",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_custom_info_add",
- "title": "新增",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_khzl_stop_add",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_customer_info_stop_resume",
- "title": "恢复",
- "sort": 2,
- "type": 2,
- "rulekey": "client_pc_web_qhj_khzl_stop_resume",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_customer_info_stop_delete",
- "title": "删除",
- "sort": 3,
- "type": 2,
- "rulekey": "client_pc_web_qhj_khzl_stop_delete",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "code": "platinum_pick_goods_management",
- "title": "提货商品管理",
- "sort": 3,
- "type": 1,
- "rulekey": "",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_pick_goods_management_tab",
- "title": "提货商品管理",
- "sort": 3,
- "type": 1,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_pick_goods_management_add",
- "title": "新增",
- "sort": 3,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_pick_goods_management_modify",
- "title": "修改",
- "sort": 1,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_pick_goods_management_logout",
- "title": "注销",
- "sort": 1,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "code": "platinum_pick_query",
- "title": "提货查询",
- "sort": 3,
- "type": 1,
- "rulekey": "client_pc_web_qhj_thcx",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_pick_query_tab",
- "title": "提货查询",
- "sort": 3,
- "type": 1,
- "rulekey": "client_pc_web_qhj_thcx",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_pick_query_complete_stocking",
- "title": "完成备货",
- "sort": 3,
- "type": 2,
- "rulekey": "client_pc_web_qhj_thcx_complete_stocking",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "platinum_pick_query_upload_logistics",
- "title": "上传物流",
- "sort": 3,
- "type": 2,
- "rulekey": "client_pc_web_qhj_thcx_upload_logistics",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "platinum_pick_query_receipt",
- "title": "确认收货",
- "sort": 3,
- "type": 2,
- "rulekey": "client_pc_web_qhj_thcx_receipt",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "platinum_pick_query_confirm_pickup",
- "title": "确认取货",
- "sort": 3,
- "type": 2,
- "rulekey": "client_pc_web_qhj_thcx_pickup",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- }
- ]
- },
- {
- "code": "platinum_recharge_withdrawal_review",
- "title": "充值和提现审核",
- "sort": 3,
- "type": 1,
- "rulekey": "client_pc_web_qhj_cztx",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_recharge_review_tab",
- "title": "充值审核",
- "sort": 3,
- "type": 1,
- "rulekey": "client_pc_web_qhj_cztx_recharge_tab",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_recharge_review_confirm_payment",
- "title": "确认收款",
- "sort": 3,
- "type": 2,
- "rulekey": "client_pc_web_qhj_cztx_recharge_tab_confirm_payment",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "platinum_recharge_review_refuse",
- "title": "审核拒绝",
- "sort": 3,
- "type": 2,
- "rulekey": "client_pc_web_qhj_cztx_recharge_tab_review_refuse",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "platinum_withdrawal_review_tab",
- "title": "提现审核",
- "sort": 3,
- "type": 1,
- "rulekey": "client_pc_web_qhj_cztx_withdrawal_tab",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_withdrawal_review_confirm_withdrawal",
- "title": "确认提现",
- "sort": 3,
- "type": 2,
- "rulekey": "client_pc_web_qhj_cztx_withdrawal_tab_confirm_withdrawal",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "platinum_withdrawal_review_refuse",
- "title": "审核拒绝",
- "sort": 3,
- "type": 2,
- "rulekey": "client_pc_web_qhj_cztx_withdrawal_tab_review_refuse",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- }
- ]
- },
- {
- "code": "platinum_fixed_investment_price_query",
- "title": "定投价查询",
- "sort": 3,
- "type": 1,
- "rulekey": "client_pc_web_qhj_dtj",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_fixed_investment_price_query_tab",
- "title": "定投价查询",
- "sort": 3,
- "type": 1,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "platinum_fixed_investment_query",
- "title": "定投查询",
- "sort": 3,
- "type": 1,
- "rulekey": "client_pc_web_qhj_dt",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_fixed_investment_plan_query",
- "title": "定投计划查询",
- "sort": 3,
- "type": 1,
- "rulekey": "client_pc_web_qhj_dt_plan",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "platinum_fixed_investment_flow_query",
- "title": "定投流水查询",
- "sort": 3,
- "type": 1,
- "rulekey": "client_pc_web_qhj_dt_log",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "platinum_document_query",
- "title": "单据查询",
- "sort": 3,
- "type": 1,
- "rulekey": "client_pc_web_qhj_dj",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_document_query_position",
- "title": "持仓",
- "sort": 3,
- "type": 1,
- "rulekey": "client_pc_web_qhj_dj_position",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "platinum_document_query_order",
- "title": "委托单",
- "sort": 3,
- "type": 1,
- "rulekey": "client_pc_web_qhj_dj_order",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "platinum_document_query_waiting",
- "title": "待付单",
- "sort": 3,
- "type": 1,
- "rulekey": "client_pc_web_qhj_dj_waiting",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- },
- {
- "code": "platinum_document_query_success",
- "title": "成交单",
- "sort": 3,
- "type": 1,
- "rulekey": "client_pc_web_qhj_dj_success",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- ]
- }
- ]
- },
- {
- "code": "platinum_financing_information",
- "title": "融资信息",
- "sort": 3,
- "type": 1,
- "rulekey": "client_pc_web_qhj_rz",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_financing_information_tab",
- "title": "融资信息",
- "sort": 3,
- "type": 1,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_financing_information_detail",
- "title": "融资明细",
- "sort": 3,
- "type": 2,
- "rulekey": "client_pc_web_qhj_rz_detail",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "platinum_contract_goods",
- "title": "合约商品",
- "sort": 3,
- "type": 1,
- "rulekey": "",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_contract_goods_tab",
- "title": "合约商品",
- "sort": 3,
- "type": 1,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_contract_goods_add",
- "title": "新增",
- "sort": 1,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_contract_goods_modify",
- "title": "修改",
- "sort": 2,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_contract_goods_logout",
- "title": "注销",
- "sort": 3,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "code": "platinum_contract_commodity_suspension",
- "title": "合约商品停牌",
- "sort": 3,
- "type": 1,
- "rulekey": "",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_contract_commodity_suspension_tab",
- "title": "合约商品停牌",
- "sort": 3,
- "type": 1,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_contract_commodity_suspension_add",
- "title": "新增",
- "sort": 1,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_contract_commodity_suspension_modify",
- "title": "修改",
- "sort": 2,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "code": "platinum_agents_and_stores",
- "title": "代理和门店",
- "sort": 2,
- "type": 1,
- "rulekey": "",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_agents_and_stores_tab",
- "title": "代理和门店",
- "sort": 2,
- "type": 1,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_agents_and_stores_add",
- "title": "新增",
- "sort": 1,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_agents_and_stores_modify",
- "title": "修改",
- "sort": 1,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_agents_and_stores_logout",
- "title": "注销",
- "sort": 1,
- "type": 2,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "platinum_spot_and_price",
- "title": "现货市价",
- "sort": 2,
- "type": 1,
- "rulekey": "client_spotmarketprice",
- "isshow": false,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_spot_and_price_tab",
- "title": "现货市价",
- "sort": 2,
- "type": 1,
- "rulekey": "",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_spot_and_price_modify",
- "title": "修改",
- "sort": 1,
- "type": 2,
- "rulekey": "client_spotmarketprice_update",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "platinum_agreement",
- "title": "协议管理",
- "sort": 2,
- "type": 1,
- "rulekey": "client_pc_web_qhj_xygl",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_agreement_tab",
- "title": "协议管理",
- "sort": 2,
- "type": 1,
- "rulekey": "client_pc_web_qhj_xygl_tab",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_agreement_add",
- "title": "新增",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_xygl_add",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_agreement_modify",
- "title": "修改",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_xygl_modify",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_agreement_stop",
- "title": "停用",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_xygl_stop",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_agreement_resume",
- "title": "恢复",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_xygl_resume",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_agreement_delete",
- "title": "注销",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_xygl_delete",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "code": "platinum_capital_flow",
- "title": "积分流水",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_zjls",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_capital_flow_tab",
- "title": "积分流水",
- "sort": 1,
- "type": 5,
- "rulekey": "client_pc_web_qhj_zjls_tab",
- "isshow": true,
- "url": "/qhj/scorelog/init",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "platinum_promotion_report",
- "title": "推广报表",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_tgbb",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_promotion_report_tab",
- "title": "推广报表",
- "sort": 1,
- "type": 5,
- "rulekey": "client_pc_web_qhj_tgbb_tab",
- "isshow": true,
- "url": "/reckon/brokerreward/init",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "platinum_broker_management",
- "title": "经纪人管理",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_jjrgl",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_broker_management_normal_tab",
- "title": "正常",
- "sort": 1,
- "type": 5,
- "rulekey": "client_pc_web_qhj_jjrgl_normal_tab",
- "isshow": true,
- "url": "/qhj/brokerapply/init",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_broker_management_waiting_tab",
- "title": "待审核",
- "sort": 1,
- "type": 5,
- "rulekey": "client_pc_web_qhj_jjrgl_waiting_tab",
- "isshow": true,
- "url": "/qhj/brokerapply/init",
- "remark": "",
- "children": [
- {
- "code": "platinum_broker_management_check",
- "title": "审核",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_jjrgl_check",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "platinum_broker_management_refuse_tab",
- "title": "审核拒绝",
- "sort": 1,
- "type": 5,
- "rulekey": "client_pc_web_qhj_jjrgl_resume",
- "isshow": true,
- "url": "/qhj/brokerapply/init",
- "remark": "",
- "children": [
- {
- "code": "platinum_broker_management_resume",
- "title": "恢复",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_jjrgl_resume",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "platinum_signing_settings",
- "title": "签单设置",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_qdsz",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_signing_settings_tab",
- "title": "签单设置",
- "sort": 1,
- "type": 5,
- "rulekey": "client_pc_web_qhj_qdsz_tab",
- "isshow": true,
- "url": "/qhj/setting/init",
- "remark": "",
- "children": [
- {
- "code": "platinum_signing_settings_add",
- "title": "新增",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_qdsz_tab_add",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_signing_settings_revise",
- "title": "修改",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_qdsz_tab_revise",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_signing_settings_delete",
- "title": "删除",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_qdsz_tab_delete",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_signing_settings_associated_spot",
- "title": "关联现货",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_qdsz_tab_associated_spot",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "platinum_team_settings",
- "title": "团队设置",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_tdsz",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_team_settings_tab",
- "title": "团队设置",
- "sort": 1,
- "type": 5,
- "rulekey": "client_pc_web_qhj_tdsz_tab",
- "isshow": true,
- "url": "/qhj/teamsetting/init",
- "remark": "",
- "children": [
- {
- "code": "platinum_team_settings_add",
- "title": "新增",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_tdsz_tab_add",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_team_settings_revise",
- "title": "修改",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_tdsz_tab_revise",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_team_settings_delete",
- "title": "删除",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_tdsz_tab_delete",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_team_settings_monthly_goal",
- "title": "月目标",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_tdsz_tab_monthly_goal",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "platinum_asset_management_signing",
- "title": "资管签订",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_zgqd",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_asset_management_signing_unsubmitted",
- "title": "未提交",
- "sort": 1,
- "type": 5,
- "rulekey": "client_pc_web_qhj_tdsz_unsubmit_tab",
- "isshow": true,
- "url": "/qhj/qhjsigncontract/zginit",
- "remark": "",
- "children": [
- {
- "code": "platinum_asset_management_signing_add",
- "title": "新增",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_tdsz_unsubmit_tab_add",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_asset_management_signing_submit",
- "title": "提交",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_tdsz_unsubmit_tab_submit",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_asset_management_signing_revise",
- "title": "修改",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_tdsz_unsubmit_tab_revise",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "platinum_asset_management_signing_pending_review",
- "title": "待审核",
- "sort": 1,
- "type": 5,
- "rulekey": "client_pc_web_qhj_tdsz_pending_review_tab",
- "isshow": true,
- "url": "/qhj/qhjsigncontract/zginit",
- "remark": "",
- "children": [
- {
- "code": "platinum_asset_management_signing_pending_review_check",
- "title": "审核",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_tdsz_pending_review_tab_check",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "platinum_asset_management_signing_normal",
- "title": "正常",
- "sort": 1,
- "type": 5,
- "rulekey": "client_pc_web_qhj_tdsz_normal_tab",
- "isshow": true,
- "url": "/qhj/qhjsigncontract/zginit",
- "remark": "",
- "children": [
- {
- "code": "platinum_asset_management_signing_normal_unexpired_renewal",
- "title": "未到期续签",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_tdsz_normal_tab_unexpired_renewal",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_asset_management_signing_normal_expiry_renewal",
- "title": "到期续签",
- "sort": 1,
- "type": 2,
- "rulekey": "cclient_pc_web_qhj_tdsz_normal_tab_expiry_renewal",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "platinum_asset_management_signing_finish",
- "title": "已完成",
- "sort": 1,
- "type": 5,
- "rulekey": "client_pc_web_qhj_tdsz_finish_tab",
- "isshow": true,
- "url": "/qhj/qhjsigncontract/zginit",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_asset_management_signing_all",
- "title": "全部",
- "sort": 1,
- "type": 5,
- "rulekey": "client_pc_web_qhj_tdsz_all_tab",
- "isshow": true,
- "url": "/qhj/qhjsigncontract/zginit",
- "remark": "",
- "children": [
- {
- "code": "platinum_asset_management_signing_all_export",
- "title": "导出",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_tdsz_all_tab_export",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_asset_management_signing_all_modify_basic_way",
- "title": "修改基本方式",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_tdsz_all_tab_modify_basic_way",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_asset_management_signing_all_modify_payment",
- "title": "修改付款方式",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_tdsz_all_tab_modify_payment_method",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- },
- {
- "code": "platinum_precious_metal_signing",
- "title": "贵金属签单",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_gjsqd",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "code": "platinum_precious_metal_signing_unsubmitted",
- "title": "未提交",
- "sort": 1,
- "type": 5,
- "rulekey": "client_pc_web_qhj_gjsqd_unsubmit_tab",
- "isshow": true,
- "url": "/qhj/qhjsigncontract/gjsinit",
- "remark": "",
- "children": [
- {
- "code": "platinum_precious_metal_signing_unsubmitted_add",
- "title": "新增",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_gjsqd_unsubmit_tab_add",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_precious_metal_signing_unsubmitted_submit",
- "title": "提交",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_gjsqd_unsubmit_tab_submit",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_precious_metal_signing_unsubmitted_modify",
- "title": "修改",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_gjsqd_unsubmit_tab_revise",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "platinum_precious_metal_signing_pending_review",
- "title": "待审核",
- "sort": 1,
- "type": 5,
- "rulekey": "client_pc_web_qhj_gjsqd_waiting_check_tab",
- "isshow": true,
- "url": "/qhj/qhjsigncontract/gjsinit",
- "remark": "",
- "children": [
- {
- "code": "platinum_precious_metal_signing_pending_review_check",
- "title": "审核",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_gjsqd_waiting_check_tab_check",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "platinum_precious_metal_signing_repurchase_pending_review",
- "title": "回购待审核",
- "sort": 1,
- "type": 5,
- "rulekey": "client_pc_web_qhj_gjsqd_repurchase_pending_review_tab",
- "isshow": true,
- "url": "/qhj/qhjsigncontract/gjsinit",
- "remark": "",
- "children": [
- {
- "code": "platinum_precious_metal_signing_repurchase_pending_review_repurchase_review",
- "title": "回购审核",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_gjsqd_repurchase_pending_review_tab_repurchase_review",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "platinum_precious_metal_signing_normal",
- "title": "正常",
- "sort": 1,
- "type": 5,
- "rulekey": "client_pc_web_qhj_gjsqd_normal_tab",
- "isshow": true,
- "url": "/qhj/qhjsigncontract/gjsinit",
- "remark": "",
- "children": [
- {
- "code": "platinum_precious_metal_signing_normal_payment_confirmation",
- "title": "付款确认",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_gjsqd_normal_tab_payment_confirmation",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_precious_metal_signing_normal_repurchase_maturity",
- "title": "到期回购",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_gjsqd_normal_tab_repurchase_maturity",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_precious_metal_signing_normal_renew_contract",
- "title": "续签合同",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_gjsqd_normal_tab_renew_contract",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_precious_metal_signing_normal_not_repurchased_after_maturity",
- "title": "到期未回购",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_gjsqd_normal_tab_not_repurchased_after_maturity",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_precious_metal_signing_normal_chargeback",
- "title": "退单",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_gjsqd_normal_tab_chargeback",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- },
- {
- "code": "platinum_precious_metal_signing_success",
- "title": "已完成",
- "sort": 1,
- "type": 5,
- "rulekey": "client_pc_web_qhj_gjsqd_success_tab",
- "isshow": true,
- "url": "/qhj/qhjsigncontract/gjsinit",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_precious_metal_signing_refunded",
- "title": "已退单",
- "sort": 1,
- "type": 5,
- "rulekey": "client_pc_web_qhj_gjsqd_refunded_tab",
- "isshow": true,
- "url": "/qhj/qhjsigncontract/gjsinit",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_precious_metal_signing_all",
- "title": "全部",
- "sort": 1,
- "type": 5,
- "rulekey": "client_pc_web_qhj_gjsqd_all_tab",
- "isshow": true,
- "url": "/qhj/qhjsigncontract/gjsinit",
- "remark": "",
- "children": [
- {
- "code": "platinum_precious_metal_signing_all_export",
- "title": "导出",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_gjsqd_all_tab_export",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_precious_metal_signing_all_modify_the_basic_way",
- "title": "修改基本方式",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_gjsqd_all_tab_modify_basic_way",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- },
- {
- "code": "platinum_precious_metal_signing_all_modify_payment_method",
- "title": "修改付款方式",
- "sort": 1,
- "type": 2,
- "rulekey": "client_pc_web_qhj_gjsqd_all_tab_modify_payment_method",
- "isshow": true,
- "url": "",
- "remark": "",
- "children": []
- }
- ]
- }
- ]
- }
- ]
- }
- ]
|