pcweb_menu_ermcp.json 192 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362
  1. [
  2. {
  3. "title": "底部单据菜单",
  4. "rulekey": "client_pc_web_order_bottom",
  5. "code": "bottom",
  6. "sort": 1,
  7. "isshow": true,
  8. "component": "layout/index.vue",
  9. "path": "",
  10. "children": [
  11. {
  12. "title": "期货订单",
  13. "rulekey": "client_pc_web_qiyefengguan_futures_information",
  14. "code": "futures_information",
  15. "sort": 1,
  16. "isshow": true,
  17. "component": "views/order/futures_information/index.vue",
  18. "path": "",
  19. "url": "",
  20. "remark": "",
  21. "children": [
  22. {
  23. "title": "持仓",
  24. "rulekey": "client_pc_web_qiyefengguan_futures_information_position",
  25. "code": "futures_information_position",
  26. "sort": 1,
  27. "isshow": true,
  28. "component": "components/futures_information_position/index.vue",
  29. "path": "",
  30. "url": "",
  31. "remark": "",
  32. "auth": [
  33. {
  34. "label": "平仓",
  35. "rulekey": "client_pc_web_qiyefengguan_futures_information_position_close",
  36. "code": "close",
  37. "isshow": true,
  38. "remark": ""
  39. }
  40. ]
  41. },
  42. {
  43. "title": "委托",
  44. "rulekey": "client_pc_web_qiyefengguan_futures_information_entrust",
  45. "code": "futures_information_entrust",
  46. "sort": 2,
  47. "isshow": true,
  48. "component": "components/futures_information_entrust/index.vue",
  49. "path": "",
  50. "url": "",
  51. "remark": "",
  52. "auth": [
  53. {
  54. "label": "撤单",
  55. "rulekey": "client_pc_web_qiyefengguan_futures_information_entrust_cancel",
  56. "code": "cancel",
  57. "isshow": true,
  58. "remark": ""
  59. }
  60. ]
  61. },
  62. {
  63. "title": "成交",
  64. "rulekey": "client_pc_web_qiyefengguan_futures_information_success",
  65. "code": "futures_information_success",
  66. "sort": 3,
  67. "isshow": true,
  68. "component": "components/futures_information_success/index.vue",
  69. "path": "",
  70. "url": "",
  71. "remark": "",
  72. "auth": []
  73. }
  74. ]
  75. },
  76. {
  77. "title": "资金信息",
  78. "rulekey": "client_pc_web_qiyefengguan_funding_information",
  79. "code": "funding_information",
  80. "sort": 2,
  81. "isshow": true,
  82. "component": "views/order/funding_information/index.vue",
  83. "path": "",
  84. "url": "",
  85. "remark": "",
  86. "children": [
  87. {
  88. "title": "资金汇总",
  89. "rulekey": "client_pc_web_qiyefengguan_funding_information_summary",
  90. "code": "funding_information_summary",
  91. "sort": 1,
  92. "isshow": true,
  93. "component": "components/funding_information_funding_summary/index.vue",
  94. "path": "",
  95. "url": "",
  96. "remark": "",
  97. "auth": []
  98. },
  99. {
  100. "title": "资金流水",
  101. "rulekey": "client_pc_web_qiyefengguan_funding_information_log",
  102. "code": "funding_information_log",
  103. "sort": 2,
  104. "isshow": true,
  105. "component": "components/funding_information_funding_log/index.vue",
  106. "path": "",
  107. "url": "",
  108. "remark": "",
  109. "auth": []
  110. }
  111. ]
  112. }
  113. ]
  114. },
  115. {
  116. "title": "市场",
  117. "rulekey": "client_pc_web_common_market",
  118. "code": "market",
  119. "path": "/market",
  120. "component": "Layout",
  121. "sort": 1,
  122. "isshow": true,
  123. "children": [
  124. {
  125. "title": "期货市场",
  126. "rulekey": "client_pc_web_market_futures",
  127. "code": "market_futures",
  128. "path": "market_futures",
  129. "component": "Main",
  130. "sort": 1,
  131. "isshow": true,
  132. "url": "",
  133. "remark": "",
  134. "children": [
  135. {
  136. "title": "期货市场",
  137. "rulekey": "client_pc_web_market_futures_tab",
  138. "code": "market_futures_tab",
  139. "path": "market_futures_tab",
  140. "component": "views/market/futures/index.vue",
  141. "sort": 1,
  142. "isshow": true,
  143. "url": "",
  144. "remark": "",
  145. "auth": [
  146. {
  147. "label": "交易",
  148. "rulekey": "market_futures_tab_trade",
  149. "code": "trade",
  150. "isshow": true,
  151. "remark": ""
  152. },
  153. {
  154. "label": "图表",
  155. "code": "chart",
  156. "isshow": true,
  157. "remark": ""
  158. }
  159. ]
  160. }
  161. ]
  162. }
  163. ]
  164. },
  165. {
  166. "title": "基础设置",
  167. "rulekey": "client_pc_web_qiyefengguan_info",
  168. "code": "info",
  169. "path": "/info",
  170. "component": "Layout",
  171. "sort": 1,
  172. "isshow": true,
  173. "children": [
  174. {
  175. "title": "客户资料",
  176. "rulekey": "client_pc_web_qiyefengguan_custom",
  177. "code": "custom",
  178. "path": "custom",
  179. "component": "Main",
  180. "sort": 1,
  181. "isshow": true,
  182. "url": "",
  183. "remark": "",
  184. "children": [
  185. {
  186. "title": "未提交",
  187. "rulekey": "client_pc_web_qiyefengguan_custom_unsubmit",
  188. "code": "custom_unsubmit",
  189. "path": "custom_unsubmit",
  190. "component": "views/information/custom/index.vue",
  191. "sort": 1,
  192. "isshow": true,
  193. "url": "",
  194. "remark": "",
  195. "auth": [
  196. {
  197. "label": "修改",
  198. "rulekey": "client_pc_web_qiyefengguan_custom_unsubmit_modify",
  199. "code": "modify",
  200. "isshow": true,
  201. "remark": ""
  202. },
  203. {
  204. "label": "删除",
  205. "rulekey": "client_pc_web_qiyefengguan_custom_unsubmit_delete",
  206. "code": "delete",
  207. "isshow": true,
  208. "remark": ""
  209. },
  210. {
  211. "label": "撤销",
  212. "rulekey": "client_pc_web_qiyefengguan_custom_unsubmit_cancel",
  213. "code": "cancel",
  214. "isshow": true,
  215. "remark": ""
  216. },
  217. {
  218. "label": "详情",
  219. "rulekey": "",
  220. "code": "detail",
  221. "isshow": true,
  222. "remark": ""
  223. }
  224. ]
  225. },
  226. {
  227. "title": "待审核",
  228. "rulekey": "client_pc_web_qiyefengguan_custom_checkpending",
  229. "code": "custom_checkpending",
  230. "path": "custom_checkpending",
  231. "component": "views/information/custom/index.vue",
  232. "sort": 1,
  233. "isshow": true,
  234. "url": "",
  235. "remark": "",
  236. "auth": [
  237. {
  238. "label": "新增",
  239. "rulekey": "client_pc_web_qiyefengguan_custom_checkpending_add",
  240. "code": "add",
  241. "isshow": true,
  242. "remark": ""
  243. },
  244. {
  245. "label": "审核",
  246. "rulekey": "client_pc_web_qiyefengguan_custom_checkpending_check",
  247. "code": "check",
  248. "isshow": true,
  249. "remark": ""
  250. },
  251. {
  252. "label": "详情",
  253. "rulekey": "",
  254. "code": "detail",
  255. "isshow": true,
  256. "remark": ""
  257. }
  258. ]
  259. },
  260. {
  261. "title": "正常",
  262. "rulekey": "client_pc_web_qiyefengguan_custom_normal",
  263. "code": "custom_normal",
  264. "path": "custom_normal",
  265. "component": "views/information/custom/index.vue",
  266. "sort": 2,
  267. "isshow": true,
  268. "url": "",
  269. "remark": "",
  270. "auth": [
  271. {
  272. "label": "新增",
  273. "rulekey": "client_pc_web_qiyefengguan_custom_normal_add",
  274. "code": "add",
  275. "isshow": true,
  276. "remark": ""
  277. },
  278. {
  279. "label": "修改",
  280. "rulekey": "client_pc_web_qiyefengguan_custom_normal_modify",
  281. "code": "modify",
  282. "isshow": true,
  283. "remark": ""
  284. },
  285. {
  286. "label": "停用",
  287. "rulekey": "client_pc_web_qiyefengguan_custom_normal_disable",
  288. "code": "disable",
  289. "isshow": true,
  290. "remark": ""
  291. },
  292. {
  293. "label": "详情",
  294. "rulekey": "",
  295. "code": "detail",
  296. "isshow": true,
  297. "remark": ""
  298. }
  299. ]
  300. },
  301. {
  302. "title": "停用",
  303. "rulekey": "client_pc_web_qiyefengguan_custom_disabled",
  304. "code": "custom_disabled",
  305. "path": "custom_disabled",
  306. "component": "views/information/custom/index.vue",
  307. "sort": 3,
  308. "isshow": true,
  309. "url": "",
  310. "remark": "",
  311. "auth": [
  312. {
  313. "label": "新增",
  314. "rulekey": "client_pc_web_qiyefengguan_custom_disabled_add",
  315. "code": "add",
  316. "isshow": true,
  317. "remark": ""
  318. },
  319. {
  320. "label": "恢复",
  321. "rulekey": "client_pc_web_qiyefengguan_custom_disabled_recover",
  322. "code": "recover",
  323. "isshow": true,
  324. "remark": ""
  325. },
  326. {
  327. "label": "删除",
  328. "rulekey": "client_pc_web_qiyefengguan_custom_disabled_delete",
  329. "code": "delete",
  330. "isshow": true,
  331. "remark": ""
  332. },
  333. {
  334. "label": "详情",
  335. "rulekey": "",
  336. "code": "detail",
  337. "isshow": true,
  338. "remark": ""
  339. }
  340. ]
  341. }
  342. ]
  343. },
  344. {
  345. "title": "商品设置",
  346. "rulekey": "client_pc_web_qiyefengguan_goods",
  347. "code": "goods",
  348. "path": "goods",
  349. "component": "Main",
  350. "sort": 2,
  351. "isshow": true,
  352. "url": "",
  353. "remark": "",
  354. "children": [
  355. {
  356. "title": "现货品种",
  357. "rulekey": "client_pc_web_qiyefengguan_goods_spot",
  358. "code": "goods_spot",
  359. "path": "goods_spot",
  360. "component": "views/iframe/index.vue",
  361. "sort": 1,
  362. "isshow": true,
  363. "url": "/ermcp/deliverygoodscommon/init",
  364. "remark": "管理端",
  365. "auth": [
  366. {
  367. "label": "新增",
  368. "rulekey": "client_pc_web_qiyefengguan_goods_spot_add",
  369. "code": "add",
  370. "isshow": true,
  371. "remark": ""
  372. },
  373. {
  374. "label": "修改",
  375. "rulekey": "client_pc_web_qiyefengguan_goods_spot_edit",
  376. "code": "edit",
  377. "isshow": true,
  378. "remark": ""
  379. },
  380. {
  381. "label": "停用",
  382. "rulekey": "client_pc_web_qiyefengguan_goods_spot_stop",
  383. "code": "stop",
  384. "isshow": true,
  385. "remark": ""
  386. },
  387. {
  388. "label": "恢复",
  389. "rulekey": "client_pc_web_qiyefengguan_goods_spot_recover",
  390. "code": "recover",
  391. "isshow": true,
  392. "remark": ""
  393. },
  394. {
  395. "label": "详情",
  396. "rulekey": "",
  397. "code": "info",
  398. "isshow": true,
  399. "remark": ""
  400. }
  401. ]
  402. },
  403. {
  404. "title": "套保品种",
  405. "rulekey": "client_pc_web_qiyefengguan_goods_hedge",
  406. "code": "goods_hedge",
  407. "path": "goods_hedge",
  408. "component": "views/iframe/index.vue",
  409. "sort": 2,
  410. "isshow": true,
  411. "url": "/ermcp/deliverygoodscommon/init",
  412. "remark": "管理端",
  413. "auth": [
  414. {
  415. "label": "新增",
  416. "rulekey": "client_pc_web_qiyefengguan_goods_hedge_add",
  417. "code": "add",
  418. "isshow": true,
  419. "remark": ""
  420. },
  421. {
  422. "label": "修改",
  423. "rulekey": "client_pc_web_qiyefengguan_goods_hedge_edit",
  424. "code": "edit",
  425. "isshow": true,
  426. "remark": ""
  427. },
  428. {
  429. "label": "详情",
  430. "rulekey": "",
  431. "code": "info",
  432. "isshow": true,
  433. "remark": ""
  434. }
  435. ]
  436. }
  437. ]
  438. },
  439. {
  440. "title": "仓库信息",
  441. "rulekey": "client_pc_web_qiyefengguan_warehouse",
  442. "code": "warehouse",
  443. "path": "warehouse",
  444. "component": "Main",
  445. "sort": 3,
  446. "isshow": true,
  447. "url": "",
  448. "remark": "",
  449. "children": [
  450. {
  451. "title": "正常",
  452. "rulekey": "client_pc_web_qiyefengguan_warehouse_normal",
  453. "code": "warehouse_normal",
  454. "path": "warehouse_normal",
  455. "component": "views/information/warehouse-info/list/normal-use/index.vue",
  456. "sort": 1,
  457. "isshow": true,
  458. "url": "",
  459. "remark": "",
  460. "auth": [
  461. {
  462. "label": "新增",
  463. "rulekey": "client_pc_web_qiyefengguan_warehouse_normal_add",
  464. "code": "add",
  465. "isshow": true,
  466. "remark": ""
  467. },
  468. {
  469. "label": "修改",
  470. "rulekey": "client_pc_web_qiyefengguan_warehouse_normal_modify",
  471. "code": "modify",
  472. "isshow": true,
  473. "remark": ""
  474. },
  475. {
  476. "label": "停用",
  477. "rulekey": "client_pc_web_qiyefengguan_warehouse_normal_disable",
  478. "code": "disable",
  479. "isshow": true,
  480. "remark": ""
  481. },
  482. {
  483. "label": "详情",
  484. "rulekey": "",
  485. "code": "detail",
  486. "isshow": true,
  487. "remark": ""
  488. }
  489. ]
  490. },
  491. {
  492. "title": "停用",
  493. "rulekey": "client_pc_web_qiyefengguan_warehouse_disabled",
  494. "code": "warehouse_disabled",
  495. "path": "warehouse_disabled",
  496. "component": "views/information/warehouse-info/list/normal-use/index.vue",
  497. "sort": 2,
  498. "isshow": true,
  499. "url": "",
  500. "remark": "",
  501. "auth": [
  502. {
  503. "label": "新增",
  504. "rulekey": "client_pc_web_qiyefengguan_warehouse_disabled_add",
  505. "code": "add",
  506. "isshow": true,
  507. "remark": ""
  508. },
  509. {
  510. "label": "恢复",
  511. "rulekey": "client_pc_web_qiyefengguan_warehouse_disabled_recover",
  512. "code": "recover",
  513. "isshow": true,
  514. "remark": ""
  515. },
  516. {
  517. "label": "详情",
  518. "rulekey": "",
  519. "code": "detail",
  520. "isshow": true,
  521. "remark": ""
  522. }
  523. ]
  524. }
  525. ]
  526. },
  527. {
  528. "title": "主体设置",
  529. "rulekey": "client_pc_web_qiyefengguan_company",
  530. "code": "company",
  531. "path": "company",
  532. "component": "Main",
  533. "sort": 3,
  534. "isshow": true,
  535. "url": "",
  536. "remark": "",
  537. "children": [
  538. {
  539. "title": "正常",
  540. "rulekey": "client_pc_web_qiyefengguan_company_normal",
  541. "code": "company_normal",
  542. "path": "company_normal",
  543. "component": "views/iframe/index.vue",
  544. "sort": 1,
  545. "isshow": true,
  546. "url": "/ermcp/ermcppaareasubject/jyztinit",
  547. "remark": "管理端",
  548. "auth": [
  549. {
  550. "label": "新增",
  551. "rulekey": "client_pc_web_qiyefengguan_company_normal_add",
  552. "code": "add",
  553. "isshow": true,
  554. "remark": ""
  555. },
  556. {
  557. "label": "修改",
  558. "rulekey": "client_pc_web_qiyefengguan_company_normal_modify",
  559. "code": "edit",
  560. "isshow": true,
  561. "remark": ""
  562. },
  563. {
  564. "label": "停用",
  565. "rulekey": "client_pc_web_qiyefengguan_company_normal_disable",
  566. "code": "del",
  567. "isshow": true,
  568. "remark": ""
  569. }
  570. ]
  571. },
  572. {
  573. "title": "停用",
  574. "rulekey": "client_pc_web_qiyefengguan_company_disabled",
  575. "code": "company_disabled",
  576. "path": "company_disabled",
  577. "component": "views/iframe/index.vue",
  578. "sort": 2,
  579. "isshow": true,
  580. "url": "/ermcp/ermcppaareasubject/jyztinit",
  581. "remark": "管理端",
  582. "auth": [
  583. {
  584. "label": "恢复",
  585. "rulekey": "client_pc_web_qiyefengguan_company_disabled_recover",
  586. "code": "active",
  587. "isshow": true,
  588. "remark": ""
  589. }
  590. ]
  591. }
  592. ]
  593. },
  594. {
  595. "title": "账户管理",
  596. "rulekey": "client_pc_web_qiyefengguan_account",
  597. "code": "account",
  598. "path": "account",
  599. "component": "Main",
  600. "sort": 4,
  601. "isshow": true,
  602. "url": "",
  603. "remark": "",
  604. "children": [
  605. {
  606. "title": "现货账户",
  607. "rulekey": "client_pc_web_qiyefengguan_account_spot",
  608. "code": "account_spot",
  609. "path": "account_spot",
  610. "component": "views/information/account_info/list/account_info_business/index.vue",
  611. "sort": 1,
  612. "isshow": true,
  613. "url": "",
  614. "remark": "",
  615. "auth": [
  616. {
  617. "label": "新增",
  618. "rulekey": "client_pc_web_qiyefengguan_account_spot_add",
  619. "code": "account_spot_add",
  620. "isshow": true,
  621. "remark": ""
  622. },
  623. {
  624. "label": "修改",
  625. "rulekey": "client_pc_web_qiyefengguan_account_spot_modify",
  626. "code": "account_spot_modify",
  627. "isshow": true,
  628. "remark": ""
  629. },
  630. {
  631. "label": "重置密码",
  632. "rulekey": "client_pc_web_qiyefengguan_account_spot_resetpwd",
  633. "code": "account_spot_resetpwd",
  634. "isshow": true,
  635. "remark": ""
  636. },
  637. {
  638. "label": "冻结",
  639. "rulekey": "client_pc_web_qiyefengguan_account_spot_locked",
  640. "code": "account_spot_locked",
  641. "isshow": true,
  642. "remark": ""
  643. },
  644. {
  645. "label": "解冻",
  646. "rulekey": "client_pc_web_qiyefengguan_account_spot_unlocked",
  647. "code": "account_spot_unlocked",
  648. "isshow": true,
  649. "remark": ""
  650. },
  651. {
  652. "label": "注销",
  653. "rulekey": "client_pc_web_qiyefengguan_account_spot_cancel",
  654. "code": "account_spot_cancel",
  655. "isshow": true,
  656. "remark": ""
  657. },
  658. {
  659. "label": "详情",
  660. "rulekey": "",
  661. "code": "detail",
  662. "isshow": true,
  663. "remark": ""
  664. }
  665. ]
  666. },
  667. {
  668. "title": "交易账户",
  669. "rulekey": "client_pc_web_qiyefengguan_account_trade",
  670. "code": "account_trade",
  671. "path": "account_trade",
  672. "component": "views/information/account_info/list/account_info_trade/index.vue",
  673. "sort": 2,
  674. "isshow": true,
  675. "url": "",
  676. "remark": "",
  677. "auth": [
  678. {
  679. "label": "新增",
  680. "rulekey": "client_pc_web_qiyefengguan_account_trade_add",
  681. "code": "account_trade_add",
  682. "isshow": true,
  683. "remark": ""
  684. },
  685. {
  686. "label": "修改",
  687. "rulekey": "client_pc_web_qiyefengguan_account_trade_modify",
  688. "code": "account_trade_modify",
  689. "isshow": true,
  690. "remark": ""
  691. },
  692. {
  693. "label": "新增",
  694. "rulekey": "client_pc_web_qiyefengguan_account_trade_child_add",
  695. "code": "account_trade_child_add",
  696. "isshow": true,
  697. "remark": ""
  698. },
  699. {
  700. "label": "修改",
  701. "rulekey": "client_pc_web_qiyefengguan_account_trade_child_modify",
  702. "code": "account_trade_child_modify",
  703. "isshow": true,
  704. "remark": ""
  705. },
  706. {
  707. "label": "重置密码",
  708. "rulekey": "client_pc_web_qiyefengguan_account_trade_child_reset",
  709. "code": "account_trade_child_reset",
  710. "isshow": true,
  711. "remark": ""
  712. },
  713. {
  714. "label": "冻结",
  715. "rulekey": "client_pc_web_qiyefengguan_account_trade_child_locked",
  716. "code": "account_trade_child_locked",
  717. "isshow": true,
  718. "remark": ""
  719. },
  720. {
  721. "label": "解冻",
  722. "rulekey": "client_pc_web_qiyefengguan_account_trade_child_unlocked",
  723. "code": "account_trade_child_unlocked",
  724. "isshow": true,
  725. "remark": ""
  726. },
  727. {
  728. "label": "注销",
  729. "rulekey": "client_pc_web_qiyefengguan_account_trade_child_cancel",
  730. "code": "account_trade_child_cancel",
  731. "isshow": true,
  732. "remark": ""
  733. },
  734. {
  735. "label": "详情",
  736. "rulekey": "",
  737. "code": "detail",
  738. "isshow": true,
  739. "remark": ""
  740. }
  741. ]
  742. },
  743. {
  744. "title": "管理账户",
  745. "rulekey": "client_pc_web_qiyefengguan_account_info_manager",
  746. "code": "account_info_manager",
  747. "path": "account_info_manager",
  748. "component": "views/information/account_info/list/account_info_manager/index.vue",
  749. "sort": 3,
  750. "isshow": true,
  751. "url": "",
  752. "remark": "",
  753. "auth": [
  754. {
  755. "label": "新增",
  756. "rulekey": "client_pc_web_qiyefengguan_account_manager_add",
  757. "code": "account_manager_add",
  758. "isshow": true,
  759. "remark": ""
  760. },
  761. {
  762. "label": "权限设置",
  763. "rulekey": "client_pc_web_qiyefengguan_account_manager_setting",
  764. "code": "account_manager_setting",
  765. "isshow": true,
  766. "remark": ""
  767. },
  768. {
  769. "label": "新增",
  770. "rulekey": "client_pc_web_qiyefengguan_account_manager_child_add",
  771. "code": "account_manager_child_add",
  772. "isshow": true,
  773. "remark": ""
  774. },
  775. {
  776. "label": "修改",
  777. "rulekey": "client_pc_web_qiyefengguan_account_manager_child_modify",
  778. "code": "account_manager_child_modify",
  779. "isshow": true,
  780. "remark": ""
  781. },
  782. {
  783. "label": "重置密码",
  784. "rulekey": "client_pc_web_qiyefengguan_account_manager_child_reset",
  785. "code": "account_manager_child_reset",
  786. "isshow": true,
  787. "remark": ""
  788. },
  789. {
  790. "label": "冻结",
  791. "rulekey": "client_pc_web_qiyefengguan_account_manager_child_locked",
  792. "code": "account_manager_child_locked",
  793. "isshow": true,
  794. "remark": ""
  795. },
  796. {
  797. "label": "解冻",
  798. "rulekey": "client_pc_web_qiyefengguan_account_manager_child_unlocked",
  799. "code": "account_manager_child_unlocked",
  800. "isshow": true,
  801. "remark": ""
  802. },
  803. {
  804. "label": "注销",
  805. "rulekey": "client_pc_web_qiyefengguan_account_manager_child_cancel",
  806. "code": "account_manager_child_cancel",
  807. "isshow": true,
  808. "remark": ""
  809. },
  810. {
  811. "label": "详情",
  812. "rulekey": "",
  813. "code": "detail",
  814. "isshow": true,
  815. "remark": ""
  816. }
  817. ]
  818. },
  819. {
  820. "title": "期货账户",
  821. "rulekey": "client_pc_web_qiyefengguan_account_futures",
  822. "code": "account_futures",
  823. "path": "account_futures",
  824. "component": "views/information/account_info/list/account_info_futures/index.vue",
  825. "sort": 4,
  826. "isshow": true,
  827. "url": "",
  828. "remark": "",
  829. "auth": [
  830. {
  831. "label": "账户设置",
  832. "rulekey": "client_pc_web_qiyefengguan_account_futures_setting",
  833. "code": "account_futures_setting",
  834. "isshow": false,
  835. "remark": ""
  836. },
  837. {
  838. "label": "新增",
  839. "rulekey": "client_pc_web_qiyefengguan_account_futures_add",
  840. "code": "account_futures_add",
  841. "isshow": true,
  842. "remark": ""
  843. },
  844. {
  845. "label": "修改",
  846. "rulekey": "client_pc_web_qiyefengguan_account_futures_modify",
  847. "code": "account_futures_modify",
  848. "isshow": true,
  849. "remark": ""
  850. },
  851. {
  852. "label": "新增",
  853. "rulekey": "client_pc_web_qiyefengguan_account_futures_child_add",
  854. "code": "account_futures_child_add",
  855. "isshow": true,
  856. "remark": ""
  857. },
  858. {
  859. "label": "修改",
  860. "rulekey": "client_pc_web_qiyefengguan_account_futures_child_modify",
  861. "code": "account_futures_child_modify",
  862. "isshow": true,
  863. "remark": ""
  864. },
  865. {
  866. "label": "授信",
  867. "rulekey": "client_pc_web_qiyefengguan_account_futures_child_credit",
  868. "code": "account_futures_child_credit",
  869. "isshow": true,
  870. "remark": ""
  871. },
  872. {
  873. "label": "注销",
  874. "rulekey": "client_pc_web_qiyefengguan_account_futures_child_cancel",
  875. "code": "account_futures_child_cancel",
  876. "isshow": true,
  877. "remark": ""
  878. },
  879. {
  880. "label": "详情",
  881. "rulekey": "",
  882. "code": "detail",
  883. "isshow": true,
  884. "remark": ""
  885. }
  886. ]
  887. }
  888. ]
  889. },
  890. {
  891. "title": "审核设置",
  892. "rulekey": "client_pc_web_qiyefengguan_audit",
  893. "code": "audit",
  894. "path": "audit",
  895. "component": "Main",
  896. "sort": 4,
  897. "isshow": true,
  898. "url": "",
  899. "remark": "",
  900. "children": [
  901. {
  902. "title": "审核设置",
  903. "rulekey": "client_pc_web_qiyefengguan_audit_setting",
  904. "code": "audit_setting",
  905. "path": "audit_setting",
  906. "component": "views/iframe/index.vue",
  907. "sort": 1,
  908. "isshow": true,
  909. "url": "/ermcp/paAreaAuditConfig/init",
  910. "remark": "管理端",
  911. "auth": [
  912. {
  913. "label": "修改",
  914. "rulekey": "client_pc_web_qiyefengguan_audit_setting_edit",
  915. "code": "edit",
  916. "isshow": true,
  917. "remark": ""
  918. }
  919. ]
  920. }
  921. ]
  922. }
  923. ]
  924. },
  925. {
  926. "title": "现货套保",
  927. "rulekey": "client_pc_web_qiyefengguan_business",
  928. "code": "business",
  929. "path": "/business",
  930. "component": "Layout",
  931. "sort": 2,
  932. "isshow": true,
  933. "children": [
  934. {
  935. "title": "采购合同",
  936. "rulekey": "client_pc_web_qiyefengguan_purchase",
  937. "code": "purchase",
  938. "path": "purchase",
  939. "component": "Main",
  940. "sort": 1,
  941. "isshow": true,
  942. "url": "",
  943. "remark": "",
  944. "children": [
  945. {
  946. "title": "待点价合同",
  947. "rulekey": "client_pc_web_qiyefengguan_purchase_pending",
  948. "code": "purchase_pending",
  949. "path": "purchase_pending",
  950. "component": "views/business/purchase/list/all/index.vue",
  951. "sort": 1,
  952. "isshow": true,
  953. "url": "",
  954. "remark": "",
  955. "auth": [
  956. {
  957. "label": "点价登记",
  958. "rulekey": "client_pc_web_qiyefengguan_purchase_pending_someprice",
  959. "code": "purchase_pending_someprice",
  960. "isshow": true,
  961. "remark": ""
  962. },
  963. {
  964. "label": "套保交易",
  965. "rulekey": "client_pc_web_qiyefengguan_purchase_pending_trade",
  966. "code": "purchase_pending_trade",
  967. "isshow": true,
  968. "remark": ""
  969. },
  970. {
  971. "label": "详情",
  972. "rulekey": "",
  973. "code": "detail",
  974. "isshow": true,
  975. "remark": ""
  976. }
  977. ]
  978. },
  979. {
  980. "title": "待交收合同",
  981. "rulekey": "client_pc_web_qiyefengguan_purchase_performance",
  982. "code": "purchase_performance",
  983. "path": "purchase_performance",
  984. "component": "views/business/purchase/list/all/index.vue",
  985. "sort": 2,
  986. "isshow": true,
  987. "url": "",
  988. "remark": "",
  989. "auth": [
  990. {
  991. "label": "交收登记",
  992. "rulekey": "client_pc_web_qiyefengguan_purchase_performance_settlement",
  993. "code": "purchase_performance_settlement",
  994. "isshow": true,
  995. "remark": ""
  996. },
  997. {
  998. "label": "款项登记",
  999. "rulekey": "client_pc_web_qiyefengguan_purchase_performance_funds",
  1000. "code": "purchase_performance_funds",
  1001. "isshow": true,
  1002. "remark": ""
  1003. },
  1004. {
  1005. "label": "发票登记",
  1006. "rulekey": "client_pc_web_qiyefengguan_purchase_performance_invoice",
  1007. "code": "purchase_performance_invoice",
  1008. "isshow": true,
  1009. "remark": ""
  1010. },
  1011. {
  1012. "label": "入库登记",
  1013. "rulekey": "client_pc_web_qiyefengguan_purchase_performance_storage",
  1014. "code": "purchase_performance_storage",
  1015. "isshow": true,
  1016. "remark": ""
  1017. },
  1018. {
  1019. "label": "完结合同",
  1020. "rulekey": "client_pc_web_qiyefengguan_purchase_performance_ending",
  1021. "code": "purchase_performance_ending",
  1022. "isshow": true,
  1023. "remark": ""
  1024. },
  1025. {
  1026. "label": "详情",
  1027. "rulekey": "",
  1028. "code": "detail",
  1029. "isshow": true,
  1030. "remark": ""
  1031. }
  1032. ]
  1033. },
  1034. {
  1035. "title": "新增合同",
  1036. "rulekey": "client_pc_web_qiyefengguan_purchase_contract",
  1037. "code": "purchase_contract",
  1038. "path": "purchase_contract",
  1039. "component": "views/information/spot-contract/list/purchase/index.vue",
  1040. "sort": 3,
  1041. "isshow": true,
  1042. "url": "",
  1043. "remark": "",
  1044. "auth": [
  1045. {
  1046. "label": "新增",
  1047. "rulekey": "client_pc_web_qiyefengguan_purchase_contract_add",
  1048. "code": "add",
  1049. "isshow": true,
  1050. "remark": ""
  1051. },
  1052. {
  1053. "label": "重新提交",
  1054. "rulekey": "client_pc_web_qiyefengguan_purchase_contract_resubmit",
  1055. "code": "resubmit",
  1056. "isshow": true,
  1057. "remark": ""
  1058. },
  1059. {
  1060. "label": "撤回",
  1061. "rulekey": "client_pc_web_qiyefengguan_purchase_contract_cancel",
  1062. "code": "cancel",
  1063. "isshow": true,
  1064. "remark": ""
  1065. },
  1066. {
  1067. "label": "删除",
  1068. "rulekey": "client_pc_web_qiyefengguan_purchase_contract_delete",
  1069. "code": "delete",
  1070. "isshow": true,
  1071. "remark": ""
  1072. },
  1073. {
  1074. "label": "详情",
  1075. "rulekey": "",
  1076. "code": "detail",
  1077. "isshow": true,
  1078. "remark": ""
  1079. }
  1080. ]
  1081. },
  1082. {
  1083. "title": "已完成合同",
  1084. "rulekey": "client_pc_web_qiyefengguan_purchase_finish",
  1085. "code": "purchase_finish",
  1086. "path": "purchase_finish",
  1087. "component": "views/information/spot-contract/list/purchase/index.vue",
  1088. "sort": 4,
  1089. "isshow": true,
  1090. "url": "",
  1091. "remark": "",
  1092. "auth": [
  1093. {
  1094. "label": "详情",
  1095. "rulekey": "",
  1096. "code": "detail",
  1097. "isshow": true,
  1098. "remark": ""
  1099. }
  1100. ]
  1101. }
  1102. ]
  1103. },
  1104. {
  1105. "title": "销售合同",
  1106. "rulekey": "client_pc_web_qiyefengguan_sell",
  1107. "code": "sell",
  1108. "path": "sell",
  1109. "component": "Main",
  1110. "sort": 2,
  1111. "isshow": true,
  1112. "url": "",
  1113. "remark": "",
  1114. "children": [
  1115. {
  1116. "title": "待点价合同",
  1117. "rulekey": "client_pc_web_qiyefengguan_sell_pending",
  1118. "code": "sell_pending",
  1119. "path": "sell_pending",
  1120. "component": "views/business/sell/list/all/index.vue",
  1121. "sort": 1,
  1122. "isshow": true,
  1123. "url": "",
  1124. "remark": "",
  1125. "auth": [
  1126. {
  1127. "label": "点价登记",
  1128. "rulekey": "client_pc_web_qiyefengguan_sell_pending_someprice",
  1129. "code": "sell_pending_someprice",
  1130. "isshow": true,
  1131. "remark": ""
  1132. },
  1133. {
  1134. "label": "套保交易",
  1135. "rulekey": "client_pc_web_qiyefengguan_sell_pending_trade",
  1136. "code": "sell_pending_trade",
  1137. "isshow": true,
  1138. "remark": ""
  1139. },
  1140. {
  1141. "label": "详情",
  1142. "rulekey": "",
  1143. "code": "detail",
  1144. "isshow": true,
  1145. "remark": ""
  1146. }
  1147. ]
  1148. },
  1149. {
  1150. "title": "待交收合同",
  1151. "rulekey": "client_pc_web_qiyefengguan_sell_performance",
  1152. "code": "sell_performance",
  1153. "path": "sell_performance",
  1154. "component": "views/business/sell/list/all/index.vue",
  1155. "sort": 2,
  1156. "isshow": true,
  1157. "url": "",
  1158. "remark": "",
  1159. "auth": [
  1160. {
  1161. "label": "交收登记",
  1162. "rulekey": "client_pc_web_qiyefengguan_sell_performance_settlement",
  1163. "code": "sell_performance_settlement",
  1164. "isshow": true,
  1165. "remark": ""
  1166. },
  1167. {
  1168. "label": "款项登记",
  1169. "rulekey": "client_pc_web_qiyefengguan_sell_performance_funds",
  1170. "code": "sell_performance_funds",
  1171. "isshow": true,
  1172. "remark": ""
  1173. },
  1174. {
  1175. "label": "发票登记",
  1176. "rulekey": "client_pc_web_qiyefengguan_sell_performance_invoice",
  1177. "code": "sell_performance_invoice",
  1178. "isshow": true,
  1179. "remark": ""
  1180. },
  1181. {
  1182. "label": "出库登记",
  1183. "rulekey": "client_pc_web_qiyefengguan_sell_performance_storage",
  1184. "code": "sell_performance_storage",
  1185. "isshow": true,
  1186. "remark": ""
  1187. },
  1188. {
  1189. "label": "完结合同",
  1190. "rulekey": "client_pc_web_qiyefengguan_sell_performance_ending",
  1191. "code": "sell_performance_ending",
  1192. "isshow": true,
  1193. "remark": ""
  1194. },
  1195. {
  1196. "label": "详情",
  1197. "rulekey": "",
  1198. "code": "detail",
  1199. "isshow": true,
  1200. "remark": ""
  1201. }
  1202. ]
  1203. },
  1204. {
  1205. "title": "新增合同",
  1206. "rulekey": "client_pc_web_qiyefengguan_sell_contract",
  1207. "code": "sell_contract",
  1208. "path": "sell_contract",
  1209. "component": "views/information/spot-contract/list/sell/index.vue",
  1210. "sort": 3,
  1211. "isshow": true,
  1212. "url": "",
  1213. "remark": "",
  1214. "auth": [
  1215. {
  1216. "label": "新增",
  1217. "rulekey": "client_pc_web_qiyefengguan_sell_contract_add",
  1218. "code": "add",
  1219. "isshow": true,
  1220. "remark": ""
  1221. },
  1222. {
  1223. "label": "重新提交",
  1224. "rulekey": "client_pc_web_qiyefengguan_sell_contract_resubmit",
  1225. "code": "resubmit",
  1226. "isshow": true,
  1227. "remark": ""
  1228. },
  1229. {
  1230. "label": "撤回",
  1231. "rulekey": "client_pc_web_qiyefengguan_sell_contract_delete",
  1232. "code": "cancel",
  1233. "isshow": true,
  1234. "remark": ""
  1235. },
  1236. {
  1237. "label": "详情",
  1238. "rulekey": "",
  1239. "code": "detail",
  1240. "isshow": true,
  1241. "remark": ""
  1242. }
  1243. ]
  1244. },
  1245. {
  1246. "title": "已完成合同",
  1247. "rulekey": "client_pc_web_qiyefengguan_sell_finish",
  1248. "code": "sell_finish",
  1249. "path": "sell_finish",
  1250. "component": "views/information/spot-contract/list/sell/index.vue",
  1251. "sort": 4,
  1252. "isshow": true,
  1253. "url": "",
  1254. "remark": "",
  1255. "auth": [
  1256. {
  1257. "label": "详情",
  1258. "rulekey": "",
  1259. "code": "detail",
  1260. "isshow": true,
  1261. "remark": ""
  1262. }
  1263. ]
  1264. }
  1265. ]
  1266. },
  1267. {
  1268. "title": "购销计划",
  1269. "rulekey": "client_pc_web_qiyefengguan_plan",
  1270. "code": "plan",
  1271. "path": "plan",
  1272. "component": "Main",
  1273. "sort": 3,
  1274. "isshow": true,
  1275. "url": "",
  1276. "remark": "",
  1277. "children": [
  1278. {
  1279. "title": "执行中计划",
  1280. "rulekey": "client_pc_web_qiyefengguan_plan_running",
  1281. "code": "plan_running",
  1282. "path": "plan_running",
  1283. "component": "views/business/plan/list/running/index.vue",
  1284. "sort": 1,
  1285. "isshow": true,
  1286. "url": "",
  1287. "remark": "",
  1288. "auth": [
  1289. {
  1290. "label": "详情",
  1291. "rulekey": "",
  1292. "code": "detail",
  1293. "isshow": true,
  1294. "remark": ""
  1295. }
  1296. ]
  1297. },
  1298. {
  1299. "title": "新增计划",
  1300. "rulekey": "client_pc_web_qiyefengguan_plan_uncommitted",
  1301. "code": "plan_uncommitted",
  1302. "path": "plan_uncommitted",
  1303. "component": "views/business/plan/list/uncommitted/index.vue",
  1304. "sort": 2,
  1305. "isshow": true,
  1306. "url": "",
  1307. "remark": "",
  1308. "auth": [
  1309. {
  1310. "label": "新增",
  1311. "rulekey": "client_pc_web_qiyefengguan_plan_uncommitted_add",
  1312. "code": "add",
  1313. "isshow": true,
  1314. "remark": ""
  1315. },
  1316. {
  1317. "label": "修改",
  1318. "rulekey": "client_pc_web_qiyefengguan_plan_uncommitted_modify",
  1319. "code": "modify",
  1320. "isshow": true,
  1321. "remark": ""
  1322. },
  1323. {
  1324. "label": "审核",
  1325. "rulekey": "client_pc_web_qiyefengguan_plan_uncommitted_check",
  1326. "code": "check",
  1327. "isshow": false,
  1328. "remark": ""
  1329. },
  1330. {
  1331. "label": "重新提交",
  1332. "rulekey": "client_pc_web_qiyefengguan_plan_uncommitted_resubmit",
  1333. "code": "resubmit",
  1334. "isshow": true,
  1335. "remark": ""
  1336. },
  1337. {
  1338. "label": "撤销",
  1339. "rulekey": "client_pc_web_qiyefengguan_plan_uncommitted_cancel",
  1340. "code": "cancel",
  1341. "isshow": true,
  1342. "remark": ""
  1343. },
  1344. {
  1345. "label": "删除",
  1346. "rulekey": "client_pc_web_qiyefengguan_plan_uncommitted_delete",
  1347. "code": "delete",
  1348. "isshow": true,
  1349. "remark": ""
  1350. },
  1351. {
  1352. "label": "详情",
  1353. "rulekey": "",
  1354. "code": "detail",
  1355. "isshow": true,
  1356. "remark": ""
  1357. }
  1358. ]
  1359. }
  1360. ]
  1361. },
  1362. {
  1363. "title": "现货查询",
  1364. "rulekey": "client_pc_web_qiyefengguan_search_spot",
  1365. "code": "search_spot",
  1366. "path": "search_spot",
  1367. "component": "Main",
  1368. "sort": 4,
  1369. "isshow": true,
  1370. "url": "",
  1371. "remark": "",
  1372. "children": [
  1373. {
  1374. "title": "采购合同",
  1375. "rulekey": "client_pc_web_qiyefengguan_search_purchase",
  1376. "code": "search_purchase",
  1377. "path": "search_purchase",
  1378. "component": "views/business/search/spot/index.vue",
  1379. "sort": 1,
  1380. "isshow": true,
  1381. "url": "",
  1382. "remark": "",
  1383. "auth": []
  1384. },
  1385. {
  1386. "title": "销售合同",
  1387. "rulekey": "client_pc_web_qiyefengguan_search_sell",
  1388. "code": "search_sell",
  1389. "path": "search_sell",
  1390. "component": "views/business/search/spot/index.vue",
  1391. "sort": 2,
  1392. "isshow": true,
  1393. "url": "",
  1394. "remark": "",
  1395. "auth": []
  1396. },
  1397. {
  1398. "title": "购销计划",
  1399. "rulekey": "client_pc_web_qiyefengguan_search_plan",
  1400. "code": "search_plan",
  1401. "path": "search_plan",
  1402. "component": "views/business/search/plan/index.vue",
  1403. "sort": 3,
  1404. "isshow": true,
  1405. "url": "",
  1406. "remark": "",
  1407. "auth": []
  1408. }
  1409. ]
  1410. },
  1411. {
  1412. "title": "期现关联",
  1413. "rulekey": "client_pc_web_qiyefengguan_futures_spot",
  1414. "code": "futures_spot",
  1415. "path": "futures_spot",
  1416. "component": "Main",
  1417. "sort": 5,
  1418. "isshow": true,
  1419. "url": "",
  1420. "remark": "",
  1421. "children": [
  1422. {
  1423. "title": "外部成交单关联",
  1424. "rulekey": "client_pc_web_qiyefengguan_futures_spot_finish",
  1425. "code": "futures_spot_finish",
  1426. "path": "futures_spot_finish",
  1427. "component": "views/iframe/index.vue",
  1428. "sort": 1,
  1429. "isshow": true,
  1430. "url": "/link/patradelink/initcommonview",
  1431. "remark": "管理端",
  1432. "auth": [
  1433. {
  1434. "label": "关联",
  1435. "rulekey": "client_pc_web_qiyefengguan_futures_spot_finish_bind",
  1436. "code": "relation",
  1437. "isshow": true,
  1438. "remark": ""
  1439. },
  1440. {
  1441. "label": "解除关联",
  1442. "rulekey": "client_pc_web_qiyefengguan_futures_spot_finish_unbind",
  1443. "code": "del",
  1444. "isshow": true,
  1445. "remark": ""
  1446. }
  1447. ]
  1448. },
  1449. {
  1450. "title": "期现单据关联",
  1451. "rulekey": "client_pc_web_qiyefengguan_futures_spot_order",
  1452. "code": "futures_spot_order",
  1453. "path": "futures_spot_order",
  1454. "component": "views/iframe/index.vue",
  1455. "sort": 2,
  1456. "isshow": true,
  1457. "url": "/link/patradelink/initcommonview",
  1458. "remark": "管理端",
  1459. "auth": [
  1460. {
  1461. "label": "补单关联",
  1462. "rulekey": "client_pc_web_qiyefengguan_futures_spot_order_add",
  1463. "code": "supplerelation",
  1464. "isshow": true,
  1465. "remark": ""
  1466. },
  1467. {
  1468. "label": "关联",
  1469. "rulekey": "client_pc_web_qiyefengguan_futures_spot_order_bind",
  1470. "code": "relation",
  1471. "isshow": true,
  1472. "remark": ""
  1473. }
  1474. ]
  1475. },
  1476. {
  1477. "title": "关联记录",
  1478. "rulekey": "client_pc_web_qiyefengguan_futures_spot_record",
  1479. "code": "futures_spot_record",
  1480. "path": "futures_spot_record",
  1481. "component": "views/iframe/index.vue",
  1482. "sort": 3,
  1483. "isshow": true,
  1484. "url": "/link/patradelink/initcommonview",
  1485. "remark": "管理端",
  1486. "auth": [
  1487. {
  1488. "label": "解除关联",
  1489. "rulekey": "client_pc_web_qiyefengguan_futures_spot_record_unbind",
  1490. "code": "del",
  1491. "isshow": true,
  1492. "remark": ""
  1493. }
  1494. ]
  1495. }
  1496. ]
  1497. },
  1498. {
  1499. "title": "现货参考价",
  1500. "rulekey": "client_pc_web_qiyefengguan_spotmarket",
  1501. "code": "spotmarket",
  1502. "path": "spotmarket",
  1503. "component": "Main",
  1504. "sort": 6,
  1505. "isshow": true,
  1506. "url": "",
  1507. "remark": "",
  1508. "children": [
  1509. {
  1510. "title": "现货参考价",
  1511. "rulekey": "client_pc_web_qiyefengguan_spotmarket_price",
  1512. "code": "spotmarket_price",
  1513. "path": "spotmarket_price",
  1514. "component": "views/business/spotmarket/list/price/index.vue",
  1515. "sort": 1,
  1516. "isshow": true,
  1517. "url": "",
  1518. "remark": "",
  1519. "auth": [
  1520. {
  1521. "label": "修改",
  1522. "rulekey": "client_pc_web_qiyefengguan_spotmarket_price_modify",
  1523. "code": "modify",
  1524. "isshow": true,
  1525. "remark": ""
  1526. },
  1527. {
  1528. "label": "详情",
  1529. "rulekey": "",
  1530. "code": "detail",
  1531. "isshow": true,
  1532. "remark": ""
  1533. }
  1534. ]
  1535. }
  1536. ]
  1537. }
  1538. ]
  1539. },
  1540. {
  1541. "title": "风险管理",
  1542. "rulekey": "client_pc_web_qiyefengguan_riskmanage",
  1543. "code": "riskmanage",
  1544. "path": "/riskmanage",
  1545. "component": "Layout",
  1546. "sort": 3,
  1547. "isshow": true,
  1548. "children": [
  1549. {
  1550. "title": "实时敞口",
  1551. "rulekey": "client_pc_web_qiyefengguan_exposure_realtime",
  1552. "code": "exposure_realtime",
  1553. "path": "exposure_realtime",
  1554. "component": "Main",
  1555. "sort": 1,
  1556. "isshow": true,
  1557. "url": "",
  1558. "remark": "",
  1559. "children": [
  1560. {
  1561. "title": "实时敞口",
  1562. "rulekey": "client_pc_web_qiyefengguan_exposure_realtime_index",
  1563. "code": "exposure_realtime_index",
  1564. "path": "exposure_realtime_index",
  1565. "component": "views/business/exposure/list/realTime/index.vue",
  1566. "sort": 1,
  1567. "isshow": true,
  1568. "url": "",
  1569. "remark": "",
  1570. "auth": [
  1571. {
  1572. "label": "下单",
  1573. "rulekey": "client_pc_web_qiyefengguan_exposure_realtime_index_add",
  1574. "code": "exposure_realtime_index_add",
  1575. "isshow": true,
  1576. "remark": ""
  1577. },
  1578. {
  1579. "label": "现货明细",
  1580. "rulekey": "client_pc_web_qiyefengguan_exposure_realtime_spot_details",
  1581. "code": "exposure_realtime_spot_details",
  1582. "isshow": true,
  1583. "remark": ""
  1584. },
  1585. {
  1586. "label": "期货明细",
  1587. "rulekey": "client_pc_web_qiyefengguan_exposure_realtime_futures_details",
  1588. "code": "exposure_realtime_futures_details",
  1589. "isshow": true,
  1590. "remark": ""
  1591. },
  1592. {
  1593. "label": "参数变动明细",
  1594. "rulekey": "client_pc_web_qiyefengguan_exposure_realtime_params_details",
  1595. "code": "exposure_realtime_params_details",
  1596. "isshow": true,
  1597. "remark": ""
  1598. }
  1599. ]
  1600. }
  1601. ]
  1602. },
  1603. {
  1604. "title": "头寸查询",
  1605. "rulekey": "client_pc_web_qiyefengguan_position",
  1606. "code": "position",
  1607. "path": "position",
  1608. "component": "Main",
  1609. "sort": 2,
  1610. "isshow": true,
  1611. "url": "",
  1612. "remark": "",
  1613. "children": [
  1614. {
  1615. "title": "现货商品头寸",
  1616. "rulekey": "client_pc_web_qiyefengguan_position_spot",
  1617. "code": "position_spot",
  1618. "path": "position_spot",
  1619. "component": "views/business/exposure/list/spot/index.vue",
  1620. "sort": 1,
  1621. "isshow": true,
  1622. "url": "",
  1623. "remark": "",
  1624. "auth": [
  1625. {
  1626. "label": "现货变动明细",
  1627. "rulekey": "client_pc_web_qiyefengguan_position_spot_details",
  1628. "code": "position_spot_details",
  1629. "isshow": true,
  1630. "remark": ""
  1631. }
  1632. ]
  1633. },
  1634. {
  1635. "title": "期货持仓头寸",
  1636. "rulekey": "client_pc_web_qiyefengguan_position_futures",
  1637. "code": "position_futures",
  1638. "path": "position_futures",
  1639. "component": "views/business/exposure/list/futures/index.vue",
  1640. "sort": 2,
  1641. "isshow": true,
  1642. "url": "",
  1643. "remark": "",
  1644. "auth": [
  1645. {
  1646. "label": "期货变动明细",
  1647. "rulekey": "client_pc_web_qiyefengguan_position_futures_details",
  1648. "code": "position_futures_details",
  1649. "isshow": true,
  1650. "remark": ""
  1651. }
  1652. ]
  1653. }
  1654. ]
  1655. },
  1656. {
  1657. "title": "历史敞口",
  1658. "rulekey": "client_pc_web_qiyefengguan_exposure_history",
  1659. "code": "exposure_history",
  1660. "path": "exposure_history",
  1661. "component": "Main",
  1662. "sort": 3,
  1663. "isshow": true,
  1664. "url": "",
  1665. "remark": "",
  1666. "children": [
  1667. {
  1668. "title": "历史敞口",
  1669. "rulekey": "client_pc_web_qiyefengguan_exposure_history_index",
  1670. "code": "exposure_history_index",
  1671. "path": "exposure_history_index",
  1672. "component": "views/business/exposure/list/history/index.vue",
  1673. "sort": 1,
  1674. "isshow": true,
  1675. "url": "",
  1676. "remark": "",
  1677. "auth": []
  1678. }
  1679. ]
  1680. }
  1681. ]
  1682. },
  1683. {
  1684. "title": "风管审核",
  1685. "rulekey": "client_pc_web_qiyefengguan_riskreview",
  1686. "code": "riskreview",
  1687. "path": "/riskreview",
  1688. "component": "Layout",
  1689. "sort": 4,
  1690. "isshow": true,
  1691. "children": [
  1692. {
  1693. "title": "套保比例审核",
  1694. "rulekey": "client_pc_web_qiyefengguan_hedge_ratio",
  1695. "code": "hedge_ratio",
  1696. "path": "hedge_ratio",
  1697. "component": "Main",
  1698. "sort": 1,
  1699. "isshow": true,
  1700. "url": "",
  1701. "remark": "",
  1702. "children": [
  1703. {
  1704. "title": "待审核",
  1705. "rulekey": "client_pc_web_qiyefengguan_hedge_ratio_checkpending",
  1706. "code": "hedge_ratio_checkpending",
  1707. "path": "hedge_ratio_checkpending",
  1708. "component": "views/iframe/index.vue",
  1709. "sort": 1,
  1710. "isshow": true,
  1711. "url": "/ermcp/paramchangeapp/initview",
  1712. "remark": "管理端",
  1713. "auth": [
  1714. {
  1715. "label": "审核",
  1716. "rulekey": "client_pc_web_qiyefengguan_hedge_ratio_check",
  1717. "code": "check",
  1718. "isshow": true,
  1719. "remark": ""
  1720. },
  1721. {
  1722. "label": "详情",
  1723. "rulekey": "",
  1724. "code": "info",
  1725. "isshow": true,
  1726. "remark": ""
  1727. }
  1728. ]
  1729. },
  1730. {
  1731. "title": "已审核",
  1732. "rulekey": "client_pc_web_qiyefengguan_hedge_ratio_performance",
  1733. "code": "hedge_ratio_performance",
  1734. "path": "hedge_ratio_performance",
  1735. "component": "views/iframe/index.vue",
  1736. "sort": 2,
  1737. "isshow": true,
  1738. "url": "/ermcp/paramchangeapp/initview",
  1739. "remark": "管理端",
  1740. "auth": [
  1741. {
  1742. "label": "详情",
  1743. "rulekey": "",
  1744. "code": "info",
  1745. "isshow": true,
  1746. "remark": ""
  1747. }
  1748. ]
  1749. }
  1750. ]
  1751. },
  1752. {
  1753. "title": "现货参数审核",
  1754. "rulekey": "client_pc_web_qiyefengguan_spot_params",
  1755. "code": "spot_params",
  1756. "path": "spot_params",
  1757. "component": "Main",
  1758. "sort": 2,
  1759. "isshow": true,
  1760. "url": "",
  1761. "remark": "",
  1762. "children": [
  1763. {
  1764. "title": "待审核",
  1765. "rulekey": "client_pc_web_qiyefengguan_spot_params_checkpending",
  1766. "code": "spot_params_checkpending",
  1767. "path": "spot_params_checkpending",
  1768. "component": "views/iframe/index.vue",
  1769. "sort": 1,
  1770. "isshow": true,
  1771. "url": "/ermcp/paramchangeapp/initcommonview",
  1772. "remark": "管理端",
  1773. "auth": [
  1774. {
  1775. "label": "审核",
  1776. "rulekey": "client_pc_web_qiyefengguan_spot_params_check",
  1777. "code": "check",
  1778. "isshow": true,
  1779. "remark": ""
  1780. },
  1781. {
  1782. "label": "详情",
  1783. "rulekey": "",
  1784. "code": "info",
  1785. "isshow": true,
  1786. "remark": ""
  1787. }
  1788. ]
  1789. },
  1790. {
  1791. "title": "已审核",
  1792. "rulekey": "client_pc_web_qiyefengguan_spot_params_performance",
  1793. "code": "spot_params_performance",
  1794. "path": "spot_params_performance",
  1795. "component": "views/iframe/index.vue",
  1796. "sort": 2,
  1797. "isshow": true,
  1798. "url": "/ermcp/paramchangeapp/initcommonview",
  1799. "remark": "管理端",
  1800. "auth": [
  1801. {
  1802. "label": "详情",
  1803. "rulekey": "",
  1804. "code": "info",
  1805. "isshow": true,
  1806. "remark": ""
  1807. }
  1808. ]
  1809. }
  1810. ]
  1811. }
  1812. ]
  1813. },
  1814. {
  1815. "title": "现货审核",
  1816. "rulekey": "client_pc_web_qiyefengguan_spotreview",
  1817. "code": "spotreview",
  1818. "path": "/spotreview",
  1819. "component": "Layout",
  1820. "sort": 5,
  1821. "isshow": true,
  1822. "children": [
  1823. {
  1824. "title": "合同审核",
  1825. "rulekey": "client_pc_web_qiyefengguan_contract",
  1826. "code": "contract",
  1827. "path": "contract",
  1828. "component": "Main",
  1829. "sort": 1,
  1830. "isshow": true,
  1831. "url": "",
  1832. "remark": "",
  1833. "children": [
  1834. {
  1835. "title": "待审核",
  1836. "rulekey": "client_pc_web_qiyefengguan_contract_checkpending",
  1837. "code": "contract_checkpending",
  1838. "path": "contract_checkpending",
  1839. "component": "views/information/spot-contract/list/audit/index.vue",
  1840. "sort": 1,
  1841. "isshow": true,
  1842. "url": "",
  1843. "remark": "",
  1844. "auth": [
  1845. {
  1846. "label": "审核",
  1847. "rulekey": "client_pc_web_qiyefengguan_contract_checkpending_check",
  1848. "code": "check",
  1849. "isshow": true,
  1850. "remark": ""
  1851. },
  1852. {
  1853. "label": "撤销",
  1854. "rulekey": "client_pc_web_qiyefengguan_contract_checkpending_cancel",
  1855. "code": "cancel",
  1856. "isshow": true,
  1857. "remark": ""
  1858. },
  1859. {
  1860. "label": "详情",
  1861. "rulekey": "",
  1862. "code": "detail",
  1863. "isshow": true,
  1864. "remark": ""
  1865. }
  1866. ]
  1867. },
  1868. {
  1869. "title": "已审核",
  1870. "rulekey": "client_pc_web_qiyefengguan_contract_performance",
  1871. "code": "contract_performance",
  1872. "path": "contract_performance",
  1873. "component": "views/information/spot-contract/list/audit/index.vue",
  1874. "sort": 2,
  1875. "isshow": true,
  1876. "url": "",
  1877. "remark": "",
  1878. "auth": [
  1879. {
  1880. "label": "详情",
  1881. "rulekey": "",
  1882. "code": "detail",
  1883. "isshow": true,
  1884. "remark": ""
  1885. }
  1886. ]
  1887. }
  1888. ]
  1889. },
  1890. {
  1891. "title": "点价审核",
  1892. "rulekey": "client_pc_web_qiyefengguan_someprice",
  1893. "code": "someprice",
  1894. "path": "someprice",
  1895. "component": "Main",
  1896. "sort": 2,
  1897. "isshow": true,
  1898. "url": "",
  1899. "remark": "",
  1900. "children": [
  1901. {
  1902. "title": "待审核",
  1903. "rulekey": "client_pc_web_qiyefengguan_someprice_checkpending",
  1904. "code": "someprice_checkpending",
  1905. "path": "someprice_checkpending",
  1906. "component": "views/manage/business-review/list/someprice/index.vue",
  1907. "sort": 1,
  1908. "isshow": true,
  1909. "url": "",
  1910. "remark": "",
  1911. "auth": [
  1912. {
  1913. "label": "审核",
  1914. "rulekey": "client_pc_web_qiyefengguan_someprice_checkpending_check",
  1915. "code": "check",
  1916. "isshow": true,
  1917. "remark": ""
  1918. },
  1919. {
  1920. "label": "撤销",
  1921. "rulekey": "client_pc_web_qiyefengguan_someprice_checkpending_cancel",
  1922. "code": "cancel",
  1923. "isshow": true,
  1924. "remark": ""
  1925. },
  1926. {
  1927. "label": "详情",
  1928. "rulekey": "",
  1929. "code": "detail",
  1930. "isshow": true,
  1931. "remark": ""
  1932. }
  1933. ]
  1934. },
  1935. {
  1936. "title": "已审核",
  1937. "rulekey": "client_pc_web_qiyefengguan_someprice_performance",
  1938. "code": "someprice_performance",
  1939. "path": "someprice_performance",
  1940. "component": "views/manage/business-review/list/someprice/index.vue",
  1941. "sort": 2,
  1942. "isshow": true,
  1943. "url": "",
  1944. "remark": "",
  1945. "auth": [
  1946. {
  1947. "label": "详情",
  1948. "rulekey": "",
  1949. "code": "detail",
  1950. "isshow": true,
  1951. "remark": ""
  1952. }
  1953. ]
  1954. }
  1955. ]
  1956. },
  1957. {
  1958. "title": "交收审核",
  1959. "rulekey": "client_pc_web_qiyefengguan_settlement",
  1960. "code": "settlement",
  1961. "path": "settlement",
  1962. "component": "Main",
  1963. "sort": 3,
  1964. "isshow": true,
  1965. "url": "",
  1966. "remark": "",
  1967. "children": [
  1968. {
  1969. "title": "待审核",
  1970. "rulekey": "client_pc_web_qiyefengguan_settlement_checkpending",
  1971. "code": "settlement_checkpending",
  1972. "path": "settlement_checkpending",
  1973. "component": "views/manage/business-review/list/settlement/index.vue",
  1974. "sort": 1,
  1975. "isshow": true,
  1976. "url": "",
  1977. "remark": "",
  1978. "auth": [
  1979. {
  1980. "label": "审核",
  1981. "rulekey": "client_pc_web_qiyefengguan_settlement_checkpending_check",
  1982. "code": "check",
  1983. "isshow": true,
  1984. "remark": ""
  1985. },
  1986. {
  1987. "label": "撤销",
  1988. "rulekey": "client_pc_web_qiyefengguan_settlement_checkpending_cancel",
  1989. "code": "cancel",
  1990. "isshow": true,
  1991. "remark": ""
  1992. },
  1993. {
  1994. "label": "详情",
  1995. "rulekey": "",
  1996. "code": "detail",
  1997. "isshow": true,
  1998. "remark": ""
  1999. }
  2000. ]
  2001. },
  2002. {
  2003. "title": "已审核",
  2004. "rulekey": "client_pc_web_qiyefengguan_settlement_performance",
  2005. "code": "settlement_performance",
  2006. "path": "settlement_performance",
  2007. "component": "views/manage/business-review/list/settlement/index.vue",
  2008. "sort": 2,
  2009. "isshow": true,
  2010. "url": "",
  2011. "remark": "",
  2012. "auth": [
  2013. {
  2014. "label": "详情",
  2015. "rulekey": "",
  2016. "code": "detail",
  2017. "isshow": true,
  2018. "remark": ""
  2019. }
  2020. ]
  2021. }
  2022. ]
  2023. },
  2024. {
  2025. "title": "计划审核",
  2026. "rulekey": "client_pc_web_qiyefengguan_plan_audit",
  2027. "code": "plan_audit",
  2028. "path": "plan_audit",
  2029. "component": "Main",
  2030. "sort": 4,
  2031. "isshow": true,
  2032. "url": "",
  2033. "remark": "",
  2034. "children": [
  2035. {
  2036. "title": "待审核",
  2037. "rulekey": "client_pc_web_qiyefengguan_plan_checkpending",
  2038. "code": "plan_checkpending",
  2039. "path": "plan_checkpending",
  2040. "component": "views/business/plan/list/audit/index.vue",
  2041. "sort": 1,
  2042. "isshow": true,
  2043. "url": "",
  2044. "remark": "",
  2045. "auth": [
  2046. {
  2047. "label": "审核",
  2048. "rulekey": "client_pc_web_qiyefengguan_plan_checkpending_check",
  2049. "code": "check",
  2050. "isshow": true,
  2051. "remark": ""
  2052. },
  2053. {
  2054. "label": "撤销",
  2055. "rulekey": "client_pc_web_qiyefengguan_plan_checkpending_cancel",
  2056. "code": "cancel",
  2057. "isshow": true,
  2058. "remark": ""
  2059. },
  2060. {
  2061. "label": "详情",
  2062. "rulekey": "",
  2063. "code": "detail",
  2064. "isshow": true,
  2065. "remark": ""
  2066. }
  2067. ]
  2068. },
  2069. {
  2070. "title": "已审核",
  2071. "rulekey": "client_pc_web_qiyefengguan_plan_performance",
  2072. "code": "plan_performance",
  2073. "path": "plan_performance",
  2074. "component": "views/business/plan/list/audit/index.vue",
  2075. "sort": 2,
  2076. "isshow": true,
  2077. "url": "",
  2078. "remark": "",
  2079. "auth": [
  2080. {
  2081. "label": "详情",
  2082. "rulekey": "",
  2083. "code": "detail",
  2084. "isshow": true,
  2085. "remark": ""
  2086. }
  2087. ]
  2088. }
  2089. ]
  2090. },
  2091. {
  2092. "title": "出入库审核",
  2093. "rulekey": "client_pc_web_qiyefengguan_stock",
  2094. "code": "stock",
  2095. "path": "stock",
  2096. "component": "Main",
  2097. "sort": 5,
  2098. "isshow": true,
  2099. "url": "",
  2100. "remark": "",
  2101. "children": [
  2102. {
  2103. "title": "待审核",
  2104. "rulekey": "client_pc_web_qiyefengguan_stock_checkpending",
  2105. "code": "stock_checkpending",
  2106. "path": "stock_checkpending",
  2107. "component": "views/manage/inventory-review/list/audit/index.vue",
  2108. "sort": 1,
  2109. "isshow": true,
  2110. "url": "",
  2111. "remark": "",
  2112. "auth": [
  2113. {
  2114. "label": "审核",
  2115. "rulekey": "client_pc_web_qiyefengguan_stock_checkpending_check",
  2116. "code": "check",
  2117. "isshow": true,
  2118. "remark": ""
  2119. },
  2120. {
  2121. "label": "撤销",
  2122. "rulekey": "client_pc_web_qiyefengguan_stock_checkpending_cancel",
  2123. "code": "cancel",
  2124. "isshow": true,
  2125. "remark": ""
  2126. },
  2127. {
  2128. "label": "详情",
  2129. "rulekey": "",
  2130. "code": "detail",
  2131. "isshow": true,
  2132. "remark": ""
  2133. }
  2134. ]
  2135. },
  2136. {
  2137. "title": "已审核",
  2138. "rulekey": "client_pc_web_qiyefengguan_stock_performance",
  2139. "code": "stock_performance",
  2140. "path": "stock_performance",
  2141. "component": "views/manage/inventory-review/list/audit/index.vue",
  2142. "sort": 2,
  2143. "isshow": true,
  2144. "url": "",
  2145. "remark": "",
  2146. "auth": [
  2147. {
  2148. "label": "详情",
  2149. "rulekey": "",
  2150. "code": "detail",
  2151. "isshow": true,
  2152. "remark": ""
  2153. }
  2154. ]
  2155. }
  2156. ]
  2157. }
  2158. ]
  2159. },
  2160. {
  2161. "title": "库存管理",
  2162. "rulekey": "client_pc_web_qiyefengguan_inventory",
  2163. "code": "inventory",
  2164. "path": "/inventory",
  2165. "component": "Layout",
  2166. "sort": 6,
  2167. "isshow": true,
  2168. "children": [
  2169. {
  2170. "title": "库存管理",
  2171. "rulekey": "client_pc_web_qiyefengguan_inventory_manage",
  2172. "code": "inventory_manage",
  2173. "path": "inventory_manage",
  2174. "component": "Main",
  2175. "sort": 1,
  2176. "isshow": true,
  2177. "url": "",
  2178. "remark": "",
  2179. "children": [
  2180. {
  2181. "title": "库存管理",
  2182. "rulekey": "client_pc_web_qiyefengguan_inventory_management",
  2183. "code": "inventory_management",
  2184. "path": "inventory_management",
  2185. "component": "views/search/inventory/list/inventory_current/index.vue",
  2186. "sort": 1,
  2187. "isshow": true,
  2188. "url": "",
  2189. "remark": "",
  2190. "auth": [
  2191. {
  2192. "label": "新增",
  2193. "rulekey": "client_pc_web_qiyefengguan_inventory_management_add",
  2194. "code": "add",
  2195. "isshow": true,
  2196. "remark": ""
  2197. },
  2198. {
  2199. "label": "入库明细",
  2200. "rulekey": "client_pc_web_qiyefengguan_inventory_manager_inbound_details",
  2201. "code": "inventory_manager_inbound_details",
  2202. "isshow": true,
  2203. "remark": ""
  2204. },
  2205. {
  2206. "label": "出库明细",
  2207. "rulekey": "client_pc_web_qiyefengguan_inventory_manager_outbound_details",
  2208. "code": "inventory_manager_outbound_details",
  2209. "isshow": true,
  2210. "remark": ""
  2211. }
  2212. ]
  2213. }
  2214. ]
  2215. }
  2216. ]
  2217. },
  2218. {
  2219. "title": "财务审核",
  2220. "rulekey": "client_pc_web_qiyefengguan_financereview",
  2221. "code": "financereview",
  2222. "path": "/financereview",
  2223. "component": "Layout",
  2224. "sort": 7,
  2225. "isshow": true,
  2226. "children": [
  2227. {
  2228. "title": "发票审核",
  2229. "rulekey": "client_pc_web_qiyefengguan_invoice",
  2230. "code": "invoice",
  2231. "path": "invoice",
  2232. "component": "Main",
  2233. "sort": 1,
  2234. "isshow": true,
  2235. "url": "",
  2236. "remark": "",
  2237. "children": [
  2238. {
  2239. "title": "待审核",
  2240. "rulekey": "client_pc_web_qiyefengguan_invoice_checkpending",
  2241. "code": "invoice_checkpending",
  2242. "path": "invoice_checkpending",
  2243. "component": "views/manage/finance-review/list/invoice/index.vue",
  2244. "sort": 1,
  2245. "isshow": true,
  2246. "url": "",
  2247. "remark": "",
  2248. "auth": [
  2249. {
  2250. "label": "审核",
  2251. "rulekey": "client_pc_web_qiyefengguan_invoice_checkpending_check",
  2252. "code": "check",
  2253. "isshow": true,
  2254. "remark": ""
  2255. },
  2256. {
  2257. "label": "撤销",
  2258. "rulekey": "client_pc_web_qiyefengguan_invoice_checkpending_cancel",
  2259. "code": "cancel",
  2260. "isshow": true,
  2261. "remark": ""
  2262. },
  2263. {
  2264. "label": "详情",
  2265. "rulekey": "",
  2266. "code": "detail",
  2267. "isshow": true,
  2268. "remark": ""
  2269. }
  2270. ]
  2271. },
  2272. {
  2273. "title": "已审核",
  2274. "rulekey": "client_pc_web_qiyefengguan_invoice_performance",
  2275. "code": "invoice_performance",
  2276. "path": "invoice_performance",
  2277. "component": "views/manage/finance-review/list/invoice/index.vue",
  2278. "sort": 2,
  2279. "isshow": true,
  2280. "url": "",
  2281. "remark": "",
  2282. "auth": [
  2283. {
  2284. "label": "详情",
  2285. "rulekey": "",
  2286. "code": "detail",
  2287. "isshow": true,
  2288. "remark": ""
  2289. }
  2290. ]
  2291. }
  2292. ]
  2293. },
  2294. {
  2295. "title": "款项审核",
  2296. "rulekey": "client_pc_web_qiyefengguan_funds",
  2297. "code": "funds",
  2298. "path": "funds",
  2299. "component": "Main",
  2300. "sort": 2,
  2301. "isshow": true,
  2302. "url": "",
  2303. "remark": "",
  2304. "children": [
  2305. {
  2306. "title": "待审核",
  2307. "rulekey": "client_pc_web_qiyefengguan_funds_checkpending",
  2308. "code": "funds_checkpending",
  2309. "path": "funds_checkpending",
  2310. "component": "views/manage/finance-review/list/funds/index.vue",
  2311. "sort": 1,
  2312. "isshow": true,
  2313. "url": "",
  2314. "remark": "",
  2315. "auth": [
  2316. {
  2317. "label": "审核",
  2318. "rulekey": "client_pc_web_qiyefengguan_funds_checkpending_check",
  2319. "code": "check",
  2320. "isshow": true,
  2321. "remark": ""
  2322. },
  2323. {
  2324. "label": "撤销",
  2325. "rulekey": "client_pc_web_qiyefengguan_funds_checkpending_cancel",
  2326. "code": "cancel",
  2327. "isshow": true,
  2328. "remark": ""
  2329. },
  2330. {
  2331. "label": "详情",
  2332. "rulekey": "",
  2333. "code": "detail",
  2334. "isshow": true,
  2335. "remark": ""
  2336. }
  2337. ]
  2338. },
  2339. {
  2340. "title": "已审核",
  2341. "rulekey": "client_pc_web_qiyefengguan_funds_performance",
  2342. "code": "funds_performance",
  2343. "path": "funds_performance",
  2344. "component": "views/manage/finance-review/list/funds/index.vue",
  2345. "sort": 2,
  2346. "isshow": true,
  2347. "url": "",
  2348. "remark": "",
  2349. "auth": [
  2350. {
  2351. "label": "详情",
  2352. "rulekey": "",
  2353. "code": "detail",
  2354. "isshow": true,
  2355. "remark": ""
  2356. }
  2357. ]
  2358. }
  2359. ]
  2360. }
  2361. ]
  2362. },
  2363. {
  2364. "title": "统计报表",
  2365. "rulekey": "client_pc_web_qiyefengguan_report",
  2366. "code": "report",
  2367. "path": "/report",
  2368. "component": "Layout",
  2369. "sort": 8,
  2370. "isshow": true,
  2371. "children": [
  2372. {
  2373. "title": "现货报表",
  2374. "rulekey": "client_pc_web_qiyefengguan_spot_report",
  2375. "code": "spot_report",
  2376. "path": "spot_report",
  2377. "component": "Main",
  2378. "sort": 1,
  2379. "isshow": true,
  2380. "url": "",
  2381. "remark": "",
  2382. "children": [
  2383. {
  2384. "title": "现货报表",
  2385. "rulekey": "client_pc_web_qiyefengguan_spot_report_spot",
  2386. "code": "spot_report_spot",
  2387. "path": "spot_report_spot",
  2388. "component": "views/report/spot-report/list/spot_report/index.vue",
  2389. "sort": 1,
  2390. "isshow": true,
  2391. "url": "",
  2392. "remark": "",
  2393. "auth": [
  2394. {
  2395. "label": "现货明细",
  2396. "rulekey": "client_pc_web_qiyefengguan_spot_report_spot_detail",
  2397. "code": "spot_report_spot_detail",
  2398. "isshow": true,
  2399. "remark": ""
  2400. }
  2401. ]
  2402. }
  2403. ]
  2404. },
  2405. {
  2406. "title": "敞口报表",
  2407. "rulekey": "client_pc_web_qiyefengguan_exposure_report",
  2408. "code": "exposure_report",
  2409. "path": "exposure_report",
  2410. "component": "Main",
  2411. "sort": 2,
  2412. "isshow": true,
  2413. "url": "",
  2414. "remark": "",
  2415. "children": [
  2416. {
  2417. "title": "敞口报表",
  2418. "rulekey": "client_pc_web_qiyefengguan_exposure_report_exposure",
  2419. "code": "exposure_report_exposure",
  2420. "path": "exposure_report_exposure",
  2421. "component": "views/report/exposure-report/list/exposure_report/index.vue",
  2422. "sort": 1,
  2423. "isshow": true,
  2424. "url": "",
  2425. "remark": "",
  2426. "auth": [
  2427. {
  2428. "label": "现货合同变动量明细",
  2429. "rulekey": "client_pc_web_qiyefengguan_exposure_report_exposure_contract_changes",
  2430. "code": "exposure_report_exposure_contract_changes",
  2431. "isshow": true,
  2432. "remark": ""
  2433. },
  2434. {
  2435. "label": "套保计划变动量明细",
  2436. "rulekey": "client_pc_web_qiyefengguan_exposure_report_exposure_hedging_plan",
  2437. "code": "exposure_report_exposure_hedging_plan",
  2438. "isshow": true,
  2439. "remark": ""
  2440. },
  2441. {
  2442. "label": "期货变动量明细",
  2443. "rulekey": "client_pc_web_qiyefengguan_exposure_report_exposure_futures_changes",
  2444. "code": "exposure_report_exposure_futures_changes",
  2445. "isshow": true,
  2446. "remark": ""
  2447. },
  2448. {
  2449. "label": "参数调整变动量明细",
  2450. "rulekey": "client_pc_web_qiyefengguan_exposure_report_exposure_parameter_adjustment_changes",
  2451. "code": "exposure_report_exposure_parameter_adjustment_changes",
  2452. "isshow": true,
  2453. "remark": ""
  2454. }
  2455. ]
  2456. }
  2457. ]
  2458. },
  2459. {
  2460. "title": "期货报表",
  2461. "rulekey": "client_pc_web_qiyefengguan_future_report",
  2462. "code": "future_report",
  2463. "path": "future_report",
  2464. "component": "Main",
  2465. "sort": 3,
  2466. "isshow": true,
  2467. "url": "",
  2468. "remark": "",
  2469. "children": [
  2470. {
  2471. "title": "期货报表",
  2472. "rulekey": "client_pc_web_qiyefengguan_future_report_future",
  2473. "code": "future_report_future",
  2474. "path": "future_report_future",
  2475. "component": "views/report/future_report/list/future_report/index.vue",
  2476. "sort": 1,
  2477. "isshow": true,
  2478. "url": "",
  2479. "remark": "",
  2480. "auth": [
  2481. {
  2482. "label": "账户明细",
  2483. "rulekey": "client_pc_web_qiyefengguan_future_report_future_detail",
  2484. "code": "future_report_future_detail",
  2485. "isshow": true,
  2486. "remark": ""
  2487. }
  2488. ]
  2489. }
  2490. ]
  2491. },
  2492. {
  2493. "title": "财务报表",
  2494. "rulekey": "client_pc_web_qiyefengguan_finance_report",
  2495. "code": "finance_report",
  2496. "path": "finance_report",
  2497. "component": "Main",
  2498. "sort": 4,
  2499. "isshow": true,
  2500. "url": "",
  2501. "remark": "",
  2502. "children": [
  2503. {
  2504. "title": "财务报表",
  2505. "rulekey": "client_pc_web_qiyefengguan_finance_report_finance",
  2506. "code": "finance_report_finance",
  2507. "path": "finance_report_finance",
  2508. "component": "views/report/finance-report/list/finance_report_finance/index.vue",
  2509. "sort": 1,
  2510. "isshow": true,
  2511. "url": "",
  2512. "remark": "",
  2513. "auth": [
  2514. {
  2515. "label": "商品明细",
  2516. "rulekey": "client_pc_web_qiyefengguan_finance_report_finance_category_breakdown",
  2517. "code": "finance_report_finance_category_breakdown",
  2518. "isshow": true,
  2519. "remark": ""
  2520. },
  2521. {
  2522. "label": "品牌明细",
  2523. "rulekey": "client_pc_web_qiyefengguan_finance_report_finance_brand_details",
  2524. "code": "finance_report_finance_brand_details",
  2525. "isshow": true,
  2526. "remark": ""
  2527. }
  2528. ]
  2529. }
  2530. ]
  2531. },
  2532. {
  2533. "title": "库存报表",
  2534. "rulekey": "client_pc_web_qiyefengguan_inventory_report",
  2535. "code": "inventory_report",
  2536. "path": "inventory_report",
  2537. "component": "Main",
  2538. "sort": 5,
  2539. "isshow": true,
  2540. "url": "",
  2541. "remark": "",
  2542. "children": [
  2543. {
  2544. "title": "库存报表",
  2545. "rulekey": "client_pc_web_qiyefengguan_inventory_report_inventory_category",
  2546. "code": "inventory_report_inventory_category",
  2547. "path": "inventory_report_inventory_category",
  2548. "component": "views/report/inventory-report/list/category/index.vue",
  2549. "sort": 1,
  2550. "isshow": true,
  2551. "url": "",
  2552. "remark": "",
  2553. "auth": [
  2554. {
  2555. "label": "品牌明细",
  2556. "rulekey": "client_pc_web_qiyefengguan_inventory_report_inventory_category_brand_detail",
  2557. "code": "inventory_report_inventory_category_brand_detail",
  2558. "isshow": true,
  2559. "remark": ""
  2560. },
  2561. {
  2562. "label": "仓库明细",
  2563. "rulekey": "client_pc_web_qiyefengguan_inventory_report_inventory_category_warehouse_detail",
  2564. "code": "inventory_report_inventory_category_warehouse_detail",
  2565. "isshow": true,
  2566. "remark": ""
  2567. }
  2568. ]
  2569. }
  2570. ]
  2571. },
  2572. {
  2573. "title": "仓库报表",
  2574. "rulekey": "client_pc_web_qiyefengguan_warehouse_report",
  2575. "code": "warehouse_report",
  2576. "path": "warehouse_report",
  2577. "component": "Main",
  2578. "sort": 6,
  2579. "isshow": true,
  2580. "url": "",
  2581. "remark": "",
  2582. "children": [
  2583. {
  2584. "title": "仓库报表",
  2585. "rulekey": "client_pc_web_qiyefengguan_warehouse_report_warehouse",
  2586. "code": "warehouse_report_warehouse",
  2587. "path": "warehouse_report_warehouse",
  2588. "component": "views/report/inventory-report/list/warehouse/index.vue",
  2589. "sort": 1,
  2590. "isshow": true,
  2591. "url": "",
  2592. "remark": "",
  2593. "auth": [
  2594. {
  2595. "label": "库存明细",
  2596. "rulekey": "client_pc_web_qiyefengguan_warehouse_report_warehouse_detail",
  2597. "code": "warehouse_report_warehouse_detail",
  2598. "isshow": true,
  2599. "remark": ""
  2600. }
  2601. ]
  2602. }
  2603. ]
  2604. },
  2605. {
  2606. "title": "汇总报表",
  2607. "rulekey": "client_pc_web_qiyefengguan_sum_pl_report",
  2608. "code": "sum_pl_report",
  2609. "path": "sum_pl_report",
  2610. "component": "Main",
  2611. "sort": 7,
  2612. "isshow": true,
  2613. "url": "",
  2614. "remark": "",
  2615. "children": [
  2616. {
  2617. "title": "汇总报表",
  2618. "rulekey": "client_pc_web_qiyefengguan_sum_pl_report_sum_pl",
  2619. "code": "sum_pl_report_sum_pl",
  2620. "path": "sum_pl_report_sum_pl",
  2621. "component": "views/report/sum_pl_report/list/sum_pl_report/index.vue",
  2622. "sort": 1,
  2623. "isshow": true,
  2624. "url": "",
  2625. "remark": "",
  2626. "auth": [
  2627. {
  2628. "label": "损益明细",
  2629. "rulekey": "client_pc_web_qiyefengguan_sum_pl_report_profit_and_loss_details",
  2630. "code": "sum_pl_report_profit_and_loss_details",
  2631. "isshow": true,
  2632. "remark": ""
  2633. }
  2634. ]
  2635. }
  2636. ]
  2637. },
  2638. {
  2639. "title": "定价报表",
  2640. "rulekey": "client_pc_web_qiyefengguan_price_report",
  2641. "code": "price_report",
  2642. "path": "price_report",
  2643. "component": "Main",
  2644. "sort": 8,
  2645. "isshow": true,
  2646. "url": "",
  2647. "remark": "",
  2648. "children": [
  2649. {
  2650. "title": "定价报表",
  2651. "rulekey": "client_pc_web_qiyefengguan_price_report_spot",
  2652. "code": "price_report_spot",
  2653. "path": "price_report_spot",
  2654. "component": "views/iframe/index.vue",
  2655. "sort": 1,
  2656. "isshow": true,
  2657. "url": "/reckon/scmiddlegoods/init",
  2658. "remark": "管理端",
  2659. "auth": []
  2660. }
  2661. ]
  2662. }
  2663. ]
  2664. },
  2665. {
  2666. "title": "铂金宝",
  2667. "rulekey": "client_pc_web_qiyefengguan_platinum",
  2668. "code": "platinum",
  2669. "path": "/platinum",
  2670. "component": "Layout",
  2671. "sort": 90,
  2672. "isshow": true,
  2673. "children": [
  2674. {
  2675. "title": "客户资料",
  2676. "rulekey": "client_pc_web_qiyefengguan_platinum_custom",
  2677. "code": "platinum-custom",
  2678. "path": "custom",
  2679. "component": "Main",
  2680. "sort": 10,
  2681. "isshow": true,
  2682. "url": "",
  2683. "remark": "",
  2684. "children": [
  2685. {
  2686. "title": "待审核",
  2687. "rulekey": "client_pc_web_qiyefengguan_platinum_custom_checkpending",
  2688. "code": "custom_checkpending",
  2689. "path": "custom_checkpending",
  2690. "component": "views/information/custom/index.vue",
  2691. "sort": 1,
  2692. "isshow": true,
  2693. "url": "",
  2694. "remark": "",
  2695. "auth": [
  2696. {
  2697. "label": "新增",
  2698. "rulekey": "client_pc_web_qiyefengguan_platinum_custom_checkpending_add",
  2699. "code": "add",
  2700. "isshow": true,
  2701. "remark": ""
  2702. },
  2703. {
  2704. "label": "审核",
  2705. "rulekey": "client_pc_web_qiyefengguan_platinum_custom_checkpending_check",
  2706. "code": "check",
  2707. "isshow": true,
  2708. "remark": ""
  2709. },
  2710. {
  2711. "label": "重新提交",
  2712. "rulekey": "client_pc_web_qiyefengguan_platinum_custom_normal_modify",
  2713. "code": "modify",
  2714. "isshow": true,
  2715. "remark": ""
  2716. },
  2717. {
  2718. "label": "详情",
  2719. "rulekey": "",
  2720. "code": "detail",
  2721. "isshow": true,
  2722. "remark": ""
  2723. }
  2724. ]
  2725. },
  2726. {
  2727. "title": "正常",
  2728. "rulekey": "client_pc_web_qiyefengguan_platinum_custom_normal",
  2729. "code": "custom_normal",
  2730. "path": "custom_normal",
  2731. "component": "views/information/custom/index.vue",
  2732. "sort": 2,
  2733. "isshow": true,
  2734. "url": "",
  2735. "remark": "",
  2736. "auth": [
  2737. {
  2738. "label": "新增",
  2739. "rulekey": "client_pc_web_qiyefengguan_platinum_custom_normal_add",
  2740. "code": "add",
  2741. "isshow": true,
  2742. "remark": ""
  2743. },
  2744. {
  2745. "label": "停用",
  2746. "rulekey": "client_pc_web_qiyefengguan_platinum_custom_normal_disable",
  2747. "code": "disable",
  2748. "isshow": true,
  2749. "remark": ""
  2750. },
  2751. {
  2752. "label": "详情",
  2753. "rulekey": "",
  2754. "code": "detail",
  2755. "isshow": true,
  2756. "remark": ""
  2757. }
  2758. ]
  2759. },
  2760. {
  2761. "title": "停用",
  2762. "rulekey": "client_pc_web_qiyefengguan_platinum_custom_disabled",
  2763. "code": "custom_disabled",
  2764. "path": "custom_disabled",
  2765. "component": "views/information/custom/index.vue",
  2766. "sort": 3,
  2767. "isshow": true,
  2768. "url": "",
  2769. "remark": "",
  2770. "auth": [
  2771. {
  2772. "label": "新增",
  2773. "rulekey": "client_pc_web_qiyefengguan_platinum_custom_disabled_add",
  2774. "code": "add",
  2775. "isshow": true,
  2776. "remark": ""
  2777. },
  2778. {
  2779. "label": "恢复",
  2780. "rulekey": "client_pc_web_qiyefengguan_platinum_custom_disabled_recover",
  2781. "code": "recover",
  2782. "isshow": true,
  2783. "remark": ""
  2784. },
  2785. {
  2786. "label": "详情",
  2787. "rulekey": "",
  2788. "code": "detail",
  2789. "isshow": true,
  2790. "remark": ""
  2791. }
  2792. ]
  2793. }
  2794. ]
  2795. },
  2796. {
  2797. "title": "提货查询",
  2798. "rulekey": "client_pc_web_qhj_thcx",
  2799. "code": "platinum_pick_query",
  2800. "path": "platinum_pick_query",
  2801. "component": "Main",
  2802. "sort": 20,
  2803. "isshow": true,
  2804. "url": "",
  2805. "remark": "",
  2806. "children": [
  2807. {
  2808. "title": "提货查询",
  2809. "rulekey": "client_pc_web_qhj_thcx_sub",
  2810. "code": "platinum_pick_query_tab",
  2811. "path": "platinum_pick_query_tab",
  2812. "component": "views/platinum/platinum_pick_query/list/tab/index.vue",
  2813. "sort": 1,
  2814. "isshow": true,
  2815. "url": "",
  2816. "remark": "",
  2817. "auth": [
  2818. {
  2819. "label": "完成备货",
  2820. "rulekey": "client_pc_web_qhj_thcx_complete_stocking",
  2821. "code": "complete_stocking",
  2822. "isshow": true,
  2823. "remark": ""
  2824. },
  2825. {
  2826. "label": "上传物流",
  2827. "rulekey": "client_pc_web_qhj_thcx_upload_logistics",
  2828. "code": "complete_stocking",
  2829. "isshow": true,
  2830. "remark": ""
  2831. },
  2832. {
  2833. "label": "确认收货",
  2834. "rulekey": "client_pc_web_qhj_thcx_receipt",
  2835. "code": "confirm_receipt",
  2836. "isshow": true,
  2837. "remark": ""
  2838. },
  2839. {
  2840. "label": "确认提货",
  2841. "rulekey": "client_pc_web_qhj_thcx_pickup",
  2842. "code": "confirm_pickup",
  2843. "isshow": true,
  2844. "remark": ""
  2845. },
  2846. {
  2847. "label": "详情",
  2848. "rulekey": "",
  2849. "code": "detail",
  2850. "isshow": true,
  2851. "remark": ""
  2852. }
  2853. ]
  2854. }
  2855. ]
  2856. },
  2857. {
  2858. "title": "充值和提现审核",
  2859. "rulekey": "client_pc_web_qhj_cztx",
  2860. "code": "platinum_recharge_withdrawal_review",
  2861. "path": "platinum_recharge_withdrawal_review",
  2862. "component": "Main",
  2863. "sort": 30,
  2864. "isshow": true,
  2865. "url": "",
  2866. "remark": "",
  2867. "children": [
  2868. {
  2869. "title": "充值审核",
  2870. "rulekey": "client_pc_web_qhj_cztx_recharge_tab",
  2871. "code": "platinum_recharge_review",
  2872. "path": "platinum_recharge_review",
  2873. "component": "views/platinum/platinum_recharge_withdrawal_review/list/recharge/index.vue",
  2874. "sort": 10,
  2875. "isshow": true,
  2876. "url": "",
  2877. "remark": "",
  2878. "auth": [
  2879. {
  2880. "label": "确认收款",
  2881. "rulekey": "client_pc_web_qhj_cztx_recharge_tab_confirm_payment",
  2882. "code": "confirm_payment",
  2883. "isshow": true,
  2884. "remark": ""
  2885. },
  2886. {
  2887. "label": "审核拒绝",
  2888. "rulekey": "client_pc_web_qhj_cztx_recharge_tab_review_refuse",
  2889. "code": "review_refuse",
  2890. "isshow": true,
  2891. "remark": ""
  2892. },
  2893. {
  2894. "label": "详情",
  2895. "rulekey": "",
  2896. "code": "detail",
  2897. "isshow": true,
  2898. "remark": ""
  2899. }
  2900. ]
  2901. },
  2902. {
  2903. "title": "提现审核",
  2904. "rulekey": "client_pc_web_qhj_cztx_withdrawal_tab",
  2905. "code": "platinum_recharge_withdrawal",
  2906. "path": "platinum_recharge_withdrawal",
  2907. "component": "views/platinum/platinum_recharge_withdrawal_review/list/withdrawal/index.vue",
  2908. "sort": 20,
  2909. "isshow": true,
  2910. "url": "",
  2911. "remark": "",
  2912. "auth": [
  2913. {
  2914. "label": "确认提现",
  2915. "rulekey": "client_pc_web_qhj_cztx_withdrawal_tab_confirm_withdrawal",
  2916. "code": "review_confirm",
  2917. "isshow": true,
  2918. "remark": ""
  2919. },
  2920. {
  2921. "label": "审核拒绝",
  2922. "rulekey": "client_pc_web_qhj_cztx_withdrawal_tab_review_refuse",
  2923. "code": "review_refuse",
  2924. "isshow": true,
  2925. "remark": ""
  2926. },
  2927. {
  2928. "label": "详情",
  2929. "rulekey": "",
  2930. "code": "detail",
  2931. "isshow": true,
  2932. "remark": ""
  2933. }
  2934. ]
  2935. }
  2936. ]
  2937. },
  2938. {
  2939. "title": "定投价查询",
  2940. "rulekey": "client_pc_web_qhj_dtj",
  2941. "code": "platinum_fixed_investment_price",
  2942. "path": "platinum_fixed_investment_price",
  2943. "component": "Main",
  2944. "sort": 40,
  2945. "isshow": true,
  2946. "url": "",
  2947. "remark": "",
  2948. "children": [
  2949. {
  2950. "title": "定投价查询",
  2951. "rulekey": "client_pc_web_qhj_dtj_sub",
  2952. "code": "fixed_investment_price",
  2953. "path": "fixed_investment_price",
  2954. "component": "views/platinum/platinum_fixed_investment_price_query/list/tab/index.vue",
  2955. "sort": 10,
  2956. "isshow": true,
  2957. "url": "",
  2958. "remark": "",
  2959. "auth": []
  2960. }
  2961. ]
  2962. },
  2963. {
  2964. "title": "定投查询",
  2965. "rulekey": "client_pc_web_qhj_dt",
  2966. "code": "platinum_fixed_investment",
  2967. "path": "platinum_fixed_investment",
  2968. "component": "Main",
  2969. "sort": 50,
  2970. "isshow": true,
  2971. "url": "",
  2972. "remark": "",
  2973. "children": [
  2974. {
  2975. "title": "定投计划查询",
  2976. "rulekey": "client_pc_web_qhj_dt_plan",
  2977. "code": "platinum_fixed_investment_plan",
  2978. "path": "platinum_fixed_investment_plan",
  2979. "component": "views/platinum/platinum_fixed_investment_query/list/plan/index.vue",
  2980. "sort": 10,
  2981. "isshow": true,
  2982. "url": "",
  2983. "remark": "",
  2984. "auth": []
  2985. },
  2986. {
  2987. "title": "定投流水查询",
  2988. "rulekey": "client_pc_web_qhj_dt_log",
  2989. "code": "platinum_fixed_investment_flow",
  2990. "path": "platinum_fixed_investment_flow",
  2991. "component": "views/platinum/platinum_fixed_investment_query/list/flow/index.vue",
  2992. "sort": 20,
  2993. "isshow": true,
  2994. "url": "",
  2995. "remark": "",
  2996. "auth": []
  2997. }
  2998. ]
  2999. },
  3000. {
  3001. "title": "单据查询",
  3002. "rulekey": "client_pc_web_qhj_dj",
  3003. "code": "platinum_document",
  3004. "path": "platinum_document",
  3005. "component": "Main",
  3006. "sort": 60,
  3007. "isshow": true,
  3008. "url": "",
  3009. "remark": "",
  3010. "children": [
  3011. {
  3012. "title": "持仓",
  3013. "rulekey": "client_pc_web_qhj_dj_position",
  3014. "code": "platinum_document_position",
  3015. "path": "platinum_document_position",
  3016. "component": "views/platinum/platinum_document_query/list/position/index.vue",
  3017. "sort": 10,
  3018. "isshow": true,
  3019. "url": "",
  3020. "remark": "",
  3021. "auth": []
  3022. },
  3023. {
  3024. "title": "委托单",
  3025. "rulekey": "client_pc_web_qhj_dj_order",
  3026. "code": "platinum_document_order",
  3027. "path": "platinum_document_order",
  3028. "component": "views/platinum/platinum_document_query/list/order/index.vue",
  3029. "sort": 20,
  3030. "isshow": true,
  3031. "url": "",
  3032. "remark": "",
  3033. "auth": []
  3034. },
  3035. {
  3036. "title": "待付单",
  3037. "rulekey": "client_pc_web_qhj_dj_waiting",
  3038. "code": "platinum_document_waiting",
  3039. "path": "platinum_document_waiting",
  3040. "component": "views/platinum/platinum_document_query/list/waiting/index.vue",
  3041. "sort": 30,
  3042. "isshow": true,
  3043. "url": "",
  3044. "remark": "",
  3045. "auth": []
  3046. },
  3047. {
  3048. "title": "成交单",
  3049. "rulekey": "client_pc_web_qhj_dj_success",
  3050. "code": "platinum_document_success",
  3051. "path": "platinum_document_success",
  3052. "component": "views/platinum/platinum_document_query/list/success/index.vue",
  3053. "sort": 30,
  3054. "isshow": true,
  3055. "url": "",
  3056. "remark": "",
  3057. "auth": []
  3058. }
  3059. ]
  3060. },
  3061. {
  3062. "title": "融资信息",
  3063. "rulekey": "client_pc_web_qhj_rz",
  3064. "code": "platinum_financing",
  3065. "path": "platinum_financing",
  3066. "component": "Main",
  3067. "sort": 70,
  3068. "isshow": true,
  3069. "url": "",
  3070. "remark": "",
  3071. "children": [
  3072. {
  3073. "title": "融资信息",
  3074. "rulekey": "client_pc_web_qhj_rz_information",
  3075. "code": "platinum_financing_information",
  3076. "path": "platinum_financing_information",
  3077. "component": "views/platinum/platinum_financing_information/list/tab/index.vue",
  3078. "sort": 10,
  3079. "isshow": true,
  3080. "url": "",
  3081. "remark": "",
  3082. "auth": [
  3083. {
  3084. "label": "融资明细",
  3085. "rulekey": "client_pc_web_qhj_rz_information_detail",
  3086. "code": "information_detail",
  3087. "isshow": true,
  3088. "remark": ""
  3089. }
  3090. ]
  3091. }
  3092. ]
  3093. },
  3094. {
  3095. "title": "协议管理",
  3096. "rulekey": "client_pc_web_qhj_xygl",
  3097. "code": "platinum_agreements",
  3098. "path": "platinum_agreements",
  3099. "component": "Main",
  3100. "sort": 80,
  3101. "isshow": true,
  3102. "url": "",
  3103. "remark": "",
  3104. "children": [
  3105. {
  3106. "title": "协议管理",
  3107. "rulekey": "client_pc_web_qhj_xygl_tab",
  3108. "code": "platinum_agreement",
  3109. "path": "platinum_agreement",
  3110. "component": "views/platinum/platinum_agreement/list/tab/index.vue",
  3111. "sort": 10,
  3112. "isshow": true,
  3113. "url": "",
  3114. "remark": "",
  3115. "auth": [
  3116. {
  3117. "label": "新增",
  3118. "rulekey": "client_pc_web_qhj_xygl_add",
  3119. "code": "add",
  3120. "isshow": true,
  3121. "remark": ""
  3122. },
  3123. {
  3124. "label": "修改",
  3125. "rulekey": "client_pc_web_qhj_xygl_modify",
  3126. "code": "modify",
  3127. "isshow": true,
  3128. "remark": ""
  3129. },
  3130. {
  3131. "label": "停用",
  3132. "rulekey": "client_pc_web_qhj_xygl_stop",
  3133. "code": "disable",
  3134. "isshow": true,
  3135. "remark": ""
  3136. },
  3137. {
  3138. "label": "恢复",
  3139. "rulekey": "client_pc_web_qhj_xygl_resume",
  3140. "code": "resume",
  3141. "isshow": true,
  3142. "remark": ""
  3143. },
  3144. {
  3145. "label": "注销",
  3146. "rulekey": "client_pc_web_qhj_xygl_delete",
  3147. "code": "delete",
  3148. "isshow": true,
  3149. "remark": ""
  3150. },
  3151. {
  3152. "label": "详情",
  3153. "rulekey": "client_pc_web_qhj_xygl_detail",
  3154. "code": "detail",
  3155. "isshow": true,
  3156. "remark": ""
  3157. }
  3158. ]
  3159. }
  3160. ]
  3161. },
  3162. {
  3163. "title": "积分流水",
  3164. "rulekey": "client_pc_web_qhj_zjls",
  3165. "code": "platinum_capital_flow",
  3166. "path": "platinum_capital_flow",
  3167. "component": "Main",
  3168. "sort": 90,
  3169. "isshow": true,
  3170. "url": "",
  3171. "remark": "",
  3172. "children": [
  3173. {
  3174. "title": "积分流水",
  3175. "rulekey": "client_pc_web_qhj_fixed_investment_dtj",
  3176. "code": "platinum_capital_flow_tab",
  3177. "path": "platinum_capital_flow_tab",
  3178. "component": "views/iframe/index.vue",
  3179. "sort": 10,
  3180. "isshow": true,
  3181. "url": "/qhj/scorelog/init",
  3182. "remark": "管理端",
  3183. "auth": []
  3184. }
  3185. ]
  3186. },
  3187. {
  3188. "title": "推广报表",
  3189. "rulekey": "client_pc_web_qhj_tgbb",
  3190. "code": "platinum_promotion_report",
  3191. "path": "platinum_promotion_report",
  3192. "component": "Main",
  3193. "sort": 100,
  3194. "isshow": true,
  3195. "url": "",
  3196. "remark": "",
  3197. "children": [
  3198. {
  3199. "title": "推广报表",
  3200. "rulekey": "client_pc_web_qhj_tgbb_tab",
  3201. "code": "platinum_promotion_report_tab",
  3202. "path": "platinum_promotion_report_tab",
  3203. "component": "views/iframe/index.vue",
  3204. "sort": 10,
  3205. "isshow": true,
  3206. "url": "/reckon/brokerreward/init",
  3207. "remark": "管理端",
  3208. "auth": []
  3209. }
  3210. ]
  3211. },
  3212. {
  3213. "title": "经纪人管理",
  3214. "rulekey": "client_pc_web_qhj_jjrgl",
  3215. "code": "platinum_broker_management",
  3216. "path": "platinum_broker_management",
  3217. "component": "Main",
  3218. "sort": 100,
  3219. "isshow": true,
  3220. "url": "",
  3221. "remark": "",
  3222. "children": [
  3223. {
  3224. "title": "正常",
  3225. "rulekey": "client_pc_web_qhj_jjrgl_normal_tab",
  3226. "code": "platinum_broker_management_normal",
  3227. "path": "platinum_broker_management_normal",
  3228. "component": "views/iframe/index.vue",
  3229. "sort": 10,
  3230. "isshow": true,
  3231. "url": "/qhj/brokerapply/init",
  3232. "remark": "管理端",
  3233. "auth": []
  3234. },
  3235. {
  3236. "title": "待审核",
  3237. "rulekey": "client_pc_web_qhj_jjrgl_waiting_tab",
  3238. "code": "platinum_broker_management_waiting",
  3239. "path": "platinum_broker_management_waiting",
  3240. "component": "views/iframe/index.vue",
  3241. "sort": 20,
  3242. "isshow": true,
  3243. "url": "/qhj/brokerapply/init",
  3244. "remark": "管理端",
  3245. "auth": [
  3246. {
  3247. "label": "审核",
  3248. "rulekey": "client_pc_web_qhj_jjrgl_check",
  3249. "code": "check",
  3250. "isshow": true,
  3251. "remark": ""
  3252. }
  3253. ]
  3254. },
  3255. {
  3256. "title": "审核拒绝",
  3257. "rulekey": "client_pc_web_qhj_jjrgl_refuse",
  3258. "code": "platinum_broker_management_refuse",
  3259. "path": "platinum_broker_management_refuse",
  3260. "component": "views/iframe/index.vue",
  3261. "sort": 30,
  3262. "isshow": true,
  3263. "url": "/qhj/brokerapply/init",
  3264. "remark": "管理端",
  3265. "auth": [
  3266. {
  3267. "label": "恢复",
  3268. "rulekey": "client_pc_web_qhj_jjrgl_resume",
  3269. "code": "active",
  3270. "isshow": true,
  3271. "remark": ""
  3272. }
  3273. ]
  3274. }
  3275. ]
  3276. },
  3277. {
  3278. "title": "客户账户查询",
  3279. "rulekey": "client_pc_web_qhj_platinum_custormer_account_query",
  3280. "code": "platinum_custormer_account_query",
  3281. "path": "platinum_custormer_account_query",
  3282. "component": "Main",
  3283. "sort": 110,
  3284. "isshow": true,
  3285. "url": "",
  3286. "remark": "",
  3287. "children": [
  3288. {
  3289. "title": "客户账户查询",
  3290. "rulekey": "client_pc_web_qhj_platinum_custormer_account_query_tab",
  3291. "code": "platinum_custormer_account_query_tab",
  3292. "path": "platinum_custormer_account_query_tab",
  3293. "component": "views/iframe/index.vue",
  3294. "sort": 10,
  3295. "isshow": true,
  3296. "url": "/qhj/customeraccount/init",
  3297. "remark": "管理端",
  3298. "auth": []
  3299. }
  3300. ]
  3301. },
  3302. {
  3303. "title": "出入金查询",
  3304. "rulekey": "client_pc_web_qhj_platinum_apply_in_out_query",
  3305. "code": "platinum_apply_in_out_query",
  3306. "path": "platinum_apply_in_out_query",
  3307. "component": "Main",
  3308. "sort": 110,
  3309. "isshow": true,
  3310. "url": "",
  3311. "remark": "",
  3312. "children": [
  3313. {
  3314. "title": "出入金查询",
  3315. "rulekey": "client_pc_web_qhj_platinum_apply_in_out_query_tab",
  3316. "code": "platinum_apply_in_out_query_tab",
  3317. "path": "platinum_apply_in_out_query_tab",
  3318. "component": "views/iframe/index.vue",
  3319. "sort": 10,
  3320. "isshow": true,
  3321. "url": "/qhj/bankaccountoutinapply/init",
  3322. "remark": "管理端",
  3323. "auth": []
  3324. }
  3325. ]
  3326. }
  3327. ]
  3328. },
  3329. {
  3330. "title": "签单",
  3331. "rulekey": "client_pc_web_qiyefengguan_platinum_signing",
  3332. "code": "platinum_signing",
  3333. "path": "/platinum_signing",
  3334. "component": "Layout",
  3335. "sort": 100,
  3336. "isshow": true,
  3337. "children": [
  3338. {
  3339. "title": "签单设置",
  3340. "rulekey": "client_pc_web_qhj_qdsz",
  3341. "code": "platinum_signing_settings",
  3342. "path": "platinum_signing_settings",
  3343. "component": "Main",
  3344. "sort": 10,
  3345. "isshow": true,
  3346. "url": "",
  3347. "remark": "",
  3348. "children": [
  3349. {
  3350. "title": "签单设置",
  3351. "rulekey": "client_pc_web_qhj_qdsz_tab",
  3352. "code": "platinum_signing_settings_tab",
  3353. "path": "platinum_signing_settings_tab",
  3354. "component": "views/iframe/index.vue",
  3355. "sort": 30,
  3356. "isshow": true,
  3357. "url": "/qhj/setting/init",
  3358. "remark": "管理端",
  3359. "auth": [
  3360. {
  3361. "label": "新增",
  3362. "rulekey": "client_pc_web_qhj_qdsz_tab_add",
  3363. "code": "add",
  3364. "isshow": true,
  3365. "remark": ""
  3366. },
  3367. {
  3368. "label": "修改",
  3369. "rulekey": "client_pc_web_qhj_qdsz_tab_revise",
  3370. "code": "edit",
  3371. "isshow": true,
  3372. "remark": ""
  3373. },
  3374. {
  3375. "label": "删除",
  3376. "rulekey": "cclient_pc_web_qhj_qdsz_tab_revise_delete",
  3377. "code": "del",
  3378. "isshow": true,
  3379. "remark": ""
  3380. },
  3381. {
  3382. "label": "关联现货",
  3383. "rulekey": "client_pc_web_qhj_qdsz_tab_spot_dddddd",
  3384. "code": "setting",
  3385. "isshow": true,
  3386. "remark": ""
  3387. }
  3388. ]
  3389. }
  3390. ]
  3391. },
  3392. {
  3393. "title": "团队设置",
  3394. "rulekey": "client_pc_web_qhj_tdsz",
  3395. "code": "platinum_team_settings",
  3396. "path": "platinum_team_settings",
  3397. "component": "Main",
  3398. "sort": 20,
  3399. "isshow": true,
  3400. "url": "",
  3401. "remark": "",
  3402. "children": [
  3403. {
  3404. "title": "团队设置",
  3405. "rulekey": "client_pc_web_qhj_tdsz_tab",
  3406. "code": "platinum_team_settings_tab",
  3407. "path": "platinum_team_settings_tab",
  3408. "component": "views/iframe/index.vue",
  3409. "sort": 10,
  3410. "isshow": true,
  3411. "url": "/qhj/teamsetting/init",
  3412. "remark": "管理端",
  3413. "auth": [
  3414. {
  3415. "label": "新增",
  3416. "rulekey": "client_pc_web_qhj_tdsz_tab_add",
  3417. "code": "add",
  3418. "isshow": true,
  3419. "remark": ""
  3420. },
  3421. {
  3422. "label": "修改",
  3423. "rulekey": "client_pc_web_qhj_qdsz_tab_modify",
  3424. "code": "edit",
  3425. "isshow": true,
  3426. "remark": ""
  3427. },
  3428. {
  3429. "label": "删除",
  3430. "rulekey": "client_pc_web_qhj_qdsz_tab_delete",
  3431. "code": "del",
  3432. "isshow": true,
  3433. "remark": ""
  3434. },
  3435. {
  3436. "label": "月目标",
  3437. "rulekey": "client_pc_web_qhj_tdsz_tab_monthly_goal",
  3438. "code": "setting",
  3439. "isshow": true,
  3440. "remark": ""
  3441. },
  3442. {
  3443. "label": "详情",
  3444. "rulekey": "client_pc_web_qhj_tdsz_tab_info",
  3445. "code": "info",
  3446. "isshow": true,
  3447. "remark": ""
  3448. }
  3449. ]
  3450. }
  3451. ]
  3452. },
  3453. {
  3454. "title": "资管签订",
  3455. "rulekey": "client_pc_web_qhj_zgqd",
  3456. "code": "platinum_asset_management_signing",
  3457. "path": "platinum_asset_management_signing",
  3458. "component": "Main",
  3459. "sort": 30,
  3460. "isshow": true,
  3461. "url": "",
  3462. "remark": "",
  3463. "children": [
  3464. {
  3465. "title": "未提交",
  3466. "rulekey": "client_pc_web_qhj_zgqd_unsubmit_tab_dddss",
  3467. "code": "platinum_asset_management_signing_unsubmitted",
  3468. "path": "platinum_asset_management_signing_unsubmitted",
  3469. "component": "views/iframe/index.vue",
  3470. "sort": 10,
  3471. "isshow": true,
  3472. "url": "/qhj/qhjsigncontract/zginit",
  3473. "remark": "管理端",
  3474. "auth": [
  3475. {
  3476. "label": "新增",
  3477. "rulekey": "client_pc_web_qhj_zgqd_unsubmit_tab_add",
  3478. "code": "add",
  3479. "isshow": true,
  3480. "remark": ""
  3481. },
  3482. {
  3483. "label": "提交",
  3484. "rulekey": "client_pc_web_qhj_zgqd_unsubmit_tab_submit",
  3485. "code": "active",
  3486. "isshow": true,
  3487. "remark": ""
  3488. },
  3489. {
  3490. "label": "修改",
  3491. "rulekey": "client_pc_web_qhj_zgqd_unsubmit_tab_revise",
  3492. "code": "edit",
  3493. "isshow": true,
  3494. "remark": ""
  3495. }
  3496. ]
  3497. },
  3498. {
  3499. "title": "待审核",
  3500. "rulekey": "client_pc_web_qhj_zgqd_pending_review_tab",
  3501. "code": "platinum_asset_management_signing_pending_review",
  3502. "path": "platinum_asset_management_signing_pending_review",
  3503. "component": "views/iframe/index.vue",
  3504. "sort": 20,
  3505. "isshow": true,
  3506. "url": "/qhj/qhjsigncontract/zginit",
  3507. "remark": "管理端",
  3508. "auth": [
  3509. {
  3510. "label": "审核",
  3511. "rulekey": "client_pc_web_qhj_zgqd_pending_review_tab_check",
  3512. "code": "check",
  3513. "isshow": true,
  3514. "remark": ""
  3515. },
  3516. {
  3517. "label": "详情",
  3518. "rulekey": "client_pc_web_qhj_zgqd_unsubmit_tab_info",
  3519. "code": "info",
  3520. "isshow": true,
  3521. "remark": ""
  3522. }
  3523. ]
  3524. },
  3525. {
  3526. "title": "正常",
  3527. "rulekey": "client_pc_web_qhj_zgqd_normal_tab",
  3528. "code": "platinum_asset_management_signing_normal",
  3529. "path": "platinum_asset_management_signing_normal",
  3530. "component": "views/iframe/index.vue",
  3531. "sort": 30,
  3532. "isshow": true,
  3533. "url": "/qhj/qhjsigncontract/zginit",
  3534. "remark": "管理端",
  3535. "auth": [
  3536. {
  3537. "label": "未到期续签",
  3538. "rulekey": "client_pc_web_qhj_zgqd_normal_tab_unexpired_renewal",
  3539. "code": "reset",
  3540. "isshow": true,
  3541. "remark": ""
  3542. },
  3543. {
  3544. "label": "到期续签",
  3545. "rulekey": "client_pc_web_qiyefengguan_platinum_asset_management_signing_normal_expiry_renewal",
  3546. "code": "lock",
  3547. "isshow": true,
  3548. "remark": ""
  3549. },
  3550. {
  3551. "label": "待付款登记",
  3552. "rulekey": "client_pc_web_qiyefengguan_platinum_asset_management_signing_normal_expiry_renewal_tranmoneyin",
  3553. "code": "tranmoneyin",
  3554. "isshow": true,
  3555. "remark": ""
  3556. },
  3557. {
  3558. "label": "详情",
  3559. "rulekey": "client_pc_web_qiyefengguan_platinum_asset_management_signing_normal_expiry_renewal_info",
  3560. "code": "info",
  3561. "isshow": true,
  3562. "remark": ""
  3563. }
  3564. ]
  3565. },
  3566. {
  3567. "title": "已完成",
  3568. "rulekey": "client_pc_web_qhj_zgqd_finish_tab",
  3569. "code": "platinum_asset_management_signing_finish",
  3570. "path": "platinum_asset_management_signing_finish",
  3571. "component": "views/iframe/index.vue",
  3572. "sort": 40,
  3573. "isshow": true,
  3574. "url": "/qhj/qhjsigncontract/zginit",
  3575. "remark": "管理端",
  3576. "auth": [
  3577. {
  3578. "label": "详情",
  3579. "rulekey": "client_pc_web_qiyefengguan_platinum_asset_management_signing_normal_finishl_info",
  3580. "code": "info",
  3581. "isshow": true,
  3582. "remark": ""
  3583. }
  3584. ]
  3585. },
  3586. {
  3587. "title": "全部",
  3588. "rulekey": "client_pc_web_qhj_zgqd_all_tab",
  3589. "code": "platinum_asset_management_signing_all",
  3590. "path": "platinum_asset_management_signing_all",
  3591. "component": "views/iframe/index.vue",
  3592. "sort": 50,
  3593. "isshow": true,
  3594. "url": "/qhj/qhjsigncontract/zginit",
  3595. "remark": "管理端",
  3596. "auth": [
  3597. {
  3598. "label": "导出",
  3599. "rulekey": "client_pc_web_qhj_tdsz_all_tab_export",
  3600. "code": "exportdata",
  3601. "isshow": true,
  3602. "remark": ""
  3603. },
  3604. {
  3605. "label": "修改基本方式",
  3606. "rulekey": "client_pc_web_qhj_tdsz_all_tab_modify_basic_way",
  3607. "code": "auth",
  3608. "isshow": true,
  3609. "remark": ""
  3610. },
  3611. {
  3612. "label": "修改付款方式",
  3613. "rulekey": "client_pc_web_qhj_tdsz_all_tab_modify_payment_method",
  3614. "code": "user",
  3615. "isshow": true,
  3616. "remark": ""
  3617. },
  3618. {
  3619. "label": "详情",
  3620. "rulekey": "client_pc_web_qhj_tdsz_all_tab_modify_info",
  3621. "code": "info",
  3622. "isshow": true,
  3623. "remark": ""
  3624. }
  3625. ]
  3626. }
  3627. ]
  3628. },
  3629. {
  3630. "title": "贵金属签订",
  3631. "rulekey": "client_pc_web_qhj_gjsqd",
  3632. "code": "platinum_precious_metal_signing",
  3633. "path": "platinum_precious_metal_signing",
  3634. "component": "Main",
  3635. "sort": 40,
  3636. "isshow": true,
  3637. "url": "",
  3638. "remark": "",
  3639. "children": [
  3640. {
  3641. "title": "未提交",
  3642. "rulekey": "client_pc_web_qhj_zgqd_unsubmit_tab",
  3643. "code": "platinum_precious_metal_signing_unsubmitted",
  3644. "path": "platinum_precious_metal_signing_unsubmitted",
  3645. "component": "views/iframe/index.vue",
  3646. "sort": 10,
  3647. "isshow": true,
  3648. "url": "/qhj/qhjsigncontract/gjsinit",
  3649. "remark": "管理端",
  3650. "auth": [
  3651. {
  3652. "label": "新增",
  3653. "rulekey": "client_pc_web_qhj_gjsqd_unsubmit_tab_add",
  3654. "code": "add",
  3655. "isshow": true,
  3656. "remark": ""
  3657. },
  3658. {
  3659. "label": "提交",
  3660. "rulekey": "client_pc_web_qhj_gjsqd_unsubmit_tab_submit",
  3661. "code": "active",
  3662. "isshow": true,
  3663. "remark": ""
  3664. },
  3665. {
  3666. "label": "修改",
  3667. "rulekey": "client_pc_web_qhj_gjsqd_unsubmit_tab_revise",
  3668. "code": "edit",
  3669. "isshow": true,
  3670. "remark": ""
  3671. },
  3672. {
  3673. "label": "详情",
  3674. "rulekey": "client_pc_web_qhj_gjsqd_unsubmit_tab_info",
  3675. "code": "info",
  3676. "isshow": true,
  3677. "remark": ""
  3678. }
  3679. ]
  3680. },
  3681. {
  3682. "title": "待审核",
  3683. "rulekey": "client_pc_web_qhj_gjsqd_waiting_check_tab",
  3684. "code": "platinum_precious_metal_signing_pending_review",
  3685. "path": "platinum_precious_metal_signing_pending_review",
  3686. "component": "views/iframe/index.vue",
  3687. "sort": 20,
  3688. "isshow": true,
  3689. "url": "/qhj/qhjsigncontract/gjsinit",
  3690. "remark": "管理端",
  3691. "auth": [
  3692. {
  3693. "label": "审核",
  3694. "rulekey": "client_pc_web_qhj_gjsqd_waiting_check_tab_check",
  3695. "code": "check",
  3696. "isshow": true,
  3697. "remark": ""
  3698. },
  3699. {
  3700. "label": "详情",
  3701. "rulekey": "client_pc_web_qhj_gjsqd_waiting_check_tab_check_info",
  3702. "code": "info",
  3703. "isshow": true,
  3704. "remark": ""
  3705. }
  3706. ]
  3707. },
  3708. {
  3709. "title": "回购待审核",
  3710. "rulekey": "client_pc_web_qhj_gjsqd_repurchase_pending_review_tab",
  3711. "code": "platinum_precious_metal_signing_repurchase_pending_review",
  3712. "path": "platinum_precious_metal_signing_repurchase_pending_review",
  3713. "component": "views/iframe/index.vue",
  3714. "sort": 30,
  3715. "isshow": true,
  3716. "url": "/qhj/qhjsigncontract/gjsinit",
  3717. "remark": "管理端",
  3718. "auth": [
  3719. {
  3720. "label": "回购审核",
  3721. "rulekey": "client_pc_web_qhj_gjsqd_repurchase_pending_review_tab_repurchase_review",
  3722. "code": "reset",
  3723. "isshow": true,
  3724. "remark": ""
  3725. },
  3726. {
  3727. "label": "详情",
  3728. "rulekey": "client_pc_web_qhj_gjsqd_repurchase_pending_review_tab_repurchase_review_info",
  3729. "code": "info",
  3730. "isshow": true,
  3731. "remark": ""
  3732. }
  3733. ]
  3734. },
  3735. {
  3736. "title": "正常",
  3737. "rulekey": "client_pc_web_qhj_gjsqd_normal_tab",
  3738. "code": "platinum_precious_metal_signing_normal",
  3739. "path": "platinum_precious_metal_signing_normal",
  3740. "component": "views/iframe/index.vue",
  3741. "sort": 40,
  3742. "isshow": true,
  3743. "url": "/qhj/qhjsigncontract/gjsinit",
  3744. "remark": "管理端",
  3745. "auth": [
  3746. {
  3747. "label": "付款确认",
  3748. "rulekey": "client_pc_web_qhj_gjsqd_normal_tab_payment_confirmation",
  3749. "code": "close",
  3750. "isshow": true,
  3751. "remark": ""
  3752. },
  3753. {
  3754. "label": "到期回购",
  3755. "rulekey": "client_pc_web_qhj_gjsqd_normal_tab_repurchase_maturity",
  3756. "code": "reset",
  3757. "isshow": true,
  3758. "remark": ""
  3759. },
  3760. {
  3761. "label": "续签合同",
  3762. "rulekey": "client_pc_web_qhj_gjsqd_normal_tab_renew_contract",
  3763. "code": "lock",
  3764. "isshow": true,
  3765. "remark": ""
  3766. },
  3767. {
  3768. "label": "到期未回购",
  3769. "rulekey": "client_pc_web_qiyefengguan_platinum_precious_metal_signing_normal_not_repurchased_after_maturity",
  3770. "code": "unauth",
  3771. "isshow": true,
  3772. "remark": ""
  3773. },
  3774. {
  3775. "label": "退单",
  3776. "rulekey": "client_pc_web_qhj_gjsqd_normal_tab_chargeback",
  3777. "code": "cancel",
  3778. "isshow": true,
  3779. "remark": ""
  3780. },
  3781. {
  3782. "label": "详情",
  3783. "rulekey": "client_pc_web_qhj_gjsqd_normal_tab_chargeback_info",
  3784. "code": "info",
  3785. "isshow": true,
  3786. "remark": ""
  3787. }
  3788. ]
  3789. },
  3790. {
  3791. "title": "已完成",
  3792. "rulekey": "client_pc_web_qhj_gjsqd_success_tab",
  3793. "code": "platinum_precious_metal_signing_success",
  3794. "path": "platinum_precious_metal_signing_success",
  3795. "component": "views/iframe/index.vue",
  3796. "sort": 50,
  3797. "isshow": true,
  3798. "url": "/qhj/qhjsigncontract/gjsinit",
  3799. "remark": "管理端",
  3800. "auth": []
  3801. },
  3802. {
  3803. "title": "已退单",
  3804. "rulekey": "client_pc_web_qhj_gjsqd_refunded_tab",
  3805. "code": "platinum_precious_metal_signing_refunded",
  3806. "path": "platinum_precious_metal_signing_refunded",
  3807. "component": "views/iframe/index.vue",
  3808. "sort": 60,
  3809. "isshow": true,
  3810. "url": "/qhj/qhjsigncontract/gjsinit",
  3811. "remark": "管理端",
  3812. "auth": [
  3813. {
  3814. "label": "详情",
  3815. "rulekey": "client_pc_web_qhj_gjsqd_refunded_tab_info",
  3816. "code": "info",
  3817. "isshow": true,
  3818. "remark": ""
  3819. }
  3820. ]
  3821. },
  3822. {
  3823. "title": "全部",
  3824. "rulekey": "client_pc_web_qhj_gjsqd_all_tab",
  3825. "code": "platinum_precious_metal_signing_all",
  3826. "path": "platinum_precious_metal_signing_all",
  3827. "component": "views/iframe/index.vue",
  3828. "sort": 70,
  3829. "isshow": true,
  3830. "url": "/qhj/qhjsigncontract/gjsinit",
  3831. "remark": "管理端",
  3832. "auth": [
  3833. {
  3834. "label": "导出",
  3835. "rulekey": "client_pc_web_qhj_gjsqd_all_tab_export",
  3836. "code": "exportdata",
  3837. "isshow": true,
  3838. "remark": ""
  3839. },
  3840. {
  3841. "label": "修改基本方式",
  3842. "rulekey": "client_pc_web_qhj_gjsqd_all_tab_modify_basic_way",
  3843. "code": "auth",
  3844. "isshow": true,
  3845. "remark": ""
  3846. },
  3847. {
  3848. "label": "修改付款方式",
  3849. "rulekey": "client_pc_web_qhj_gjsqd_all_tab_modify_payment_method",
  3850. "code": "user",
  3851. "isshow": true,
  3852. "remark": ""
  3853. },
  3854. {
  3855. "label": "详情",
  3856. "rulekey": "client_pc_web_qhj_gjsqd_all_tab_modify_payment_method_info",
  3857. "code": "info",
  3858. "isshow": true,
  3859. "remark": ""
  3860. }
  3861. ]
  3862. }
  3863. ]
  3864. },
  3865. {
  3866. "title": "财务付款",
  3867. "rulekey": "client_pc_web_qhj_cwfk",
  3868. "code": "platinum_financial_payment",
  3869. "path": "platinum_financial_payment",
  3870. "component": "Main",
  3871. "sort": 50,
  3872. "isshow": true,
  3873. "url": "",
  3874. "remark": "",
  3875. "children": [
  3876. {
  3877. "title": "待转账",
  3878. "rulekey": "client_pc_web_qhj_cwfk_waiting_transfer_tab",
  3879. "code": "platinum_financial_payment_waiting_payment_tab",
  3880. "path": "platinum_financial_payment_waiting_payment_tab",
  3881. "component": "views/iframe/index.vue",
  3882. "sort": 10,
  3883. "isshow": true,
  3884. "url": "/qhj/qhjscpaymentinfo/init",
  3885. "remark": "管理端",
  3886. "auth": [
  3887. {
  3888. "label": "付款",
  3889. "rulekey": "client_pc_web_qhj_cwfk_waiting_transfer_tab_pay",
  3890. "code": "active",
  3891. "isshow": true,
  3892. "remark": ""
  3893. },
  3894. {
  3895. "label": "详情",
  3896. "rulekey": "client_pc_web_qhj_cwfk_waiting_transfer_tab_pay_info",
  3897. "code": "info",
  3898. "isshow": true,
  3899. "remark": ""
  3900. }
  3901. ]
  3902. },
  3903. {
  3904. "title": "内部待转账",
  3905. "rulekey": "client_pc_web_qhj_cwfk_in_waiting_transfer_tab",
  3906. "code": "platinum_financial_payment_in_waiting_payment_tab",
  3907. "path": "platinum_financial_payment_in_waiting_payment_tab",
  3908. "component": "views/iframe/index.vue",
  3909. "sort": 20,
  3910. "isshow": true,
  3911. "url": "/qhj/qhjscpaymentinfo/init",
  3912. "remark": "管理端",
  3913. "auth": [
  3914. {
  3915. "label": "内部转账",
  3916. "rulekey": "client_pc_web_qhj_cwfk_in_waiting_transfer_tab_in_pay",
  3917. "code": "reset",
  3918. "isshow": true,
  3919. "remark": ""
  3920. },
  3921. {
  3922. "label": "详情",
  3923. "rulekey": "client_pc_web_qhj_cwfk_in_waiting_transfer_tab_in_pay_info",
  3924. "code": "info",
  3925. "isshow": true,
  3926. "remark": ""
  3927. }
  3928. ]
  3929. },
  3930. {
  3931. "title": "待付现金",
  3932. "rulekey": "client_pc_web_qhj_cwfk_cash_to_paid_tab",
  3933. "code": "platinum_financial_payment_waiting_payment_cash_tab",
  3934. "path": "platinum_financial_payment_waiting_payment_cash_tab",
  3935. "component": "views/iframe/index.vue",
  3936. "sort": 30,
  3937. "isshow": true,
  3938. "url": "/qhj/qhjscpaymentinfo/init",
  3939. "remark": "管理端",
  3940. "auth": [
  3941. {
  3942. "label": "付款",
  3943. "rulekey": "client_pc_web_qhj_cwfk_cash_to_paid_tab_pay",
  3944. "code": "active",
  3945. "isshow": true,
  3946. "remark": ""
  3947. },
  3948. {
  3949. "label": "详情",
  3950. "rulekey": "client_pc_web_qhj_cwfk_cash_to_paid_tab_pay_info",
  3951. "code": "info",
  3952. "isshow": true,
  3953. "remark": ""
  3954. }
  3955. ]
  3956. },
  3957. {
  3958. "title": "已付款",
  3959. "rulekey": "client_pc_web_qhj_cwfk_paid_tab",
  3960. "code": "platinum_financial_payment_payment_tab",
  3961. "path": "platinum_financial_payment_payment_tab",
  3962. "component": "views/iframe/index.vue",
  3963. "sort": 40,
  3964. "isshow": true,
  3965. "url": "/qhj/qhjscpaymentinfo/init",
  3966. "remark": "管理端",
  3967. "auth": [
  3968. {
  3969. "label": "详情",
  3970. "rulekey": "client_pc_web_qhj_cwfk_paid_tab_info",
  3971. "code": "info",
  3972. "isshow": true,
  3973. "remark": ""
  3974. }
  3975. ]
  3976. },
  3977. {
  3978. "title": "收款全部",
  3979. "rulekey": "client_pc_web_qhj_cwfk_all_tab_dadalfjlfkj",
  3980. "code": "platinum_financial_collection_all_tab",
  3981. "path": "platinum_financial_collection_all_tab",
  3982. "component": "views/iframe/index.vue",
  3983. "sort": 70,
  3984. "isshow": true,
  3985. "url": "/qhj/qhjscpaymentinfo/init",
  3986. "remark": "管理端",
  3987. "auth": [
  3988. {
  3989. "label": "导出",
  3990. "rulekey": "client_pc_web_qhj_cwfk_all_tab_export_collection",
  3991. "code": "exportdata",
  3992. "isshow": true,
  3993. "remark": ""
  3994. },
  3995. {
  3996. "label": "详情",
  3997. "rulekey": "client_pc_web_qhj_cwfk_all_tab_export_info_collection",
  3998. "code": "info",
  3999. "isshow": true,
  4000. "remark": ""
  4001. }
  4002. ]
  4003. },
  4004. {
  4005. "title": "付款全部",
  4006. "rulekey": "client_pc_web_qhj_cwfk_all_tab",
  4007. "code": "platinum_financial_payment_all_tab",
  4008. "path": "platinum_financial_payment_all_tab",
  4009. "component": "views/iframe/index.vue",
  4010. "sort": 70,
  4011. "isshow": true,
  4012. "url": "/qhj/qhjscpaymentinfo/init",
  4013. "remark": "管理端",
  4014. "auth": [
  4015. {
  4016. "label": "导出",
  4017. "rulekey": "client_pc_web_qhj_cwfk_all_tab_export",
  4018. "code": "exportdata",
  4019. "isshow": true,
  4020. "remark": ""
  4021. },
  4022. {
  4023. "label": "详情",
  4024. "rulekey": "client_pc_web_qhj_cwfk_all_tab_export_info",
  4025. "code": "info",
  4026. "isshow": true,
  4027. "remark": ""
  4028. }
  4029. ]
  4030. }
  4031. ]
  4032. },
  4033. {
  4034. "title": "客户经理",
  4035. "rulekey": "client_pc_web_qhj_khjl",
  4036. "code": "platinum_account_manager",
  4037. "path": "platinum_account_manager",
  4038. "component": "Main",
  4039. "sort": 60,
  4040. "isshow": true,
  4041. "url": "",
  4042. "remark": "",
  4043. "children": [
  4044. {
  4045. "title": "客户经理",
  4046. "rulekey": "client_pc_web_qhj_khjl_tab",
  4047. "code": "platinum_account_manager_tab",
  4048. "path": "platinum_account_manager_tab",
  4049. "component": "views/iframe/index.vue",
  4050. "sort": 10,
  4051. "isshow": true,
  4052. "url": "/customer/mange/init",
  4053. "remark": "管理端",
  4054. "auth": [
  4055. {
  4056. "label": "新增",
  4057. "rulekey": "client_pc_web_qhj_khjl_tab_add",
  4058. "code": "add",
  4059. "isshow": true,
  4060. "remark": ""
  4061. },
  4062. {
  4063. "label": "修改",
  4064. "rulekey": "client_pc_web_qhj_khjl_tab_modify",
  4065. "code": "edit",
  4066. "isshow": true,
  4067. "remark": ""
  4068. },
  4069. {
  4070. "label": "停用启用",
  4071. "rulekey": "client_pc_web_qhj_khjl_tab_disable_enable",
  4072. "code": "del",
  4073. "isshow": true,
  4074. "remark": ""
  4075. },
  4076. {
  4077. "label": "详情",
  4078. "rulekey": "client_pc_web_qhj_khjl_tab_disable_enable_info",
  4079. "code": "info",
  4080. "isshow": true,
  4081. "remark": ""
  4082. }
  4083. ]
  4084. }
  4085. ]
  4086. },
  4087. {
  4088. "title": "贵金属销售报表",
  4089. "rulekey": "client_pc_web_qhj_gjsxsbb",
  4090. "code": "platinum_precious_metal_sales_report",
  4091. "path": "platinum_precious_metal_sales_report",
  4092. "component": "Main",
  4093. "sort": 70,
  4094. "isshow": true,
  4095. "url": "",
  4096. "remark": "",
  4097. "children": [
  4098. {
  4099. "title": "公司销售(日报)",
  4100. "rulekey": "client_pc_web_qhj_gjsxsbb_company_sales_tab",
  4101. "code": "platinum_precious_metal_sales_report_company_tab",
  4102. "path": "platinum_precious_metal_sales_report_company_tab",
  4103. "component": "views/iframe/index.vue",
  4104. "sort": 10,
  4105. "isshow": true,
  4106. "url": "/qhj/prosaleday/initview",
  4107. "remark": "管理端",
  4108. "auth": []
  4109. },
  4110. {
  4111. "title": "部门销售",
  4112. "rulekey": "client_pc_web_qhj_gjsxsbb_departmental_sale_tab",
  4113. "code": "platinum_precious_metal_sales_report_departmental_tab",
  4114. "path": "platinum_precious_metal_sales_report_departmental_tab",
  4115. "component": "views/iframe/index.vue",
  4116. "sort": 20,
  4117. "isshow": true,
  4118. "url": "/qhj/prosaleday/initview",
  4119. "remark": "管理端",
  4120. "auth": []
  4121. }
  4122. ]
  4123. },
  4124. {
  4125. "title": "资管销售报表",
  4126. "rulekey": "client_pc_web_qhj_zgxsbb",
  4127. "code": "platinum_asset_management_sale_report",
  4128. "path": "platinum_asset_management_sale_report",
  4129. "component": "Main",
  4130. "sort": 80,
  4131. "isshow": true,
  4132. "url": "",
  4133. "remark": "",
  4134. "children": [
  4135. {
  4136. "title": "公司销售(日报)",
  4137. "rulekey": "client_pc_web_qhj_zgxsbb_company_sale_day_tab",
  4138. "code": "platinum_asset_management_sale_report_company_day_tab",
  4139. "path": "platinum_asset_management_sale_report_company_day_tab",
  4140. "component": "views/iframe/index.vue",
  4141. "sort": 10,
  4142. "isshow": true,
  4143. "url": "/qhj/prosaleday/zginitview",
  4144. "remark": "管理端",
  4145. "auth": []
  4146. },
  4147. {
  4148. "title": "公司销售(周报)",
  4149. "rulekey": "client_pc_web_qhj_zgxsbb_company_sale_week_tab",
  4150. "code": "platinum_asset_management_sale_report_company_week_tab",
  4151. "path": "platinum_asset_management_sale_report_company_week_tab",
  4152. "component": "views/iframe/index.vue",
  4153. "sort": 20,
  4154. "isshow": true,
  4155. "url": "/qhj/prosaleday/zginitview",
  4156. "remark": "管理端",
  4157. "auth": []
  4158. },
  4159. {
  4160. "title": "公司销售(月报)",
  4161. "rulekey": "client_pc_web_qhj_zgxsbb_company_sale_month_tab",
  4162. "code": "platinum_asset_management_sale_report_company_month_tab",
  4163. "path": "platinum_asset_management_sale_report_company_month_tab",
  4164. "component": "views/iframe/index.vue",
  4165. "sort": 30,
  4166. "isshow": true,
  4167. "url": "/qhj/prosaleday/zginitview",
  4168. "remark": "管理端",
  4169. "auth": []
  4170. },
  4171. {
  4172. "title": "部门销售(周报)",
  4173. "rulekey": "client_pc_web_qhj_zgxsbb_departmental_sale_week_tab",
  4174. "code": "platinum_precious_metal_sales_report_departmental_week_tab",
  4175. "path": "platinum_precious_metal_sales_report_departmental_week_tab",
  4176. "component": "views/iframe/index.vue",
  4177. "sort": 40,
  4178. "isshow": true,
  4179. "url": "/qhj/prosaleday/zginitview",
  4180. "remark": "管理端",
  4181. "auth": []
  4182. },
  4183. {
  4184. "title": "部门销售(月报)",
  4185. "rulekey": "client_pc_web_qhj_zgxsbb_departmental_sale_month_tab",
  4186. "code": "platinum_precious_metal_sales_report_departmental_month_tab",
  4187. "path": "platinum_precious_metal_sales_report_departmental_month_tab",
  4188. "component": "views/iframe/index.vue",
  4189. "sort": 50,
  4190. "isshow": true,
  4191. "url": "/qhj/prosaleday/zginitview",
  4192. "remark": "管理端",
  4193. "auth": []
  4194. },
  4195. {
  4196. "title": "产品销售(月报)",
  4197. "rulekey": "client_pc_web_qhj_zgxsbb_product_sale_month_tab",
  4198. "code": "platinum_precious_metal_sales_report_product_month_tab",
  4199. "path": "platinum_precious_metal_sales_report_product_month_tab",
  4200. "component": "views/iframe/index.vue",
  4201. "sort": 60,
  4202. "isshow": true,
  4203. "url": "/qhj/prosaleday/zginitview",
  4204. "remark": "管理端",
  4205. "auth": []
  4206. }
  4207. ]
  4208. },
  4209. {
  4210. "title": "客服报表",
  4211. "rulekey": "client_pc_web_qhj_kfbb",
  4212. "code": "platinum_customer_service_report",
  4213. "path": "platinum_customer_service_report",
  4214. "component": "Main",
  4215. "sort": 90,
  4216. "isshow": true,
  4217. "url": "",
  4218. "remark": "",
  4219. "children": [
  4220. {
  4221. "title": "达成率报表",
  4222. "rulekey": "client_pc_web_qhj_kfbb_reach_rate_report_tab",
  4223. "code": "platinum_customer_service_report_reach_rate_report_tab",
  4224. "path": "platinum_customer_service_report_reach_rate_report_tab",
  4225. "component": "views/iframe/index.vue",
  4226. "sort": 10,
  4227. "isshow": true,
  4228. "url": "/qhj/customerservice/initview",
  4229. "remark": "管理端",
  4230. "auth": []
  4231. },
  4232. {
  4233. "title": "团队年化业绩排行报表",
  4234. "rulekey": "client_pc_web_qhj_kfbb_team_annualized_performance_ranking_report_tab",
  4235. "code": "platinum_customer_service_report_team_annualized_performance_ranking_report_tab",
  4236. "path": "platinum_customer_service_report_team_annualized_performance_ranking_report_tab",
  4237. "component": "views/iframe/index.vue",
  4238. "sort": 20,
  4239. "isshow": true,
  4240. "url": "/qhj/customerservice/initview",
  4241. "remark": "管理端",
  4242. "auth": []
  4243. },
  4244. {
  4245. "title": "个人年化业绩排行报表",
  4246. "rulekey": "client_pc_web_qhj_kfbb_personal_annualized_performance_ranking_report_tab",
  4247. "code": "platinum_customer_service_report_personal_annualized_performance_ranking_report_tab",
  4248. "path": "platinum_customer_service_report_personal_annualized_performance_ranking_report_tab",
  4249. "component": "views/iframe/index.vue",
  4250. "sort": 30,
  4251. "isshow": true,
  4252. "url": "/qhj/customerservice/initview",
  4253. "remark": "管理端",
  4254. "auth": []
  4255. },
  4256. {
  4257. "title": "团队经理年化业绩排行报表",
  4258. "rulekey": "client_pc_web_qhj_kfbb_team_manager_annualized_performance_ranking_report_tab",
  4259. "code": "platinum_customer_service_report_team_manager_annual_performance_ranking_report_tab",
  4260. "path": "platinum_customer_service_report_team_manager_annual_performance_ranking_report_tab",
  4261. "component": "views/iframe/index.vue",
  4262. "sort": 40,
  4263. "isshow": true,
  4264. "url": "/qhj/customerservice/initview",
  4265. "remark": "管理端",
  4266. "auth": []
  4267. }
  4268. ]
  4269. },
  4270. {
  4271. "title": "业务员业绩报表",
  4272. "rulekey": "client_pc_web_qhj_ywyyjbb",
  4273. "code": "platinum_salesman_performance_report",
  4274. "path": "platinum_salesman_performance_report",
  4275. "component": "Main",
  4276. "sort": 100,
  4277. "isshow": true,
  4278. "url": "",
  4279. "remark": "",
  4280. "children": [
  4281. {
  4282. "title": "业务员业绩报表",
  4283. "rulekey": "client_pc_web_qhj_ywyyjbb_tab",
  4284. "code": "platinum_salesman_performance_report_tab",
  4285. "path": "platinum_salesman_performance_report_tab",
  4286. "component": "views/iframe/index.vue",
  4287. "sort": 10,
  4288. "isshow": true,
  4289. "url": "/qhj/reckonbrokerprosaleday/init",
  4290. "remark": "管理端",
  4291. "auth": []
  4292. }
  4293. ]
  4294. },
  4295. {
  4296. "title": "产品销售报表",
  4297. "rulekey": "client_pc_web_qhj_platinum_product_sales_report",
  4298. "code": "platinum_product_sales_report",
  4299. "path": "platinum_product_sales_report",
  4300. "component": "Main",
  4301. "sort": 100,
  4302. "isshow": true,
  4303. "url": "",
  4304. "remark": "",
  4305. "children": [
  4306. {
  4307. "title": "产品新增业绩(周报)",
  4308. "rulekey": "client_pc_web_qhj_platinum_product_sales_report_tab",
  4309. "code": "platinum_product_sales_report_tab",
  4310. "path": "platinum_product_sales_report_tab",
  4311. "component": "views/iframe/index.vue",
  4312. "sort": 10,
  4313. "isshow": true,
  4314. "url": "/qhj/prosaleday/productinitview",
  4315. "remark": "管理端",
  4316. "auth": []
  4317. }
  4318. ]
  4319. },
  4320. {
  4321. "title": "客户合同查询",
  4322. "rulekey": "client_pc_web_qhj_platinum_customer_contract_inquiries",
  4323. "code": "platinum_customer_contract_inquiries",
  4324. "path": "platinum_customer_contract_inquiries",
  4325. "component": "Main",
  4326. "sort": 100,
  4327. "isshow": true,
  4328. "url": "",
  4329. "remark": "",
  4330. "children": [
  4331. {
  4332. "title": "客户合同查询",
  4333. "rulekey": "client_pc_web_qhj_platinum_customer_contract_inquiries_tab",
  4334. "code": "platinum_customer_contract_inquiries_tab",
  4335. "path": "platinum_customer_contract_inquiries_tab",
  4336. "component": "views/iframe/index.vue",
  4337. "sort": 10,
  4338. "isshow": true,
  4339. "url": "/qhj/qhjsigncontract/contractInit",
  4340. "remark": "管理端",
  4341. "auth": [
  4342. {
  4343. "label": "导出",
  4344. "rulekey": "client_pc_web_platinum_customer_contract_inquiries_tab_export",
  4345. "code": "exportdata",
  4346. "isshow": true,
  4347. "remark": ""
  4348. },
  4349. {
  4350. "label": "详情",
  4351. "rulekey": "client_pc_web_platinum_customer_contract_inquiries_tab_info",
  4352. "code": "info",
  4353. "isshow": true,
  4354. "remark": ""
  4355. }
  4356. ]
  4357. }
  4358. ]
  4359. }
  4360. ]
  4361. }
  4362. ]