| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439 |
- [
- {
- "title": "基础设置",
- "rulekey": "info",
- "code": "info",
- "path": "/info",
- "component": "Layout",
- "sort": 1,
- "isshow": true,
- "children": [
- {
- "title": "客户资料",
- "rulekey": "custom",
- "code": "custom",
- "path": "custom",
- "component": "Main",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待审核",
- "rulekey": "custom_checkpending",
- "code": "custom_checkpending",
- "path": "custom_checkpending",
- "component": "views/information/custom/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "新增",
- "rulekey": "custom_checkpending_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "审核",
- "rulekey": "custom_checkpending_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "正常",
- "rulekey": "custom_normal",
- "code": "custom_normal",
- "path": "custom_normal",
- "component": "views/information/custom/index.vue",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "新增",
- "rulekey": "custom_normal_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "custom_normal_modify",
- "code": "modify",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "停用",
- "rulekey": "custom_normal_disable",
- "code": "disable",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "停用",
- "rulekey": "custom_disabled",
- "code": "custom_disabled",
- "path": "custom_disabled",
- "component": "views/information/custom/index.vue",
- "sort": 3,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": [
- {
- "label": "新增",
- "rulekey": "custom_disabled_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "恢复",
- "rulekey": "custom_disabled_recover",
- "code": "recover",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "商品设置",
- "rulekey": "goods",
- "code": "goods",
- "path": "goods",
- "component": "Main",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "现货品种",
- "rulekey": "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": "goods_spot_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "goods_spot_edit",
- "code": "edit",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "停用",
- "rulekey": "goods_spot_stop",
- "code": "stop",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "恢复",
- "rulekey": "goods_spot_recover",
- "code": "recover",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "套保品种",
- "rulekey": "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": "goods_hedge_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "goods_hedge_edit",
- "code": "edit",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "仓库信息",
- "rulekey": "warehouse",
- "code": "warehouse",
- "path": "warehouse",
- "component": "Main",
- "sort": 3,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "正常",
- "rulekey": "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": "warehouse_normal_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "warehouse_normal_modify",
- "code": "modify",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "停用",
- "rulekey": "warehouse_normal_disable",
- "code": "disable",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "停用",
- "rulekey": "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": "warehouse_disabled_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "恢复",
- "rulekey": "warehouse_disabled_recover",
- "code": "recover",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "主体设置",
- "rulekey": "company",
- "code": "company",
- "path": "company",
- "component": "Main",
- "sort": 3,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "正常",
- "rulekey": "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": "company_normal_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "company_normal_modify",
- "code": "edit",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "停用",
- "rulekey": "company_normal_disable",
- "code": "del",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "停用",
- "rulekey": "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": "company_disabled_recover",
- "code": "active",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "账户管理",
- "rulekey": "account",
- "code": "account",
- "path": "account",
- "component": "Main",
- "sort": 4,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "现货账户",
- "rulekey": "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": "account_spot_add",
- "code": "account_spot_add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "account_spot_modify",
- "code": "account_spot_modify",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "重置密码",
- "rulekey": "account_spot_resetpwd",
- "code": "account_spot_resetpwd",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "锁定",
- "rulekey": "account_spot_locked",
- "code": "account_spot_locked",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "解锁",
- "rulekey": "account_spot_unlocked",
- "code": "account_spot_unlocked",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "注销",
- "rulekey": "account_spot_cancel",
- "code": "account_spot_cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "交易账户",
- "rulekey": "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": "account_trade_add",
- "code": "account_trade_add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "account_trade_modify",
- "code": "account_trade_modify",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "新增",
- "rulekey": "account_trade_child_add",
- "code": "account_trade_child_add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "account_trade_child_modify",
- "code": "account_trade_child_modify",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "重置密码",
- "rulekey": "account_trade_child_reset",
- "code": "account_trade_child_reset",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "锁定",
- "rulekey": "account_trade_child_locked",
- "code": "account_trade_child_locked",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "解锁",
- "rulekey": "account_trade_child_unlocked",
- "code": "account_trade_child_unlocked",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "注销",
- "rulekey": "account_trade_child_cancel",
- "code": "account_trade_child_cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "管理账户",
- "rulekey": "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": "account_manager_add",
- "code": "account_manager_add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "权限设置",
- "rulekey": "account_manager_setting",
- "code": "account_manager_setting",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "新增",
- "rulekey": "account_manager_child_add",
- "code": "account_manager_child_add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "account_manager_child_modify",
- "code": "account_manager_child_modify",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "重置密码",
- "rulekey": "account_manager_child_reset",
- "code": "account_manager_child_reset",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "锁定",
- "rulekey": "account_manager_child_locked",
- "code": "account_manager_child_locked",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "解锁",
- "rulekey": "account_manager_child_unlocked",
- "code": "account_manager_child_unlocked",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "注销",
- "rulekey": "account_manager_child_cancel",
- "code": "account_manager_child_cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "期货账户",
- "rulekey": "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": "account_futures_setting",
- "code": "account_futures_setting",
- "isshow": false,
- "remark": ""
- },
- {
- "label": "新增",
- "rulekey": "account_futures_add",
- "code": "account_futures_add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "account_futures_modify",
- "code": "account_futures_modify",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "新增",
- "rulekey": "account_futures_child_add",
- "code": "account_futures_child_add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "account_futures_child_modify",
- "code": "account_futures_child_modify",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "授信",
- "rulekey": "account_futures_child_credit",
- "code": "account_futures_child_credit",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "注销",
- "rulekey": "account_futures_child_cancel",
- "code": "account_futures_child_cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "审核设置",
- "rulekey": "audit",
- "code": "audit",
- "path": "audit",
- "component": "Main",
- "sort": 4,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "审核设置",
- "rulekey": "audit_setting",
- "code": "audit_setting",
- "path": "audit_setting",
- "component": "views/iframe/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "管理端",
- "auth": []
- }
- ]
- }
- ]
- },
- {
- "title": "现货套保",
- "rulekey": "business",
- "code": "business",
- "path": "/business",
- "component": "Layout",
- "sort": 2,
- "isshow": true,
- "children": [
- {
- "title": "采购合同",
- "rulekey": "purchase",
- "code": "purchase",
- "path": "purchase",
- "component": "Main",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待点价合同",
- "rulekey": "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": "purchase_pending_someprice",
- "code": "purchase_pending_someprice",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "套保交易",
- "rulekey": "purchase_pending_trade",
- "code": "purchase_pending_trade",
- "isshow": false,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "待交收合同",
- "rulekey": "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": "purchase_performance_settlement",
- "code": "purchase_performance_settlement",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "款项登记",
- "rulekey": "purchase_performance_funds",
- "code": "purchase_performance_funds",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "发票登记",
- "rulekey": "purchase_performance_invoice",
- "code": "purchase_performance_invoice",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "入库登记",
- "rulekey": "purchase_performance_storage",
- "code": "purchase_performance_storage",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "完结合同",
- "rulekey": "purchase_performance_ending",
- "code": "purchase_performance_ending",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "新增合同",
- "rulekey": "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": "purchase_contract_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "重新提交",
- "rulekey": "purchase_contract_resubmit",
- "code": "resubmit",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "撤回",
- "rulekey": "purchase_contract_delete",
- "code": "cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已完成合同",
- "rulekey": "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": "sell",
- "code": "sell",
- "path": "sell",
- "component": "Main",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待点价合同",
- "rulekey": "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": "sell_pending_someprice",
- "code": "sell_pending_someprice",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "套保交易",
- "rulekey": "sell_pending_trade",
- "code": "sell_pending_trade",
- "isshow": false,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "待交收合同",
- "rulekey": "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": "sell_performance_settlement",
- "code": "sell_performance_settlement",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "款项登记",
- "rulekey": "sell_performance_funds",
- "code": "sell_performance_funds",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "发票登记",
- "rulekey": "sell_performance_invoice",
- "code": "sell_performance_invoice",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "出库登记",
- "rulekey": "sell_performance_storage",
- "code": "sell_performance_storage",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "完结合同",
- "rulekey": "sell_performance_ending",
- "code": "sell_performance_ending",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "新增合同",
- "rulekey": "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": "sell_contract_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "重新提交",
- "rulekey": "sell_contract_resubmit",
- "code": "resubmit",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "撤回",
- "rulekey": "sell_contract_delete",
- "code": "cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已完成合同",
- "rulekey": "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": "plan",
- "code": "plan",
- "path": "plan",
- "component": "Main",
- "sort": 3,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "执行中计划",
- "rulekey": "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": "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": "plan_uncommitted_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "修改",
- "rulekey": "plan_uncommitted_modify",
- "code": "modify",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "审核",
- "rulekey": "plan_uncommitted_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "重新提交",
- "rulekey": "plan_uncommitted_resubmit",
- "code": "resubmit",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "撤销",
- "rulekey": "plan_uncommitted_cancel",
- "code": "cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "删除",
- "rulekey": "plan_uncommitted_delete",
- "code": "delete",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "现货查询",
- "rulekey": "search_spot",
- "code": "search_spot",
- "path": "search_spot",
- "component": "Main",
- "sort": 4,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "采购合同",
- "rulekey": "search_purchase",
- "code": "search_purchase",
- "path": "search_purchase",
- "component": "views/business/search/spot/index.vue",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": []
- },
- {
- "title": "销售合同",
- "rulekey": "search_sell",
- "code": "search_sell",
- "path": "search_sell",
- "component": "views/business/search/spot/index.vue",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": []
- },
- {
- "title": "购销计划",
- "rulekey": "search_plan",
- "code": "search_plan",
- "path": "search_plan",
- "component": "views/business/search/plan/index.vue",
- "sort": 3,
- "isshow": true,
- "url": "",
- "remark": "",
- "auth": []
- }
- ]
- },
- {
- "title": "期现关联",
- "rulekey": "futures_spot",
- "code": "futures_spot",
- "path": "futures_spot",
- "component": "Main",
- "sort": 5,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "外部成交单关联",
- "rulekey": "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": "futures_spot_finish_bind",
- "code": "relation",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "解除关联",
- "rulekey": "futures_spot_finish_unbind",
- "code": "del",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "期现单据关联",
- "rulekey": "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": "futures_spot_order_add",
- "code": "supplerelation",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "关联",
- "rulekey": "futures_spot_order_bind",
- "code": "relation",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "关联记录",
- "rulekey": "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": "futures_spot_record_unbind",
- "code": "del",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "现货参考价",
- "rulekey": "spotmarket",
- "code": "spotmarket",
- "path": "spotmarket",
- "component": "Main",
- "sort": 6,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "现货参考价",
- "rulekey": "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": "spotmarket_price_modify",
- "code": "modify",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "title": "风险管理",
- "rulekey": "riskmanage",
- "code": "riskmanage",
- "path": "/riskmanage",
- "component": "Layout",
- "sort": 3,
- "isshow": true,
- "children": [
- {
- "title": "实时敞口",
- "rulekey": "exposure_realtime",
- "code": "exposure_realtime",
- "path": "exposure_realtime",
- "component": "Main",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "实时敞口",
- "rulekey": "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": "exposure_realtime_index_add",
- "code": "exposure_realtime_index_add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "现货明细",
- "rulekey": "exposure_realtime_spot_details",
- "code": "exposure_realtime_spot_details",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "期货明细",
- "rulekey": "exposure_realtime_futures_details",
- "code": "exposure_realtime_futures_details",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "参数变动明细",
- "rulekey": "exposure_realtime_params_details",
- "code": "exposure_realtime_params_details",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "头寸查询",
- "rulekey": "position",
- "code": "position",
- "path": "position",
- "component": "Main",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "现货商品头寸",
- "rulekey": "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": "position_spot_details",
- "code": "position_spot_details",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "期货持仓头寸",
- "rulekey": "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": "position_futures_details",
- "code": "position_futures_details",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "历史敞口",
- "rulekey": "exposure_history",
- "code": "exposure_history",
- "path": "exposure_history",
- "component": "Main",
- "sort": 3,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "历史敞口",
- "rulekey": "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": "riskreview",
- "code": "riskreview",
- "path": "/riskreview",
- "component": "Layout",
- "sort": 4,
- "isshow": true,
- "children": [
- {
- "title": "套保比例审核",
- "rulekey": "hedge_ratio",
- "code": "hedge_ratio",
- "path": "hedge_ratio",
- "component": "Main",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待审核",
- "rulekey": "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": "hedge_ratio_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已审核",
- "rulekey": "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": "spot_params",
- "code": "spot_params",
- "path": "spot_params",
- "component": "Main",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待审核",
- "rulekey": "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": "spot_params_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "info",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已审核",
- "rulekey": "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": "spotreview",
- "code": "spotreview",
- "path": "/spotreview",
- "component": "Layout",
- "sort": 5,
- "isshow": true,
- "children": [
- {
- "title": "合同审核",
- "rulekey": "contract",
- "code": "contract",
- "path": "contract",
- "component": "Main",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待审核",
- "rulekey": "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": "contract_checkpending_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "撤销",
- "rulekey": "contract_checkpending_cancel",
- "code": "cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已审核",
- "rulekey": "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": "someprice",
- "code": "someprice",
- "path": "someprice",
- "component": "Main",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待审核",
- "rulekey": "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": "someprice_checkpending_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "撤销",
- "rulekey": "someprice_checkpending_cancel",
- "code": "cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已审核",
- "rulekey": "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": "settlement",
- "code": "settlement",
- "path": "settlement",
- "component": "Main",
- "sort": 3,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待审核",
- "rulekey": "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": "settlement_checkpending_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "撤销",
- "rulekey": "settlement_checkpending_cancel",
- "code": "cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已审核",
- "rulekey": "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": "plan_audit",
- "code": "plan_audit",
- "path": "plan_audit",
- "component": "Main",
- "sort": 4,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待审核",
- "rulekey": "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": "plan_checkpending_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "撤销",
- "rulekey": "plan_checkpending_cancel",
- "code": "cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已审核",
- "rulekey": "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": "stock",
- "code": "stock",
- "path": "stock",
- "component": "Main",
- "sort": 5,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待审核",
- "rulekey": "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": "stock_checkpending_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "撤销",
- "rulekey": "stock_checkpending_cancel",
- "code": "cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已审核",
- "rulekey": "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": "inventory",
- "code": "inventory",
- "path": "/inventory",
- "component": "Layout",
- "sort": 6,
- "isshow": true,
- "children": [
- {
- "title": "库存管理",
- "rulekey": "inventory_manage",
- "code": "inventory_manage",
- "path": "inventory_manage",
- "component": "Main",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "库存管理",
- "rulekey": "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": "inventory_management_add",
- "code": "add",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "入库明细",
- "rulekey": "inventory_manager_inbound_details",
- "code": "inventory_manager_inbound_details",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "出库明细",
- "rulekey": "inventory_manager_outbound_details",
- "code": "inventory_manager_outbound_details",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "title": "财务审核",
- "rulekey": "financereview",
- "code": "financereview",
- "path": "/financereview",
- "component": "Layout",
- "sort": 7,
- "isshow": true,
- "children": [
- {
- "title": "发票审核",
- "rulekey": "invoice",
- "code": "invoice",
- "path": "invoice",
- "component": "Main",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待审核",
- "rulekey": "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": "invoice_checkpending_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "撤销",
- "rulekey": "invoice_checkpending_cancel",
- "code": "cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已审核",
- "rulekey": "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": "funds",
- "code": "funds",
- "path": "funds",
- "component": "Main",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "待审核",
- "rulekey": "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": "funds_checkpending_check",
- "code": "check",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "撤销",
- "rulekey": "funds_checkpending_cancel",
- "code": "cancel",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "详情",
- "rulekey": "",
- "code": "detail",
- "isshow": true,
- "remark": ""
- }
- ]
- },
- {
- "title": "已审核",
- "rulekey": "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": "report",
- "code": "report",
- "path": "/report",
- "component": "Layout",
- "sort": 8,
- "isshow": true,
- "children": [
- {
- "title": "现货报表",
- "rulekey": "spot_report",
- "code": "spot_report",
- "path": "spot_report",
- "component": "Main",
- "sort": 1,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "现货报表",
- "rulekey": "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": "spot_report_spot_detail",
- "code": "spot_report_spot_detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "敞口报表",
- "rulekey": "exposure_report",
- "code": "exposure_report",
- "path": "exposure_report",
- "component": "Main",
- "sort": 2,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "敞口报表",
- "rulekey": "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": "exposure_report_exposure_contract_changes",
- "code": "exposure_report_exposure_contract_changes",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "套保计划变动量明细",
- "rulekey": "exposure_report_exposure_hedging_plan",
- "code": "exposure_report_exposure_hedging_plan",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "期货变动量明细",
- "rulekey": "exposure_report_exposure_futures_changes",
- "code": "exposure_report_exposure_futures_changes",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "参数调整变动量明细",
- "rulekey": "exposure_report_exposure_parameter_adjustment_changes",
- "code": "exposure_report_exposure_parameter_adjustment_changes",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "期货报表",
- "rulekey": "future_report",
- "code": "future_report",
- "path": "future_report",
- "component": "Main",
- "sort": 3,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "期货报表",
- "rulekey": "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": "future_report_future_detail",
- "code": "future_report_future_detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "财务报表",
- "rulekey": "finance_report",
- "code": "finance_report",
- "path": "finance_report",
- "component": "Main",
- "sort": 4,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "财务报表",
- "rulekey": "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": "finance_report_finance_category_breakdown",
- "code": "finance_report_finance_category_breakdown",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "品牌明细",
- "rulekey": "finance_report_finance_brand_details",
- "code": "finance_report_finance_brand_details",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "库存报表",
- "rulekey": "inventory_report",
- "code": "inventory_report",
- "path": "inventory_report",
- "component": "Main",
- "sort": 5,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "库存报表",
- "rulekey": "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": "inventory_report_inventory_category_brand_detail",
- "code": "inventory_report_inventory_category_brand_detail",
- "isshow": true,
- "remark": ""
- },
- {
- "label": "仓库明细",
- "rulekey": "inventory_report_inventory_category_warehouse_detail",
- "code": "inventory_report_inventory_category_warehouse_detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "仓库报表",
- "rulekey": "warehouse_report",
- "code": "warehouse_report",
- "path": "warehouse_report",
- "component": "Main",
- "sort": 6,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "仓库报表",
- "rulekey": "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": "warehouse_report_warehouse_detail",
- "code": "warehouse_report_warehouse_detail",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "汇总报表",
- "rulekey": "sum_pl_report",
- "code": "sum_pl_report",
- "path": "sum_pl_report",
- "component": "Main",
- "sort": 7,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "汇总报表",
- "rulekey": "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": "sum_pl_report_profit_and_loss_details",
- "code": "sum_pl_report_profit_and_loss_details",
- "isshow": true,
- "remark": ""
- }
- ]
- }
- ]
- },
- {
- "title": "定价报表",
- "rulekey": "price_report",
- "code": "price_report",
- "path": "price_report",
- "component": "Main",
- "sort": 8,
- "isshow": true,
- "url": "",
- "remark": "",
- "children": [
- {
- "title": "定价报表",
- "rulekey": "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": []
- }
- ]
- }
- ]
- }
- ]
|