| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362 |
- [
- {
- "title": "底部单据菜单",
- "rulekey": "client_pc_web_order_bottom",
- "code": "bottom",
- "sort": 1,
- "isshow": true,
- "component": "layout/index.vue",
- "path": "",
- "children": [
- {
- "title": "期货订单",
- "rulekey": "client_pc_web_qiyefengguan_futures_information",
- "code": "futures_information",
- "sort": 1,
- "isshow": true,
- "component": "views/order/futures_information/index.vue",
- "path": "",
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "持仓",
- "rulekey": "client_pc_web_qiyefengguan_futures_information_position",
- "code": "futures_information_position",
- "sort": 1,
- "isshow": true,
- "component": "components/futures_information_position/index.vue",
- "path": "",
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "平仓",
- "rulekey": "client_pc_web_qiyefengguan_futures_information_position_close",
- "code": "close",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "委托",
- "rulekey": "client_pc_web_qiyefengguan_futures_information_entrust",
- "code": "futures_information_entrust",
- "sort": 2,
- "isshow": true,
- "component": "components/futures_information_entrust/index.vue",
- "path": "",
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "撤单",
- "rulekey": "client_pc_web_qiyefengguan_futures_information_entrust_cancel",
- "code": "cancel",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "成交",
- "rulekey": "client_pc_web_qiyefengguan_futures_information_success",
- "code": "futures_information_success",
- "sort": 3,
- "isshow": true,
- "component": "components/futures_information_success/index.vue",
- "path": "",
- "url": "",
- "remark": "",
- "auth": []
- }
- ]
- },
- {
- "title": "资金信息",
- "rulekey": "client_pc_web_qiyefengguan_funding_information",
- "code": "funding_information",
- "sort": 2,
- "isshow": true,
- "component": "views/order/funding_information/index.vue",
- "path": "",
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "资金汇总",
- "rulekey": "client_pc_web_qiyefengguan_funding_information_summary",
- "code": "funding_information_summary",
- "sort": 1,
- "isshow": true,
- "component": "components/funding_information_funding_summary/index.vue",
- "path": "",
- "url": "",
- "remark": "",
- "auth": []
- },
- {
- "title": "资金流水",
- "rulekey": "client_pc_web_qiyefengguan_funding_information_log",
- "code": "funding_information_log",
- "sort": 2,
- "isshow": true,
- "component": "components/funding_information_funding_log/index.vue",
- "path": "",
- "url": "",
- "remark": "",
- "auth": []
- }
- ]
- }
- ]
- },
- {
- "title": "市场",
- "rulekey": "client_pc_web_common_market",
- "code": "market",
- "path": "/market",
- "component": "Layout",
- "sort": 1,
- "isshow": true,
- "children": [
- {
- "title": "期货市场",
- "rulekey": "client_pc_web_market_futures",
- "code": "market_futures",
- "path": "market_futures",
- "component": "Main",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "期货市场",
- "rulekey": "client_pc_web_market_futures_tab",
- "code": "market_futures_tab",
- "path": "market_futures_tab",
- "component": "views/market/futures/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "交易",
- "rulekey": "market_futures_tab_trade",
- "code": "trade",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "图表",
- "code": "chart",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "title": "基础设置",
- "rulekey": "client_pc_web_qiyefengguan_info",
- "code": "info",
- "path": "/info",
- "component": "Layout",
- "sort": 1,
- "isshow": true,
- "children": [
- {
- "title": "客户资料",
- "rulekey": "client_pc_web_qiyefengguan_custom",
- "code": "custom",
- "path": "custom",
- "component": "Main",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "未提交",
- "rulekey": "client_pc_web_qiyefengguan_custom_unsubmit",
- "code": "custom_unsubmit",
- "path": "custom_unsubmit",
- "component": "views/information/custom/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "修改",
- "rulekey": "client_pc_web_qiyefengguan_custom_unsubmit_modify",
- "code": "modify",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "删除",
- "rulekey": "client_pc_web_qiyefengguan_custom_unsubmit_delete",
- "code": "delete",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "撤销",
- "rulekey": "client_pc_web_qiyefengguan_custom_unsubmit_cancel",
- "code": "cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "待审核",
- "rulekey": "client_pc_web_qiyefengguan_custom_checkpending",
- "code": "custom_checkpending",
- "path": "custom_checkpending",
- "component": "views/information/custom/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qiyefengguan_custom_checkpending_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "审核",
- "rulekey": "client_pc_web_qiyefengguan_custom_checkpending_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "正常",
- "rulekey": "client_pc_web_qiyefengguan_custom_normal",
- "code": "custom_normal",
- "path": "custom_normal",
- "component": "views/information/custom/index.vue",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qiyefengguan_custom_normal_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "client_pc_web_qiyefengguan_custom_normal_modify",
- "code": "modify",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "停用",
- "rulekey": "client_pc_web_qiyefengguan_custom_normal_disable",
- "code": "disable",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "停用",
- "rulekey": "client_pc_web_qiyefengguan_custom_disabled",
- "code": "custom_disabled",
- "path": "custom_disabled",
- "component": "views/information/custom/index.vue",
- "sort": 3,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qiyefengguan_custom_disabled_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "恢复",
- "rulekey": "client_pc_web_qiyefengguan_custom_disabled_recover",
- "code": "recover",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "删除",
- "rulekey": "client_pc_web_qiyefengguan_custom_disabled_delete",
- "code": "delete",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "商品设置",
- "rulekey": "client_pc_web_qiyefengguan_goods",
- "code": "goods",
- "path": "goods",
- "component": "Main",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "现货品种",
- "rulekey": "client_pc_web_qiyefengguan_goods_spot",
- "code": "goods_spot",
- "path": "goods_spot",
- "component": "views/iframe/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "/ermcp/deliverygoodscommon/init",
- "remark": "管理端",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qiyefengguan_goods_spot_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "client_pc_web_qiyefengguan_goods_spot_edit",
- "code": "edit",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "停用",
- "rulekey": "client_pc_web_qiyefengguan_goods_spot_stop",
- "code": "stop",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "恢复",
- "rulekey": "client_pc_web_qiyefengguan_goods_spot_recover",
- "code": "recover",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "套保品种",
- "rulekey": "client_pc_web_qiyefengguan_goods_hedge",
- "code": "goods_hedge",
- "path": "goods_hedge",
- "component": "views/iframe/index.vue",
- "sort": 2,
- "isshow": true,
- "url": "/ermcp/deliverygoodscommon/init",
- "remark": "管理端",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qiyefengguan_goods_hedge_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "client_pc_web_qiyefengguan_goods_hedge_edit",
- "code": "edit",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "仓库信息",
- "rulekey": "client_pc_web_qiyefengguan_warehouse",
- "code": "warehouse",
- "path": "warehouse",
- "component": "Main",
- "sort": 3,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "正常",
- "rulekey": "client_pc_web_qiyefengguan_warehouse_normal",
- "code": "warehouse_normal",
- "path": "warehouse_normal",
- "component": "views/information/warehouse-info/list/normal-use/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qiyefengguan_warehouse_normal_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "client_pc_web_qiyefengguan_warehouse_normal_modify",
- "code": "modify",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "停用",
- "rulekey": "client_pc_web_qiyefengguan_warehouse_normal_disable",
- "code": "disable",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "停用",
- "rulekey": "client_pc_web_qiyefengguan_warehouse_disabled",
- "code": "warehouse_disabled",
- "path": "warehouse_disabled",
- "component": "views/information/warehouse-info/list/normal-use/index.vue",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qiyefengguan_warehouse_disabled_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "恢复",
- "rulekey": "client_pc_web_qiyefengguan_warehouse_disabled_recover",
- "code": "recover",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "主体设置",
- "rulekey": "client_pc_web_qiyefengguan_company",
- "code": "company",
- "path": "company",
- "component": "Main",
- "sort": 3,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "正常",
- "rulekey": "client_pc_web_qiyefengguan_company_normal",
- "code": "company_normal",
- "path": "company_normal",
- "component": "views/iframe/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "/ermcp/ermcppaareasubject/jyztinit",
- "remark": "管理端",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qiyefengguan_company_normal_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "client_pc_web_qiyefengguan_company_normal_modify",
- "code": "edit",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "停用",
- "rulekey": "client_pc_web_qiyefengguan_company_normal_disable",
- "code": "del",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "停用",
- "rulekey": "client_pc_web_qiyefengguan_company_disabled",
- "code": "company_disabled",
- "path": "company_disabled",
- "component": "views/iframe/index.vue",
- "sort": 2,
- "isshow": true,
- "url": "/ermcp/ermcppaareasubject/jyztinit",
- "remark": "管理端",
- "auth": [
- {
- "label": "恢复",
- "rulekey": "client_pc_web_qiyefengguan_company_disabled_recover",
- "code": "active",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "账户管理",
- "rulekey": "client_pc_web_qiyefengguan_account",
- "code": "account",
- "path": "account",
- "component": "Main",
- "sort": 4,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "现货账户",
- "rulekey": "client_pc_web_qiyefengguan_account_spot",
- "code": "account_spot",
- "path": "account_spot",
- "component": "views/information/account_info/list/account_info_business/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qiyefengguan_account_spot_add",
- "code": "account_spot_add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "client_pc_web_qiyefengguan_account_spot_modify",
- "code": "account_spot_modify",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "重置密码",
- "rulekey": "client_pc_web_qiyefengguan_account_spot_resetpwd",
- "code": "account_spot_resetpwd",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "冻结",
- "rulekey": "client_pc_web_qiyefengguan_account_spot_locked",
- "code": "account_spot_locked",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "解冻",
- "rulekey": "client_pc_web_qiyefengguan_account_spot_unlocked",
- "code": "account_spot_unlocked",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "注销",
- "rulekey": "client_pc_web_qiyefengguan_account_spot_cancel",
- "code": "account_spot_cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "交易账户",
- "rulekey": "client_pc_web_qiyefengguan_account_trade",
- "code": "account_trade",
- "path": "account_trade",
- "component": "views/information/account_info/list/account_info_trade/index.vue",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qiyefengguan_account_trade_add",
- "code": "account_trade_add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "client_pc_web_qiyefengguan_account_trade_modify",
- "code": "account_trade_modify",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "新增",
- "rulekey": "client_pc_web_qiyefengguan_account_trade_child_add",
- "code": "account_trade_child_add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "client_pc_web_qiyefengguan_account_trade_child_modify",
- "code": "account_trade_child_modify",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "重置密码",
- "rulekey": "client_pc_web_qiyefengguan_account_trade_child_reset",
- "code": "account_trade_child_reset",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "冻结",
- "rulekey": "client_pc_web_qiyefengguan_account_trade_child_locked",
- "code": "account_trade_child_locked",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "解冻",
- "rulekey": "client_pc_web_qiyefengguan_account_trade_child_unlocked",
- "code": "account_trade_child_unlocked",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "注销",
- "rulekey": "client_pc_web_qiyefengguan_account_trade_child_cancel",
- "code": "account_trade_child_cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "管理账户",
- "rulekey": "client_pc_web_qiyefengguan_account_info_manager",
- "code": "account_info_manager",
- "path": "account_info_manager",
- "component": "views/information/account_info/list/account_info_manager/index.vue",
- "sort": 3,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qiyefengguan_account_manager_add",
- "code": "account_manager_add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "权限设置",
- "rulekey": "client_pc_web_qiyefengguan_account_manager_setting",
- "code": "account_manager_setting",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "新增",
- "rulekey": "client_pc_web_qiyefengguan_account_manager_child_add",
- "code": "account_manager_child_add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "client_pc_web_qiyefengguan_account_manager_child_modify",
- "code": "account_manager_child_modify",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "重置密码",
- "rulekey": "client_pc_web_qiyefengguan_account_manager_child_reset",
- "code": "account_manager_child_reset",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "冻结",
- "rulekey": "client_pc_web_qiyefengguan_account_manager_child_locked",
- "code": "account_manager_child_locked",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "解冻",
- "rulekey": "client_pc_web_qiyefengguan_account_manager_child_unlocked",
- "code": "account_manager_child_unlocked",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "注销",
- "rulekey": "client_pc_web_qiyefengguan_account_manager_child_cancel",
- "code": "account_manager_child_cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "期货账户",
- "rulekey": "client_pc_web_qiyefengguan_account_futures",
- "code": "account_futures",
- "path": "account_futures",
- "component": "views/information/account_info/list/account_info_futures/index.vue",
- "sort": 4,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "账户设置",
- "rulekey": "client_pc_web_qiyefengguan_account_futures_setting",
- "code": "account_futures_setting",
- "isshow": false,
- "remark": ""
- },
- {
- "label": "新增",
- "rulekey": "client_pc_web_qiyefengguan_account_futures_add",
- "code": "account_futures_add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "client_pc_web_qiyefengguan_account_futures_modify",
- "code": "account_futures_modify",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "新增",
- "rulekey": "client_pc_web_qiyefengguan_account_futures_child_add",
- "code": "account_futures_child_add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "client_pc_web_qiyefengguan_account_futures_child_modify",
- "code": "account_futures_child_modify",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "授信",
- "rulekey": "client_pc_web_qiyefengguan_account_futures_child_credit",
- "code": "account_futures_child_credit",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "注销",
- "rulekey": "client_pc_web_qiyefengguan_account_futures_child_cancel",
- "code": "account_futures_child_cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "审核设置",
- "rulekey": "client_pc_web_qiyefengguan_audit",
- "code": "audit",
- "path": "audit",
- "component": "Main",
- "sort": 4,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "审核设置",
- "rulekey": "client_pc_web_qiyefengguan_audit_setting",
- "code": "audit_setting",
- "path": "audit_setting",
- "component": "views/iframe/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "/ermcp/paAreaAuditConfig/init",
- "remark": "管理端",
- "auth": [
- {
- "label": "修改",
- "rulekey": "client_pc_web_qiyefengguan_audit_setting_edit",
- "code": "edit",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "title": "现货套保",
- "rulekey": "client_pc_web_qiyefengguan_business",
- "code": "business",
- "path": "/business",
- "component": "Layout",
- "sort": 2,
- "isshow": true,
- "children": [
- {
- "title": "采购合同",
- "rulekey": "client_pc_web_qiyefengguan_purchase",
- "code": "purchase",
- "path": "purchase",
- "component": "Main",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待点价合同",
- "rulekey": "client_pc_web_qiyefengguan_purchase_pending",
- "code": "purchase_pending",
- "path": "purchase_pending",
- "component": "views/business/purchase/list/all/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "点价登记",
- "rulekey": "client_pc_web_qiyefengguan_purchase_pending_someprice",
- "code": "purchase_pending_someprice",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "套保交易",
- "rulekey": "client_pc_web_qiyefengguan_purchase_pending_trade",
- "code": "purchase_pending_trade",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "待交收合同",
- "rulekey": "client_pc_web_qiyefengguan_purchase_performance",
- "code": "purchase_performance",
- "path": "purchase_performance",
- "component": "views/business/purchase/list/all/index.vue",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "交收登记",
- "rulekey": "client_pc_web_qiyefengguan_purchase_performance_settlement",
- "code": "purchase_performance_settlement",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "款项登记",
- "rulekey": "client_pc_web_qiyefengguan_purchase_performance_funds",
- "code": "purchase_performance_funds",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "发票登记",
- "rulekey": "client_pc_web_qiyefengguan_purchase_performance_invoice",
- "code": "purchase_performance_invoice",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "入库登记",
- "rulekey": "client_pc_web_qiyefengguan_purchase_performance_storage",
- "code": "purchase_performance_storage",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "完结合同",
- "rulekey": "client_pc_web_qiyefengguan_purchase_performance_ending",
- "code": "purchase_performance_ending",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "新增合同",
- "rulekey": "client_pc_web_qiyefengguan_purchase_contract",
- "code": "purchase_contract",
- "path": "purchase_contract",
- "component": "views/information/spot-contract/list/purchase/index.vue",
- "sort": 3,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qiyefengguan_purchase_contract_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "重新提交",
- "rulekey": "client_pc_web_qiyefengguan_purchase_contract_resubmit",
- "code": "resubmit",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "撤回",
- "rulekey": "client_pc_web_qiyefengguan_purchase_contract_cancel",
- "code": "cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "删除",
- "rulekey": "client_pc_web_qiyefengguan_purchase_contract_delete",
- "code": "delete",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已完成合同",
- "rulekey": "client_pc_web_qiyefengguan_purchase_finish",
- "code": "purchase_finish",
- "path": "purchase_finish",
- "component": "views/information/spot-contract/list/purchase/index.vue",
- "sort": 4,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "销售合同",
- "rulekey": "client_pc_web_qiyefengguan_sell",
- "code": "sell",
- "path": "sell",
- "component": "Main",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待点价合同",
- "rulekey": "client_pc_web_qiyefengguan_sell_pending",
- "code": "sell_pending",
- "path": "sell_pending",
- "component": "views/business/sell/list/all/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "点价登记",
- "rulekey": "client_pc_web_qiyefengguan_sell_pending_someprice",
- "code": "sell_pending_someprice",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "套保交易",
- "rulekey": "client_pc_web_qiyefengguan_sell_pending_trade",
- "code": "sell_pending_trade",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "待交收合同",
- "rulekey": "client_pc_web_qiyefengguan_sell_performance",
- "code": "sell_performance",
- "path": "sell_performance",
- "component": "views/business/sell/list/all/index.vue",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "交收登记",
- "rulekey": "client_pc_web_qiyefengguan_sell_performance_settlement",
- "code": "sell_performance_settlement",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "款项登记",
- "rulekey": "client_pc_web_qiyefengguan_sell_performance_funds",
- "code": "sell_performance_funds",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "发票登记",
- "rulekey": "client_pc_web_qiyefengguan_sell_performance_invoice",
- "code": "sell_performance_invoice",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "出库登记",
- "rulekey": "client_pc_web_qiyefengguan_sell_performance_storage",
- "code": "sell_performance_storage",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "完结合同",
- "rulekey": "client_pc_web_qiyefengguan_sell_performance_ending",
- "code": "sell_performance_ending",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "新增合同",
- "rulekey": "client_pc_web_qiyefengguan_sell_contract",
- "code": "sell_contract",
- "path": "sell_contract",
- "component": "views/information/spot-contract/list/sell/index.vue",
- "sort": 3,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qiyefengguan_sell_contract_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "重新提交",
- "rulekey": "client_pc_web_qiyefengguan_sell_contract_resubmit",
- "code": "resubmit",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "撤回",
- "rulekey": "client_pc_web_qiyefengguan_sell_contract_delete",
- "code": "cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已完成合同",
- "rulekey": "client_pc_web_qiyefengguan_sell_finish",
- "code": "sell_finish",
- "path": "sell_finish",
- "component": "views/information/spot-contract/list/sell/index.vue",
- "sort": 4,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "购销计划",
- "rulekey": "client_pc_web_qiyefengguan_plan",
- "code": "plan",
- "path": "plan",
- "component": "Main",
- "sort": 3,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "执行中计划",
- "rulekey": "client_pc_web_qiyefengguan_plan_running",
- "code": "plan_running",
- "path": "plan_running",
- "component": "views/business/plan/list/running/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "新增计划",
- "rulekey": "client_pc_web_qiyefengguan_plan_uncommitted",
- "code": "plan_uncommitted",
- "path": "plan_uncommitted",
- "component": "views/business/plan/list/uncommitted/index.vue",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qiyefengguan_plan_uncommitted_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "client_pc_web_qiyefengguan_plan_uncommitted_modify",
- "code": "modify",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "审核",
- "rulekey": "client_pc_web_qiyefengguan_plan_uncommitted_check",
- "code": "check",
- "isshow": false,
- "remark": ""
- },
- {
- "label": "重新提交",
- "rulekey": "client_pc_web_qiyefengguan_plan_uncommitted_resubmit",
- "code": "resubmit",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "撤销",
- "rulekey": "client_pc_web_qiyefengguan_plan_uncommitted_cancel",
- "code": "cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "删除",
- "rulekey": "client_pc_web_qiyefengguan_plan_uncommitted_delete",
- "code": "delete",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "现货查询",
- "rulekey": "client_pc_web_qiyefengguan_search_spot",
- "code": "search_spot",
- "path": "search_spot",
- "component": "Main",
- "sort": 4,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "采购合同",
- "rulekey": "client_pc_web_qiyefengguan_search_purchase",
- "code": "search_purchase",
- "path": "search_purchase",
- "component": "views/business/search/spot/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": []
- },
- {
- "title": "销售合同",
- "rulekey": "client_pc_web_qiyefengguan_search_sell",
- "code": "search_sell",
- "path": "search_sell",
- "component": "views/business/search/spot/index.vue",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": []
- },
- {
- "title": "购销计划",
- "rulekey": "client_pc_web_qiyefengguan_search_plan",
- "code": "search_plan",
- "path": "search_plan",
- "component": "views/business/search/plan/index.vue",
- "sort": 3,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": []
- }
- ]
- },
- {
- "title": "期现关联",
- "rulekey": "client_pc_web_qiyefengguan_futures_spot",
- "code": "futures_spot",
- "path": "futures_spot",
- "component": "Main",
- "sort": 5,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "外部成交单关联",
- "rulekey": "client_pc_web_qiyefengguan_futures_spot_finish",
- "code": "futures_spot_finish",
- "path": "futures_spot_finish",
- "component": "views/iframe/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "/link/patradelink/initcommonview",
- "remark": "管理端",
- "auth": [
- {
- "label": "关联",
- "rulekey": "client_pc_web_qiyefengguan_futures_spot_finish_bind",
- "code": "relation",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "解除关联",
- "rulekey": "client_pc_web_qiyefengguan_futures_spot_finish_unbind",
- "code": "del",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "期现单据关联",
- "rulekey": "client_pc_web_qiyefengguan_futures_spot_order",
- "code": "futures_spot_order",
- "path": "futures_spot_order",
- "component": "views/iframe/index.vue",
- "sort": 2,
- "isshow": true,
- "url": "/link/patradelink/initcommonview",
- "remark": "管理端",
- "auth": [
- {
- "label": "补单关联",
- "rulekey": "client_pc_web_qiyefengguan_futures_spot_order_add",
- "code": "supplerelation",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "关联",
- "rulekey": "client_pc_web_qiyefengguan_futures_spot_order_bind",
- "code": "relation",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "关联记录",
- "rulekey": "client_pc_web_qiyefengguan_futures_spot_record",
- "code": "futures_spot_record",
- "path": "futures_spot_record",
- "component": "views/iframe/index.vue",
- "sort": 3,
- "isshow": true,
- "url": "/link/patradelink/initcommonview",
- "remark": "管理端",
- "auth": [
- {
- "label": "解除关联",
- "rulekey": "client_pc_web_qiyefengguan_futures_spot_record_unbind",
- "code": "del",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "现货参考价",
- "rulekey": "client_pc_web_qiyefengguan_spotmarket",
- "code": "spotmarket",
- "path": "spotmarket",
- "component": "Main",
- "sort": 6,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "现货参考价",
- "rulekey": "client_pc_web_qiyefengguan_spotmarket_price",
- "code": "spotmarket_price",
- "path": "spotmarket_price",
- "component": "views/business/spotmarket/list/price/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "修改",
- "rulekey": "client_pc_web_qiyefengguan_spotmarket_price_modify",
- "code": "modify",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "title": "风险管理",
- "rulekey": "client_pc_web_qiyefengguan_riskmanage",
- "code": "riskmanage",
- "path": "/riskmanage",
- "component": "Layout",
- "sort": 3,
- "isshow": true,
- "children": [
- {
- "title": "实时敞口",
- "rulekey": "client_pc_web_qiyefengguan_exposure_realtime",
- "code": "exposure_realtime",
- "path": "exposure_realtime",
- "component": "Main",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "实时敞口",
- "rulekey": "client_pc_web_qiyefengguan_exposure_realtime_index",
- "code": "exposure_realtime_index",
- "path": "exposure_realtime_index",
- "component": "views/business/exposure/list/realTime/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "下单",
- "rulekey": "client_pc_web_qiyefengguan_exposure_realtime_index_add",
- "code": "exposure_realtime_index_add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "现货明细",
- "rulekey": "client_pc_web_qiyefengguan_exposure_realtime_spot_details",
- "code": "exposure_realtime_spot_details",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "期货明细",
- "rulekey": "client_pc_web_qiyefengguan_exposure_realtime_futures_details",
- "code": "exposure_realtime_futures_details",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "参数变动明细",
- "rulekey": "client_pc_web_qiyefengguan_exposure_realtime_params_details",
- "code": "exposure_realtime_params_details",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "头寸查询",
- "rulekey": "client_pc_web_qiyefengguan_position",
- "code": "position",
- "path": "position",
- "component": "Main",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "现货商品头寸",
- "rulekey": "client_pc_web_qiyefengguan_position_spot",
- "code": "position_spot",
- "path": "position_spot",
- "component": "views/business/exposure/list/spot/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "现货变动明细",
- "rulekey": "client_pc_web_qiyefengguan_position_spot_details",
- "code": "position_spot_details",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "期货持仓头寸",
- "rulekey": "client_pc_web_qiyefengguan_position_futures",
- "code": "position_futures",
- "path": "position_futures",
- "component": "views/business/exposure/list/futures/index.vue",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "期货变动明细",
- "rulekey": "client_pc_web_qiyefengguan_position_futures_details",
- "code": "position_futures_details",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "历史敞口",
- "rulekey": "client_pc_web_qiyefengguan_exposure_history",
- "code": "exposure_history",
- "path": "exposure_history",
- "component": "Main",
- "sort": 3,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "历史敞口",
- "rulekey": "client_pc_web_qiyefengguan_exposure_history_index",
- "code": "exposure_history_index",
- "path": "exposure_history_index",
- "component": "views/business/exposure/list/history/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": []
- }
- ]
- }
- ]
- },
- {
- "title": "风管审核",
- "rulekey": "client_pc_web_qiyefengguan_riskreview",
- "code": "riskreview",
- "path": "/riskreview",
- "component": "Layout",
- "sort": 4,
- "isshow": true,
- "children": [
- {
- "title": "套保比例审核",
- "rulekey": "client_pc_web_qiyefengguan_hedge_ratio",
- "code": "hedge_ratio",
- "path": "hedge_ratio",
- "component": "Main",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待审核",
- "rulekey": "client_pc_web_qiyefengguan_hedge_ratio_checkpending",
- "code": "hedge_ratio_checkpending",
- "path": "hedge_ratio_checkpending",
- "component": "views/iframe/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "/ermcp/paramchangeapp/initview",
- "remark": "管理端",
- "auth": [
- {
- "label": "审核",
- "rulekey": "client_pc_web_qiyefengguan_hedge_ratio_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已审核",
- "rulekey": "client_pc_web_qiyefengguan_hedge_ratio_performance",
- "code": "hedge_ratio_performance",
- "path": "hedge_ratio_performance",
- "component": "views/iframe/index.vue",
- "sort": 2,
- "isshow": true,
- "url": "/ermcp/paramchangeapp/initview",
- "remark": "管理端",
- "auth": [
- {
- "label": "详情",
- "rulekey": "",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "现货参数审核",
- "rulekey": "client_pc_web_qiyefengguan_spot_params",
- "code": "spot_params",
- "path": "spot_params",
- "component": "Main",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待审核",
- "rulekey": "client_pc_web_qiyefengguan_spot_params_checkpending",
- "code": "spot_params_checkpending",
- "path": "spot_params_checkpending",
- "component": "views/iframe/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "/ermcp/paramchangeapp/initcommonview",
- "remark": "管理端",
- "auth": [
- {
- "label": "审核",
- "rulekey": "client_pc_web_qiyefengguan_spot_params_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已审核",
- "rulekey": "client_pc_web_qiyefengguan_spot_params_performance",
- "code": "spot_params_performance",
- "path": "spot_params_performance",
- "component": "views/iframe/index.vue",
- "sort": 2,
- "isshow": true,
- "url": "/ermcp/paramchangeapp/initcommonview",
- "remark": "管理端",
- "auth": [
- {
- "label": "详情",
- "rulekey": "",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "title": "现货审核",
- "rulekey": "client_pc_web_qiyefengguan_spotreview",
- "code": "spotreview",
- "path": "/spotreview",
- "component": "Layout",
- "sort": 5,
- "isshow": true,
- "children": [
- {
- "title": "合同审核",
- "rulekey": "client_pc_web_qiyefengguan_contract",
- "code": "contract",
- "path": "contract",
- "component": "Main",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待审核",
- "rulekey": "client_pc_web_qiyefengguan_contract_checkpending",
- "code": "contract_checkpending",
- "path": "contract_checkpending",
- "component": "views/information/spot-contract/list/audit/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "审核",
- "rulekey": "client_pc_web_qiyefengguan_contract_checkpending_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "撤销",
- "rulekey": "client_pc_web_qiyefengguan_contract_checkpending_cancel",
- "code": "cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已审核",
- "rulekey": "client_pc_web_qiyefengguan_contract_performance",
- "code": "contract_performance",
- "path": "contract_performance",
- "component": "views/information/spot-contract/list/audit/index.vue",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "点价审核",
- "rulekey": "client_pc_web_qiyefengguan_someprice",
- "code": "someprice",
- "path": "someprice",
- "component": "Main",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待审核",
- "rulekey": "client_pc_web_qiyefengguan_someprice_checkpending",
- "code": "someprice_checkpending",
- "path": "someprice_checkpending",
- "component": "views/manage/business-review/list/someprice/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "审核",
- "rulekey": "client_pc_web_qiyefengguan_someprice_checkpending_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "撤销",
- "rulekey": "client_pc_web_qiyefengguan_someprice_checkpending_cancel",
- "code": "cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已审核",
- "rulekey": "client_pc_web_qiyefengguan_someprice_performance",
- "code": "someprice_performance",
- "path": "someprice_performance",
- "component": "views/manage/business-review/list/someprice/index.vue",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "交收审核",
- "rulekey": "client_pc_web_qiyefengguan_settlement",
- "code": "settlement",
- "path": "settlement",
- "component": "Main",
- "sort": 3,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待审核",
- "rulekey": "client_pc_web_qiyefengguan_settlement_checkpending",
- "code": "settlement_checkpending",
- "path": "settlement_checkpending",
- "component": "views/manage/business-review/list/settlement/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "审核",
- "rulekey": "client_pc_web_qiyefengguan_settlement_checkpending_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "撤销",
- "rulekey": "client_pc_web_qiyefengguan_settlement_checkpending_cancel",
- "code": "cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已审核",
- "rulekey": "client_pc_web_qiyefengguan_settlement_performance",
- "code": "settlement_performance",
- "path": "settlement_performance",
- "component": "views/manage/business-review/list/settlement/index.vue",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "计划审核",
- "rulekey": "client_pc_web_qiyefengguan_plan_audit",
- "code": "plan_audit",
- "path": "plan_audit",
- "component": "Main",
- "sort": 4,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待审核",
- "rulekey": "client_pc_web_qiyefengguan_plan_checkpending",
- "code": "plan_checkpending",
- "path": "plan_checkpending",
- "component": "views/business/plan/list/audit/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "审核",
- "rulekey": "client_pc_web_qiyefengguan_plan_checkpending_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "撤销",
- "rulekey": "client_pc_web_qiyefengguan_plan_checkpending_cancel",
- "code": "cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已审核",
- "rulekey": "client_pc_web_qiyefengguan_plan_performance",
- "code": "plan_performance",
- "path": "plan_performance",
- "component": "views/business/plan/list/audit/index.vue",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "出入库审核",
- "rulekey": "client_pc_web_qiyefengguan_stock",
- "code": "stock",
- "path": "stock",
- "component": "Main",
- "sort": 5,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待审核",
- "rulekey": "client_pc_web_qiyefengguan_stock_checkpending",
- "code": "stock_checkpending",
- "path": "stock_checkpending",
- "component": "views/manage/inventory-review/list/audit/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "审核",
- "rulekey": "client_pc_web_qiyefengguan_stock_checkpending_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "撤销",
- "rulekey": "client_pc_web_qiyefengguan_stock_checkpending_cancel",
- "code": "cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已审核",
- "rulekey": "client_pc_web_qiyefengguan_stock_performance",
- "code": "stock_performance",
- "path": "stock_performance",
- "component": "views/manage/inventory-review/list/audit/index.vue",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "title": "库存管理",
- "rulekey": "client_pc_web_qiyefengguan_inventory",
- "code": "inventory",
- "path": "/inventory",
- "component": "Layout",
- "sort": 6,
- "isshow": true,
- "children": [
- {
- "title": "库存管理",
- "rulekey": "client_pc_web_qiyefengguan_inventory_manage",
- "code": "inventory_manage",
- "path": "inventory_manage",
- "component": "Main",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "库存管理",
- "rulekey": "client_pc_web_qiyefengguan_inventory_management",
- "code": "inventory_management",
- "path": "inventory_management",
- "component": "views/search/inventory/list/inventory_current/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qiyefengguan_inventory_management_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "入库明细",
- "rulekey": "client_pc_web_qiyefengguan_inventory_manager_inbound_details",
- "code": "inventory_manager_inbound_details",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "出库明细",
- "rulekey": "client_pc_web_qiyefengguan_inventory_manager_outbound_details",
- "code": "inventory_manager_outbound_details",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "title": "财务审核",
- "rulekey": "client_pc_web_qiyefengguan_financereview",
- "code": "financereview",
- "path": "/financereview",
- "component": "Layout",
- "sort": 7,
- "isshow": true,
- "children": [
- {
- "title": "发票审核",
- "rulekey": "client_pc_web_qiyefengguan_invoice",
- "code": "invoice",
- "path": "invoice",
- "component": "Main",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待审核",
- "rulekey": "client_pc_web_qiyefengguan_invoice_checkpending",
- "code": "invoice_checkpending",
- "path": "invoice_checkpending",
- "component": "views/manage/finance-review/list/invoice/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "审核",
- "rulekey": "client_pc_web_qiyefengguan_invoice_checkpending_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "撤销",
- "rulekey": "client_pc_web_qiyefengguan_invoice_checkpending_cancel",
- "code": "cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已审核",
- "rulekey": "client_pc_web_qiyefengguan_invoice_performance",
- "code": "invoice_performance",
- "path": "invoice_performance",
- "component": "views/manage/finance-review/list/invoice/index.vue",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "款项审核",
- "rulekey": "client_pc_web_qiyefengguan_funds",
- "code": "funds",
- "path": "funds",
- "component": "Main",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待审核",
- "rulekey": "client_pc_web_qiyefengguan_funds_checkpending",
- "code": "funds_checkpending",
- "path": "funds_checkpending",
- "component": "views/manage/finance-review/list/funds/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "审核",
- "rulekey": "client_pc_web_qiyefengguan_funds_checkpending_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "撤销",
- "rulekey": "client_pc_web_qiyefengguan_funds_checkpending_cancel",
- "code": "cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已审核",
- "rulekey": "client_pc_web_qiyefengguan_funds_performance",
- "code": "funds_performance",
- "path": "funds_performance",
- "component": "views/manage/finance-review/list/funds/index.vue",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "title": "统计报表",
- "rulekey": "client_pc_web_qiyefengguan_report",
- "code": "report",
- "path": "/report",
- "component": "Layout",
- "sort": 8,
- "isshow": true,
- "children": [
- {
- "title": "现货报表",
- "rulekey": "client_pc_web_qiyefengguan_spot_report",
- "code": "spot_report",
- "path": "spot_report",
- "component": "Main",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "现货报表",
- "rulekey": "client_pc_web_qiyefengguan_spot_report_spot",
- "code": "spot_report_spot",
- "path": "spot_report_spot",
- "component": "views/report/spot-report/list/spot_report/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "现货明细",
- "rulekey": "client_pc_web_qiyefengguan_spot_report_spot_detail",
- "code": "spot_report_spot_detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "敞口报表",
- "rulekey": "client_pc_web_qiyefengguan_exposure_report",
- "code": "exposure_report",
- "path": "exposure_report",
- "component": "Main",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "敞口报表",
- "rulekey": "client_pc_web_qiyefengguan_exposure_report_exposure",
- "code": "exposure_report_exposure",
- "path": "exposure_report_exposure",
- "component": "views/report/exposure-report/list/exposure_report/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "现货合同变动量明细",
- "rulekey": "client_pc_web_qiyefengguan_exposure_report_exposure_contract_changes",
- "code": "exposure_report_exposure_contract_changes",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "套保计划变动量明细",
- "rulekey": "client_pc_web_qiyefengguan_exposure_report_exposure_hedging_plan",
- "code": "exposure_report_exposure_hedging_plan",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "期货变动量明细",
- "rulekey": "client_pc_web_qiyefengguan_exposure_report_exposure_futures_changes",
- "code": "exposure_report_exposure_futures_changes",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "参数调整变动量明细",
- "rulekey": "client_pc_web_qiyefengguan_exposure_report_exposure_parameter_adjustment_changes",
- "code": "exposure_report_exposure_parameter_adjustment_changes",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "期货报表",
- "rulekey": "client_pc_web_qiyefengguan_future_report",
- "code": "future_report",
- "path": "future_report",
- "component": "Main",
- "sort": 3,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "期货报表",
- "rulekey": "client_pc_web_qiyefengguan_future_report_future",
- "code": "future_report_future",
- "path": "future_report_future",
- "component": "views/report/future_report/list/future_report/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "账户明细",
- "rulekey": "client_pc_web_qiyefengguan_future_report_future_detail",
- "code": "future_report_future_detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "财务报表",
- "rulekey": "client_pc_web_qiyefengguan_finance_report",
- "code": "finance_report",
- "path": "finance_report",
- "component": "Main",
- "sort": 4,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "财务报表",
- "rulekey": "client_pc_web_qiyefengguan_finance_report_finance",
- "code": "finance_report_finance",
- "path": "finance_report_finance",
- "component": "views/report/finance-report/list/finance_report_finance/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "商品明细",
- "rulekey": "client_pc_web_qiyefengguan_finance_report_finance_category_breakdown",
- "code": "finance_report_finance_category_breakdown",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "品牌明细",
- "rulekey": "client_pc_web_qiyefengguan_finance_report_finance_brand_details",
- "code": "finance_report_finance_brand_details",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "库存报表",
- "rulekey": "client_pc_web_qiyefengguan_inventory_report",
- "code": "inventory_report",
- "path": "inventory_report",
- "component": "Main",
- "sort": 5,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "库存报表",
- "rulekey": "client_pc_web_qiyefengguan_inventory_report_inventory_category",
- "code": "inventory_report_inventory_category",
- "path": "inventory_report_inventory_category",
- "component": "views/report/inventory-report/list/category/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "品牌明细",
- "rulekey": "client_pc_web_qiyefengguan_inventory_report_inventory_category_brand_detail",
- "code": "inventory_report_inventory_category_brand_detail",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "仓库明细",
- "rulekey": "client_pc_web_qiyefengguan_inventory_report_inventory_category_warehouse_detail",
- "code": "inventory_report_inventory_category_warehouse_detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "仓库报表",
- "rulekey": "client_pc_web_qiyefengguan_warehouse_report",
- "code": "warehouse_report",
- "path": "warehouse_report",
- "component": "Main",
- "sort": 6,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "仓库报表",
- "rulekey": "client_pc_web_qiyefengguan_warehouse_report_warehouse",
- "code": "warehouse_report_warehouse",
- "path": "warehouse_report_warehouse",
- "component": "views/report/inventory-report/list/warehouse/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "库存明细",
- "rulekey": "client_pc_web_qiyefengguan_warehouse_report_warehouse_detail",
- "code": "warehouse_report_warehouse_detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "汇总报表",
- "rulekey": "client_pc_web_qiyefengguan_sum_pl_report",
- "code": "sum_pl_report",
- "path": "sum_pl_report",
- "component": "Main",
- "sort": 7,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "汇总报表",
- "rulekey": "client_pc_web_qiyefengguan_sum_pl_report_sum_pl",
- "code": "sum_pl_report_sum_pl",
- "path": "sum_pl_report_sum_pl",
- "component": "views/report/sum_pl_report/list/sum_pl_report/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "损益明细",
- "rulekey": "client_pc_web_qiyefengguan_sum_pl_report_profit_and_loss_details",
- "code": "sum_pl_report_profit_and_loss_details",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "定价报表",
- "rulekey": "client_pc_web_qiyefengguan_price_report",
- "code": "price_report",
- "path": "price_report",
- "component": "Main",
- "sort": 8,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "定价报表",
- "rulekey": "client_pc_web_qiyefengguan_price_report_spot",
- "code": "price_report_spot",
- "path": "price_report_spot",
- "component": "views/iframe/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "/reckon/scmiddlegoods/init",
- "remark": "管理端",
- "auth": []
- }
- ]
- }
- ]
- },
- {
- "title": "铂金宝",
- "rulekey": "client_pc_web_qiyefengguan_platinum",
- "code": "platinum",
- "path": "/platinum",
- "component": "Layout",
- "sort": 90,
- "isshow": true,
- "children": [
- {
- "title": "客户资料",
- "rulekey": "client_pc_web_qiyefengguan_platinum_custom",
- "code": "platinum-custom",
- "path": "custom",
- "component": "Main",
- "sort": 10,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待审核",
- "rulekey": "client_pc_web_qiyefengguan_platinum_custom_checkpending",
- "code": "custom_checkpending",
- "path": "custom_checkpending",
- "component": "views/information/custom/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qiyefengguan_platinum_custom_checkpending_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "审核",
- "rulekey": "client_pc_web_qiyefengguan_platinum_custom_checkpending_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "重新提交",
- "rulekey": "client_pc_web_qiyefengguan_platinum_custom_normal_modify",
- "code": "modify",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "正常",
- "rulekey": "client_pc_web_qiyefengguan_platinum_custom_normal",
- "code": "custom_normal",
- "path": "custom_normal",
- "component": "views/information/custom/index.vue",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qiyefengguan_platinum_custom_normal_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "停用",
- "rulekey": "client_pc_web_qiyefengguan_platinum_custom_normal_disable",
- "code": "disable",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "停用",
- "rulekey": "client_pc_web_qiyefengguan_platinum_custom_disabled",
- "code": "custom_disabled",
- "path": "custom_disabled",
- "component": "views/information/custom/index.vue",
- "sort": 3,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qiyefengguan_platinum_custom_disabled_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "恢复",
- "rulekey": "client_pc_web_qiyefengguan_platinum_custom_disabled_recover",
- "code": "recover",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "提货查询",
- "rulekey": "client_pc_web_qhj_thcx",
- "code": "platinum_pick_query",
- "path": "platinum_pick_query",
- "component": "Main",
- "sort": 20,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "提货查询",
- "rulekey": "client_pc_web_qhj_thcx_sub",
- "code": "platinum_pick_query_tab",
- "path": "platinum_pick_query_tab",
- "component": "views/platinum/platinum_pick_query/list/tab/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "完成备货",
- "rulekey": "client_pc_web_qhj_thcx_complete_stocking",
- "code": "complete_stocking",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "上传物流",
- "rulekey": "client_pc_web_qhj_thcx_upload_logistics",
- "code": "complete_stocking",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "确认收货",
- "rulekey": "client_pc_web_qhj_thcx_receipt",
- "code": "confirm_receipt",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "确认提货",
- "rulekey": "client_pc_web_qhj_thcx_pickup",
- "code": "confirm_pickup",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "充值和提现审核",
- "rulekey": "client_pc_web_qhj_cztx",
- "code": "platinum_recharge_withdrawal_review",
- "path": "platinum_recharge_withdrawal_review",
- "component": "Main",
- "sort": 30,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "充值审核",
- "rulekey": "client_pc_web_qhj_cztx_recharge_tab",
- "code": "platinum_recharge_review",
- "path": "platinum_recharge_review",
- "component": "views/platinum/platinum_recharge_withdrawal_review/list/recharge/index.vue",
- "sort": 10,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "确认收款",
- "rulekey": "client_pc_web_qhj_cztx_recharge_tab_confirm_payment",
- "code": "confirm_payment",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "审核拒绝",
- "rulekey": "client_pc_web_qhj_cztx_recharge_tab_review_refuse",
- "code": "review_refuse",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "提现审核",
- "rulekey": "client_pc_web_qhj_cztx_withdrawal_tab",
- "code": "platinum_recharge_withdrawal",
- "path": "platinum_recharge_withdrawal",
- "component": "views/platinum/platinum_recharge_withdrawal_review/list/withdrawal/index.vue",
- "sort": 20,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "确认提现",
- "rulekey": "client_pc_web_qhj_cztx_withdrawal_tab_confirm_withdrawal",
- "code": "review_confirm",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "审核拒绝",
- "rulekey": "client_pc_web_qhj_cztx_withdrawal_tab_review_refuse",
- "code": "review_refuse",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "定投价查询",
- "rulekey": "client_pc_web_qhj_dtj",
- "code": "platinum_fixed_investment_price",
- "path": "platinum_fixed_investment_price",
- "component": "Main",
- "sort": 40,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "定投价查询",
- "rulekey": "client_pc_web_qhj_dtj_sub",
- "code": "fixed_investment_price",
- "path": "fixed_investment_price",
- "component": "views/platinum/platinum_fixed_investment_price_query/list/tab/index.vue",
- "sort": 10,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": []
- }
- ]
- },
- {
- "title": "定投查询",
- "rulekey": "client_pc_web_qhj_dt",
- "code": "platinum_fixed_investment",
- "path": "platinum_fixed_investment",
- "component": "Main",
- "sort": 50,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "定投计划查询",
- "rulekey": "client_pc_web_qhj_dt_plan",
- "code": "platinum_fixed_investment_plan",
- "path": "platinum_fixed_investment_plan",
- "component": "views/platinum/platinum_fixed_investment_query/list/plan/index.vue",
- "sort": 10,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": []
- },
- {
- "title": "定投流水查询",
- "rulekey": "client_pc_web_qhj_dt_log",
- "code": "platinum_fixed_investment_flow",
- "path": "platinum_fixed_investment_flow",
- "component": "views/platinum/platinum_fixed_investment_query/list/flow/index.vue",
- "sort": 20,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": []
- }
- ]
- },
- {
- "title": "单据查询",
- "rulekey": "client_pc_web_qhj_dj",
- "code": "platinum_document",
- "path": "platinum_document",
- "component": "Main",
- "sort": 60,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "持仓",
- "rulekey": "client_pc_web_qhj_dj_position",
- "code": "platinum_document_position",
- "path": "platinum_document_position",
- "component": "views/platinum/platinum_document_query/list/position/index.vue",
- "sort": 10,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": []
- },
- {
- "title": "委托单",
- "rulekey": "client_pc_web_qhj_dj_order",
- "code": "platinum_document_order",
- "path": "platinum_document_order",
- "component": "views/platinum/platinum_document_query/list/order/index.vue",
- "sort": 20,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": []
- },
- {
- "title": "待付单",
- "rulekey": "client_pc_web_qhj_dj_waiting",
- "code": "platinum_document_waiting",
- "path": "platinum_document_waiting",
- "component": "views/platinum/platinum_document_query/list/waiting/index.vue",
- "sort": 30,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": []
- },
- {
- "title": "成交单",
- "rulekey": "client_pc_web_qhj_dj_success",
- "code": "platinum_document_success",
- "path": "platinum_document_success",
- "component": "views/platinum/platinum_document_query/list/success/index.vue",
- "sort": 30,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": []
- }
- ]
- },
- {
- "title": "融资信息",
- "rulekey": "client_pc_web_qhj_rz",
- "code": "platinum_financing",
- "path": "platinum_financing",
- "component": "Main",
- "sort": 70,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "融资信息",
- "rulekey": "client_pc_web_qhj_rz_information",
- "code": "platinum_financing_information",
- "path": "platinum_financing_information",
- "component": "views/platinum/platinum_financing_information/list/tab/index.vue",
- "sort": 10,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "融资明细",
- "rulekey": "client_pc_web_qhj_rz_information_detail",
- "code": "information_detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "协议管理",
- "rulekey": "client_pc_web_qhj_xygl",
- "code": "platinum_agreements",
- "path": "platinum_agreements",
- "component": "Main",
- "sort": 80,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "协议管理",
- "rulekey": "client_pc_web_qhj_xygl_tab",
- "code": "platinum_agreement",
- "path": "platinum_agreement",
- "component": "views/platinum/platinum_agreement/list/tab/index.vue",
- "sort": 10,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qhj_xygl_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "client_pc_web_qhj_xygl_modify",
- "code": "modify",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "停用",
- "rulekey": "client_pc_web_qhj_xygl_stop",
- "code": "disable",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "恢复",
- "rulekey": "client_pc_web_qhj_xygl_resume",
- "code": "resume",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "注销",
- "rulekey": "client_pc_web_qhj_xygl_delete",
- "code": "delete",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "client_pc_web_qhj_xygl_detail",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "积分流水",
- "rulekey": "client_pc_web_qhj_zjls",
- "code": "platinum_capital_flow",
- "path": "platinum_capital_flow",
- "component": "Main",
- "sort": 90,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "积分流水",
- "rulekey": "client_pc_web_qhj_fixed_investment_dtj",
- "code": "platinum_capital_flow_tab",
- "path": "platinum_capital_flow_tab",
- "component": "views/iframe/index.vue",
- "sort": 10,
- "isshow": true,
- "url": "/qhj/scorelog/init",
- "remark": "管理端",
- "auth": []
- }
- ]
- },
- {
- "title": "推广报表",
- "rulekey": "client_pc_web_qhj_tgbb",
- "code": "platinum_promotion_report",
- "path": "platinum_promotion_report",
- "component": "Main",
- "sort": 100,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "推广报表",
- "rulekey": "client_pc_web_qhj_tgbb_tab",
- "code": "platinum_promotion_report_tab",
- "path": "platinum_promotion_report_tab",
- "component": "views/iframe/index.vue",
- "sort": 10,
- "isshow": true,
- "url": "/reckon/brokerreward/init",
- "remark": "管理端",
- "auth": []
- }
- ]
- },
- {
- "title": "经纪人管理",
- "rulekey": "client_pc_web_qhj_jjrgl",
- "code": "platinum_broker_management",
- "path": "platinum_broker_management",
- "component": "Main",
- "sort": 100,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "正常",
- "rulekey": "client_pc_web_qhj_jjrgl_normal_tab",
- "code": "platinum_broker_management_normal",
- "path": "platinum_broker_management_normal",
- "component": "views/iframe/index.vue",
- "sort": 10,
- "isshow": true,
- "url": "/qhj/brokerapply/init",
- "remark": "管理端",
- "auth": []
- },
- {
- "title": "待审核",
- "rulekey": "client_pc_web_qhj_jjrgl_waiting_tab",
- "code": "platinum_broker_management_waiting",
- "path": "platinum_broker_management_waiting",
- "component": "views/iframe/index.vue",
- "sort": 20,
- "isshow": true,
- "url": "/qhj/brokerapply/init",
- "remark": "管理端",
- "auth": [
- {
- "label": "审核",
- "rulekey": "client_pc_web_qhj_jjrgl_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "审核拒绝",
- "rulekey": "client_pc_web_qhj_jjrgl_refuse",
- "code": "platinum_broker_management_refuse",
- "path": "platinum_broker_management_refuse",
- "component": "views/iframe/index.vue",
- "sort": 30,
- "isshow": true,
- "url": "/qhj/brokerapply/init",
- "remark": "管理端",
- "auth": [
- {
- "label": "恢复",
- "rulekey": "client_pc_web_qhj_jjrgl_resume",
- "code": "active",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "客户账户查询",
- "rulekey": "client_pc_web_qhj_platinum_custormer_account_query",
- "code": "platinum_custormer_account_query",
- "path": "platinum_custormer_account_query",
- "component": "Main",
- "sort": 110,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "客户账户查询",
- "rulekey": "client_pc_web_qhj_platinum_custormer_account_query_tab",
- "code": "platinum_custormer_account_query_tab",
- "path": "platinum_custormer_account_query_tab",
- "component": "views/iframe/index.vue",
- "sort": 10,
- "isshow": true,
- "url": "/qhj/customeraccount/init",
- "remark": "管理端",
- "auth": []
- }
- ]
- },
- {
- "title": "出入金查询",
- "rulekey": "client_pc_web_qhj_platinum_apply_in_out_query",
- "code": "platinum_apply_in_out_query",
- "path": "platinum_apply_in_out_query",
- "component": "Main",
- "sort": 110,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "出入金查询",
- "rulekey": "client_pc_web_qhj_platinum_apply_in_out_query_tab",
- "code": "platinum_apply_in_out_query_tab",
- "path": "platinum_apply_in_out_query_tab",
- "component": "views/iframe/index.vue",
- "sort": 10,
- "isshow": true,
- "url": "/qhj/bankaccountoutinapply/init",
- "remark": "管理端",
- "auth": []
- }
- ]
- }
- ]
- },
- {
- "title": "签单",
- "rulekey": "client_pc_web_qiyefengguan_platinum_signing",
- "code": "platinum_signing",
- "path": "/platinum_signing",
- "component": "Layout",
- "sort": 100,
- "isshow": true,
- "children": [
- {
- "title": "签单设置",
- "rulekey": "client_pc_web_qhj_qdsz",
- "code": "platinum_signing_settings",
- "path": "platinum_signing_settings",
- "component": "Main",
- "sort": 10,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "签单设置",
- "rulekey": "client_pc_web_qhj_qdsz_tab",
- "code": "platinum_signing_settings_tab",
- "path": "platinum_signing_settings_tab",
- "component": "views/iframe/index.vue",
- "sort": 30,
- "isshow": true,
- "url": "/qhj/setting/init",
- "remark": "管理端",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qhj_qdsz_tab_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "client_pc_web_qhj_qdsz_tab_revise",
- "code": "edit",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "删除",
- "rulekey": "cclient_pc_web_qhj_qdsz_tab_revise_delete",
- "code": "del",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "关联现货",
- "rulekey": "client_pc_web_qhj_qdsz_tab_spot_dddddd",
- "code": "setting",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "团队设置",
- "rulekey": "client_pc_web_qhj_tdsz",
- "code": "platinum_team_settings",
- "path": "platinum_team_settings",
- "component": "Main",
- "sort": 20,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "团队设置",
- "rulekey": "client_pc_web_qhj_tdsz_tab",
- "code": "platinum_team_settings_tab",
- "path": "platinum_team_settings_tab",
- "component": "views/iframe/index.vue",
- "sort": 10,
- "isshow": true,
- "url": "/qhj/teamsetting/init",
- "remark": "管理端",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qhj_tdsz_tab_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "client_pc_web_qhj_qdsz_tab_modify",
- "code": "edit",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "删除",
- "rulekey": "client_pc_web_qhj_qdsz_tab_delete",
- "code": "del",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "月目标",
- "rulekey": "client_pc_web_qhj_tdsz_tab_monthly_goal",
- "code": "setting",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "client_pc_web_qhj_tdsz_tab_info",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "资管签订",
- "rulekey": "client_pc_web_qhj_zgqd",
- "code": "platinum_asset_management_signing",
- "path": "platinum_asset_management_signing",
- "component": "Main",
- "sort": 30,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "未提交",
- "rulekey": "client_pc_web_qhj_zgqd_unsubmit_tab_dddss",
- "code": "platinum_asset_management_signing_unsubmitted",
- "path": "platinum_asset_management_signing_unsubmitted",
- "component": "views/iframe/index.vue",
- "sort": 10,
- "isshow": true,
- "url": "/qhj/qhjsigncontract/zginit",
- "remark": "管理端",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qhj_zgqd_unsubmit_tab_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "提交",
- "rulekey": "client_pc_web_qhj_zgqd_unsubmit_tab_submit",
- "code": "active",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "client_pc_web_qhj_zgqd_unsubmit_tab_revise",
- "code": "edit",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "待审核",
- "rulekey": "client_pc_web_qhj_zgqd_pending_review_tab",
- "code": "platinum_asset_management_signing_pending_review",
- "path": "platinum_asset_management_signing_pending_review",
- "component": "views/iframe/index.vue",
- "sort": 20,
- "isshow": true,
- "url": "/qhj/qhjsigncontract/zginit",
- "remark": "管理端",
- "auth": [
- {
- "label": "审核",
- "rulekey": "client_pc_web_qhj_zgqd_pending_review_tab_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "client_pc_web_qhj_zgqd_unsubmit_tab_info",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "正常",
- "rulekey": "client_pc_web_qhj_zgqd_normal_tab",
- "code": "platinum_asset_management_signing_normal",
- "path": "platinum_asset_management_signing_normal",
- "component": "views/iframe/index.vue",
- "sort": 30,
- "isshow": true,
- "url": "/qhj/qhjsigncontract/zginit",
- "remark": "管理端",
- "auth": [
- {
- "label": "未到期续签",
- "rulekey": "client_pc_web_qhj_zgqd_normal_tab_unexpired_renewal",
- "code": "reset",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "到期续签",
- "rulekey": "client_pc_web_qiyefengguan_platinum_asset_management_signing_normal_expiry_renewal",
- "code": "lock",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "待付款登记",
- "rulekey": "client_pc_web_qiyefengguan_platinum_asset_management_signing_normal_expiry_renewal_tranmoneyin",
- "code": "tranmoneyin",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "client_pc_web_qiyefengguan_platinum_asset_management_signing_normal_expiry_renewal_info",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已完成",
- "rulekey": "client_pc_web_qhj_zgqd_finish_tab",
- "code": "platinum_asset_management_signing_finish",
- "path": "platinum_asset_management_signing_finish",
- "component": "views/iframe/index.vue",
- "sort": 40,
- "isshow": true,
- "url": "/qhj/qhjsigncontract/zginit",
- "remark": "管理端",
- "auth": [
- {
- "label": "详情",
- "rulekey": "client_pc_web_qiyefengguan_platinum_asset_management_signing_normal_finishl_info",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "全部",
- "rulekey": "client_pc_web_qhj_zgqd_all_tab",
- "code": "platinum_asset_management_signing_all",
- "path": "platinum_asset_management_signing_all",
- "component": "views/iframe/index.vue",
- "sort": 50,
- "isshow": true,
- "url": "/qhj/qhjsigncontract/zginit",
- "remark": "管理端",
- "auth": [
- {
- "label": "导出",
- "rulekey": "client_pc_web_qhj_tdsz_all_tab_export",
- "code": "exportdata",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改基本方式",
- "rulekey": "client_pc_web_qhj_tdsz_all_tab_modify_basic_way",
- "code": "auth",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改付款方式",
- "rulekey": "client_pc_web_qhj_tdsz_all_tab_modify_payment_method",
- "code": "user",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "client_pc_web_qhj_tdsz_all_tab_modify_info",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "贵金属签订",
- "rulekey": "client_pc_web_qhj_gjsqd",
- "code": "platinum_precious_metal_signing",
- "path": "platinum_precious_metal_signing",
- "component": "Main",
- "sort": 40,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "未提交",
- "rulekey": "client_pc_web_qhj_zgqd_unsubmit_tab",
- "code": "platinum_precious_metal_signing_unsubmitted",
- "path": "platinum_precious_metal_signing_unsubmitted",
- "component": "views/iframe/index.vue",
- "sort": 10,
- "isshow": true,
- "url": "/qhj/qhjsigncontract/gjsinit",
- "remark": "管理端",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qhj_gjsqd_unsubmit_tab_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "提交",
- "rulekey": "client_pc_web_qhj_gjsqd_unsubmit_tab_submit",
- "code": "active",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "client_pc_web_qhj_gjsqd_unsubmit_tab_revise",
- "code": "edit",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "client_pc_web_qhj_gjsqd_unsubmit_tab_info",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "待审核",
- "rulekey": "client_pc_web_qhj_gjsqd_waiting_check_tab",
- "code": "platinum_precious_metal_signing_pending_review",
- "path": "platinum_precious_metal_signing_pending_review",
- "component": "views/iframe/index.vue",
- "sort": 20,
- "isshow": true,
- "url": "/qhj/qhjsigncontract/gjsinit",
- "remark": "管理端",
- "auth": [
- {
- "label": "审核",
- "rulekey": "client_pc_web_qhj_gjsqd_waiting_check_tab_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "client_pc_web_qhj_gjsqd_waiting_check_tab_check_info",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "回购待审核",
- "rulekey": "client_pc_web_qhj_gjsqd_repurchase_pending_review_tab",
- "code": "platinum_precious_metal_signing_repurchase_pending_review",
- "path": "platinum_precious_metal_signing_repurchase_pending_review",
- "component": "views/iframe/index.vue",
- "sort": 30,
- "isshow": true,
- "url": "/qhj/qhjsigncontract/gjsinit",
- "remark": "管理端",
- "auth": [
- {
- "label": "回购审核",
- "rulekey": "client_pc_web_qhj_gjsqd_repurchase_pending_review_tab_repurchase_review",
- "code": "reset",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "client_pc_web_qhj_gjsqd_repurchase_pending_review_tab_repurchase_review_info",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "正常",
- "rulekey": "client_pc_web_qhj_gjsqd_normal_tab",
- "code": "platinum_precious_metal_signing_normal",
- "path": "platinum_precious_metal_signing_normal",
- "component": "views/iframe/index.vue",
- "sort": 40,
- "isshow": true,
- "url": "/qhj/qhjsigncontract/gjsinit",
- "remark": "管理端",
- "auth": [
- {
- "label": "付款确认",
- "rulekey": "client_pc_web_qhj_gjsqd_normal_tab_payment_confirmation",
- "code": "close",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "到期回购",
- "rulekey": "client_pc_web_qhj_gjsqd_normal_tab_repurchase_maturity",
- "code": "reset",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "续签合同",
- "rulekey": "client_pc_web_qhj_gjsqd_normal_tab_renew_contract",
- "code": "lock",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "到期未回购",
- "rulekey": "client_pc_web_qiyefengguan_platinum_precious_metal_signing_normal_not_repurchased_after_maturity",
- "code": "unauth",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "退单",
- "rulekey": "client_pc_web_qhj_gjsqd_normal_tab_chargeback",
- "code": "cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "client_pc_web_qhj_gjsqd_normal_tab_chargeback_info",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已完成",
- "rulekey": "client_pc_web_qhj_gjsqd_success_tab",
- "code": "platinum_precious_metal_signing_success",
- "path": "platinum_precious_metal_signing_success",
- "component": "views/iframe/index.vue",
- "sort": 50,
- "isshow": true,
- "url": "/qhj/qhjsigncontract/gjsinit",
- "remark": "管理端",
- "auth": []
- },
- {
- "title": "已退单",
- "rulekey": "client_pc_web_qhj_gjsqd_refunded_tab",
- "code": "platinum_precious_metal_signing_refunded",
- "path": "platinum_precious_metal_signing_refunded",
- "component": "views/iframe/index.vue",
- "sort": 60,
- "isshow": true,
- "url": "/qhj/qhjsigncontract/gjsinit",
- "remark": "管理端",
- "auth": [
- {
- "label": "详情",
- "rulekey": "client_pc_web_qhj_gjsqd_refunded_tab_info",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "全部",
- "rulekey": "client_pc_web_qhj_gjsqd_all_tab",
- "code": "platinum_precious_metal_signing_all",
- "path": "platinum_precious_metal_signing_all",
- "component": "views/iframe/index.vue",
- "sort": 70,
- "isshow": true,
- "url": "/qhj/qhjsigncontract/gjsinit",
- "remark": "管理端",
- "auth": [
- {
- "label": "导出",
- "rulekey": "client_pc_web_qhj_gjsqd_all_tab_export",
- "code": "exportdata",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改基本方式",
- "rulekey": "client_pc_web_qhj_gjsqd_all_tab_modify_basic_way",
- "code": "auth",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改付款方式",
- "rulekey": "client_pc_web_qhj_gjsqd_all_tab_modify_payment_method",
- "code": "user",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "client_pc_web_qhj_gjsqd_all_tab_modify_payment_method_info",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "财务付款",
- "rulekey": "client_pc_web_qhj_cwfk",
- "code": "platinum_financial_payment",
- "path": "platinum_financial_payment",
- "component": "Main",
- "sort": 50,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待转账",
- "rulekey": "client_pc_web_qhj_cwfk_waiting_transfer_tab",
- "code": "platinum_financial_payment_waiting_payment_tab",
- "path": "platinum_financial_payment_waiting_payment_tab",
- "component": "views/iframe/index.vue",
- "sort": 10,
- "isshow": true,
- "url": "/qhj/qhjscpaymentinfo/init",
- "remark": "管理端",
- "auth": [
- {
- "label": "付款",
- "rulekey": "client_pc_web_qhj_cwfk_waiting_transfer_tab_pay",
- "code": "active",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "client_pc_web_qhj_cwfk_waiting_transfer_tab_pay_info",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "内部待转账",
- "rulekey": "client_pc_web_qhj_cwfk_in_waiting_transfer_tab",
- "code": "platinum_financial_payment_in_waiting_payment_tab",
- "path": "platinum_financial_payment_in_waiting_payment_tab",
- "component": "views/iframe/index.vue",
- "sort": 20,
- "isshow": true,
- "url": "/qhj/qhjscpaymentinfo/init",
- "remark": "管理端",
- "auth": [
- {
- "label": "内部转账",
- "rulekey": "client_pc_web_qhj_cwfk_in_waiting_transfer_tab_in_pay",
- "code": "reset",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "client_pc_web_qhj_cwfk_in_waiting_transfer_tab_in_pay_info",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "待付现金",
- "rulekey": "client_pc_web_qhj_cwfk_cash_to_paid_tab",
- "code": "platinum_financial_payment_waiting_payment_cash_tab",
- "path": "platinum_financial_payment_waiting_payment_cash_tab",
- "component": "views/iframe/index.vue",
- "sort": 30,
- "isshow": true,
- "url": "/qhj/qhjscpaymentinfo/init",
- "remark": "管理端",
- "auth": [
- {
- "label": "付款",
- "rulekey": "client_pc_web_qhj_cwfk_cash_to_paid_tab_pay",
- "code": "active",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "client_pc_web_qhj_cwfk_cash_to_paid_tab_pay_info",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已付款",
- "rulekey": "client_pc_web_qhj_cwfk_paid_tab",
- "code": "platinum_financial_payment_payment_tab",
- "path": "platinum_financial_payment_payment_tab",
- "component": "views/iframe/index.vue",
- "sort": 40,
- "isshow": true,
- "url": "/qhj/qhjscpaymentinfo/init",
- "remark": "管理端",
- "auth": [
- {
- "label": "详情",
- "rulekey": "client_pc_web_qhj_cwfk_paid_tab_info",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "收款全部",
- "rulekey": "client_pc_web_qhj_cwfk_all_tab_dadalfjlfkj",
- "code": "platinum_financial_collection_all_tab",
- "path": "platinum_financial_collection_all_tab",
- "component": "views/iframe/index.vue",
- "sort": 70,
- "isshow": true,
- "url": "/qhj/qhjscpaymentinfo/init",
- "remark": "管理端",
- "auth": [
- {
- "label": "导出",
- "rulekey": "client_pc_web_qhj_cwfk_all_tab_export_collection",
- "code": "exportdata",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "client_pc_web_qhj_cwfk_all_tab_export_info_collection",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "付款全部",
- "rulekey": "client_pc_web_qhj_cwfk_all_tab",
- "code": "platinum_financial_payment_all_tab",
- "path": "platinum_financial_payment_all_tab",
- "component": "views/iframe/index.vue",
- "sort": 70,
- "isshow": true,
- "url": "/qhj/qhjscpaymentinfo/init",
- "remark": "管理端",
- "auth": [
- {
- "label": "导出",
- "rulekey": "client_pc_web_qhj_cwfk_all_tab_export",
- "code": "exportdata",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "client_pc_web_qhj_cwfk_all_tab_export_info",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "客户经理",
- "rulekey": "client_pc_web_qhj_khjl",
- "code": "platinum_account_manager",
- "path": "platinum_account_manager",
- "component": "Main",
- "sort": 60,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "客户经理",
- "rulekey": "client_pc_web_qhj_khjl_tab",
- "code": "platinum_account_manager_tab",
- "path": "platinum_account_manager_tab",
- "component": "views/iframe/index.vue",
- "sort": 10,
- "isshow": true,
- "url": "/customer/mange/init",
- "remark": "管理端",
- "auth": [
- {
- "label": "新增",
- "rulekey": "client_pc_web_qhj_khjl_tab_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "client_pc_web_qhj_khjl_tab_modify",
- "code": "edit",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "停用启用",
- "rulekey": "client_pc_web_qhj_khjl_tab_disable_enable",
- "code": "del",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "client_pc_web_qhj_khjl_tab_disable_enable_info",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "贵金属销售报表",
- "rulekey": "client_pc_web_qhj_gjsxsbb",
- "code": "platinum_precious_metal_sales_report",
- "path": "platinum_precious_metal_sales_report",
- "component": "Main",
- "sort": 70,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "公司销售(日报)",
- "rulekey": "client_pc_web_qhj_gjsxsbb_company_sales_tab",
- "code": "platinum_precious_metal_sales_report_company_tab",
- "path": "platinum_precious_metal_sales_report_company_tab",
- "component": "views/iframe/index.vue",
- "sort": 10,
- "isshow": true,
- "url": "/qhj/prosaleday/initview",
- "remark": "管理端",
- "auth": []
- },
- {
- "title": "部门销售",
- "rulekey": "client_pc_web_qhj_gjsxsbb_departmental_sale_tab",
- "code": "platinum_precious_metal_sales_report_departmental_tab",
- "path": "platinum_precious_metal_sales_report_departmental_tab",
- "component": "views/iframe/index.vue",
- "sort": 20,
- "isshow": true,
- "url": "/qhj/prosaleday/initview",
- "remark": "管理端",
- "auth": []
- }
- ]
- },
- {
- "title": "资管销售报表",
- "rulekey": "client_pc_web_qhj_zgxsbb",
- "code": "platinum_asset_management_sale_report",
- "path": "platinum_asset_management_sale_report",
- "component": "Main",
- "sort": 80,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "公司销售(日报)",
- "rulekey": "client_pc_web_qhj_zgxsbb_company_sale_day_tab",
- "code": "platinum_asset_management_sale_report_company_day_tab",
- "path": "platinum_asset_management_sale_report_company_day_tab",
- "component": "views/iframe/index.vue",
- "sort": 10,
- "isshow": true,
- "url": "/qhj/prosaleday/zginitview",
- "remark": "管理端",
- "auth": []
- },
- {
- "title": "公司销售(周报)",
- "rulekey": "client_pc_web_qhj_zgxsbb_company_sale_week_tab",
- "code": "platinum_asset_management_sale_report_company_week_tab",
- "path": "platinum_asset_management_sale_report_company_week_tab",
- "component": "views/iframe/index.vue",
- "sort": 20,
- "isshow": true,
- "url": "/qhj/prosaleday/zginitview",
- "remark": "管理端",
- "auth": []
- },
- {
- "title": "公司销售(月报)",
- "rulekey": "client_pc_web_qhj_zgxsbb_company_sale_month_tab",
- "code": "platinum_asset_management_sale_report_company_month_tab",
- "path": "platinum_asset_management_sale_report_company_month_tab",
- "component": "views/iframe/index.vue",
- "sort": 30,
- "isshow": true,
- "url": "/qhj/prosaleday/zginitview",
- "remark": "管理端",
- "auth": []
- },
- {
- "title": "部门销售(周报)",
- "rulekey": "client_pc_web_qhj_zgxsbb_departmental_sale_week_tab",
- "code": "platinum_precious_metal_sales_report_departmental_week_tab",
- "path": "platinum_precious_metal_sales_report_departmental_week_tab",
- "component": "views/iframe/index.vue",
- "sort": 40,
- "isshow": true,
- "url": "/qhj/prosaleday/zginitview",
- "remark": "管理端",
- "auth": []
- },
- {
- "title": "部门销售(月报)",
- "rulekey": "client_pc_web_qhj_zgxsbb_departmental_sale_month_tab",
- "code": "platinum_precious_metal_sales_report_departmental_month_tab",
- "path": "platinum_precious_metal_sales_report_departmental_month_tab",
- "component": "views/iframe/index.vue",
- "sort": 50,
- "isshow": true,
- "url": "/qhj/prosaleday/zginitview",
- "remark": "管理端",
- "auth": []
- },
- {
- "title": "产品销售(月报)",
- "rulekey": "client_pc_web_qhj_zgxsbb_product_sale_month_tab",
- "code": "platinum_precious_metal_sales_report_product_month_tab",
- "path": "platinum_precious_metal_sales_report_product_month_tab",
- "component": "views/iframe/index.vue",
- "sort": 60,
- "isshow": true,
- "url": "/qhj/prosaleday/zginitview",
- "remark": "管理端",
- "auth": []
- }
- ]
- },
- {
- "title": "客服报表",
- "rulekey": "client_pc_web_qhj_kfbb",
- "code": "platinum_customer_service_report",
- "path": "platinum_customer_service_report",
- "component": "Main",
- "sort": 90,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "达成率报表",
- "rulekey": "client_pc_web_qhj_kfbb_reach_rate_report_tab",
- "code": "platinum_customer_service_report_reach_rate_report_tab",
- "path": "platinum_customer_service_report_reach_rate_report_tab",
- "component": "views/iframe/index.vue",
- "sort": 10,
- "isshow": true,
- "url": "/qhj/customerservice/initview",
- "remark": "管理端",
- "auth": []
- },
- {
- "title": "团队年化业绩排行报表",
- "rulekey": "client_pc_web_qhj_kfbb_team_annualized_performance_ranking_report_tab",
- "code": "platinum_customer_service_report_team_annualized_performance_ranking_report_tab",
- "path": "platinum_customer_service_report_team_annualized_performance_ranking_report_tab",
- "component": "views/iframe/index.vue",
- "sort": 20,
- "isshow": true,
- "url": "/qhj/customerservice/initview",
- "remark": "管理端",
- "auth": []
- },
- {
- "title": "个人年化业绩排行报表",
- "rulekey": "client_pc_web_qhj_kfbb_personal_annualized_performance_ranking_report_tab",
- "code": "platinum_customer_service_report_personal_annualized_performance_ranking_report_tab",
- "path": "platinum_customer_service_report_personal_annualized_performance_ranking_report_tab",
- "component": "views/iframe/index.vue",
- "sort": 30,
- "isshow": true,
- "url": "/qhj/customerservice/initview",
- "remark": "管理端",
- "auth": []
- },
- {
- "title": "团队经理年化业绩排行报表",
- "rulekey": "client_pc_web_qhj_kfbb_team_manager_annualized_performance_ranking_report_tab",
- "code": "platinum_customer_service_report_team_manager_annual_performance_ranking_report_tab",
- "path": "platinum_customer_service_report_team_manager_annual_performance_ranking_report_tab",
- "component": "views/iframe/index.vue",
- "sort": 40,
- "isshow": true,
- "url": "/qhj/customerservice/initview",
- "remark": "管理端",
- "auth": []
- }
- ]
- },
- {
- "title": "业务员业绩报表",
- "rulekey": "client_pc_web_qhj_ywyyjbb",
- "code": "platinum_salesman_performance_report",
- "path": "platinum_salesman_performance_report",
- "component": "Main",
- "sort": 100,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "业务员业绩报表",
- "rulekey": "client_pc_web_qhj_ywyyjbb_tab",
- "code": "platinum_salesman_performance_report_tab",
- "path": "platinum_salesman_performance_report_tab",
- "component": "views/iframe/index.vue",
- "sort": 10,
- "isshow": true,
- "url": "/qhj/reckonbrokerprosaleday/init",
- "remark": "管理端",
- "auth": []
- }
- ]
- },
- {
- "title": "产品销售报表",
- "rulekey": "client_pc_web_qhj_platinum_product_sales_report",
- "code": "platinum_product_sales_report",
- "path": "platinum_product_sales_report",
- "component": "Main",
- "sort": 100,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "产品新增业绩(周报)",
- "rulekey": "client_pc_web_qhj_platinum_product_sales_report_tab",
- "code": "platinum_product_sales_report_tab",
- "path": "platinum_product_sales_report_tab",
- "component": "views/iframe/index.vue",
- "sort": 10,
- "isshow": true,
- "url": "/qhj/prosaleday/productinitview",
- "remark": "管理端",
- "auth": []
- }
- ]
- },
- {
- "title": "客户合同查询",
- "rulekey": "client_pc_web_qhj_platinum_customer_contract_inquiries",
- "code": "platinum_customer_contract_inquiries",
- "path": "platinum_customer_contract_inquiries",
- "component": "Main",
- "sort": 100,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "客户合同查询",
- "rulekey": "client_pc_web_qhj_platinum_customer_contract_inquiries_tab",
- "code": "platinum_customer_contract_inquiries_tab",
- "path": "platinum_customer_contract_inquiries_tab",
- "component": "views/iframe/index.vue",
- "sort": 10,
- "isshow": true,
- "url": "/qhj/qhjsigncontract/contractInit",
- "remark": "管理端",
- "auth": [
- {
- "label": "导出",
- "rulekey": "client_pc_web_platinum_customer_contract_inquiries_tab_export",
- "code": "exportdata",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "client_pc_web_platinum_customer_contract_inquiries_tab_info",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- }
- ]
- }
- ]
|