fb3b6ffae502409e09537c42ec4c02aa750c8a19.svn-base 147 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908
  1. import Vue from 'vue'
  2. import Router from 'vue-router'
  3. import mainPage from '../components/layout/mainPageContainer.vue'
  4. import menuRouterView from '../components/layout/menuRouterView.vue'
  5. import login from '../views/login/login.vue'
  6. // import index from '../views/fisrtPage/index.vue'
  7. // import login from '../views/Login/login.vue'
  8. import logindc from '../views/Login/login_dc.vue'
  9. import loginjc from '../views/Login/login_jc.vue'
  10. import commonHome from '../views/home/homeMainView2.vue'
  11. import commonJcHome from '../views/home/jchomeMainView.vue'
  12. import commonHomeNew from '../views/home/homeMainViewNew.vue'
  13. import homeMainViewFujian from '../views/home/homeMainViewFjNew.vue'
  14. import homeMainViewShandong from '../views/home/homeMainViewSdNew.vue'
  15. import jchomeMainViewFjNew from '../views/home/jchomeMainViewFjNew.vue'
  16. import commonJcHomeSc from '../views/home/jchomeMainViewSc.vue'
  17. import commonHomeQh from '../views/home/homeMainViewQh.vue'
  18. import commonJcHomeQh from '../views/home/jcHomeMainViewQh.vue'
  19. Vue.use(Router)
  20. function initHome(type) {
  21. var url = window.location.href;
  22. if(url.indexOf('139.170.150.123') > -1){
  23. return type=="dc"?commonHomeQh:commonJcHomeQh;
  24. }else{
  25. if((localStorage.getItem('currentRlcode') && localStorage.getItem('currentRlcode').substring(0,2)=="51") || (window.location.href.indexOf("101.207.130.194")>-1) || (window.location.href.indexOf("221.237.107.122")>-1)){
  26. // return type=="dc"?commonHomeNew:commonJcHomeSc;
  27. return type=="dc"?homeMainViewFujian:jchomeMainViewFjNew;
  28. }else if((localStorage.getItem('currentRlcode') && localStorage.getItem('currentRlcode').substring(0,2)=="35") || (window.location.href.indexOf("27.156.118.74")>-1)){
  29. return type=="dc"?homeMainViewFujian:jchomeMainViewFjNew;
  30. }else if((localStorage.getItem('currentRlcode') && localStorage.getItem('currentRlcode').substring(0,2)=="37") || (window.location.href.indexOf("60.208.113.79")>-1)){
  31. return type=="dc"?homeMainViewShandong:jchomeMainViewFjNew;
  32. }else{
  33. return type=="dc"?homeMainViewFujian:jchomeMainViewFjNew;
  34. }
  35. }
  36. }
  37. function initHomeNew(type) {
  38. var url = window.location.href;
  39. if(url.indexOf('139.170.150.123') > -1){
  40. return type=="dc"?commonHomeQh:commonJcHomeQh;
  41. }else if(url.indexOf('27.156.118.74') > -1){
  42. return type=="dc"?homeMainViewFujian:jchomeMainViewFjNew;
  43. }else if(url.indexOf('101.207.130.194') > -1 || url.indexOf("221.237.107.122")>-1){
  44. //return type=="dc"?commonHomeNew:commonJcHomeSc;
  45. return type=="dc"?homeMainViewFujian:jchomeMainViewFjNew;
  46. }else if(url.indexOf('60.208.113.79') > -1){
  47. return type=="dc"?homeMainViewShandong:jchomeMainViewFjNew;
  48. }else{
  49. return type=="dc"?homeMainViewFujian:jchomeMainViewFjNew;
  50. }
  51. }
  52. export const constantRouterMap = [{
  53. path: '/',
  54. name: '督导业务系统',
  55. // redirect: 'firstpage',
  56. component: mainPage,
  57. haveView: false,
  58. haveSubMenu: true,
  59. children: [
  60. {
  61. // 人饮查询
  62. path: '/server',
  63. name: '服务监控',
  64. component: () =>
  65. import ('../views/server/index.vue'),
  66. haveView: true,
  67. meta: {
  68. title: 'dashboard',
  69. icon: 'dashboard',
  70. noCache: true
  71. },
  72. haveSubMenu: true,
  73. },
  74. {
  75. // 人饮查询
  76. path: '/cache',
  77. name: '缓存监控',
  78. component: () =>
  79. import ('../views/cache/index.vue'),
  80. haveView: true,
  81. meta: {
  82. title: 'dashboard',
  83. icon: 'dashboard',
  84. noCache: true
  85. },
  86. haveSubMenu: true,
  87. },
  88. {
  89. path: '/dcrw',
  90. name: '督查任务',
  91. component: () =>
  92. import ('../views/duChaJiHua/supervisionTask.vue'),
  93. haveView: true,
  94. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  95. haveSubMenu: true,
  96. },
  97. {
  98. path: '/rwtz',
  99. name: '任务通知',
  100. component: () =>
  101. import ('../views/duChaJiHua/taskInform.vue'),
  102. haveView: true,
  103. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  104. haveSubMenu: true,
  105. },
  106. {
  107. path: '/xjdcrw',
  108. name: '新建督查任务',
  109. component: () =>
  110. import ('../views/duChaJiHua/createDcMission.vue'),
  111. haveView: true,
  112. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  113. haveSubMenu: true,
  114. },
  115. {
  116. path: '/dczgl',
  117. name: '督查组管理',
  118. component: () =>
  119. import ('../views/duchaGuanli/duChaZuGuanLi.vue'),
  120. haveView: true,
  121. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  122. haveSubMenu: true,
  123. },
  124. {
  125. path: '/dcgl',
  126. name: '督查管理',
  127. component: () =>
  128. import ('../views/duChaJiHua/planShow.vue'),
  129. haveView: true,
  130. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  131. haveSubMenu: true,
  132. },
  133. {
  134. path: '/dcjhgl',
  135. name: '小水库督查计划管理',
  136. component: () =>
  137. import ('../views/duChaJiHua/planManage.vue'),
  138. haveView: true,
  139. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  140. haveSubMenu: true,
  141. },
  142. {
  143. path: '/dcjhgl_jc',
  144. name: '稽察',
  145. component: () =>
  146. import ('../views/duChaJiHua/planManage_jc.vue'),
  147. haveView: true,
  148. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  149. haveSubMenu: true,
  150. },
  151. // {
  152. // path: '/dcjh',
  153. // name: '督查计划',
  154. // component: () =>
  155. // import ('../views/duChaJiHua/planManageOne.vue'),
  156. // haveView: true,
  157. // meta: { title: 'dashboard', icon: 'dashboard', noCache: true },
  158. // haveSubMenu: true,
  159. // },
  160. {
  161. path: '/planProvince',
  162. name: '督查计划(省级)',
  163. component: () =>
  164. import ('../views/duChaJiHua/planManageProvinceNew.vue'),
  165. haveView: true,
  166. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  167. haveSubMenu: true,
  168. },
  169. {
  170. path: '/report_dcjh',
  171. name: '督查计划(查询)',
  172. component: () =>
  173. import ('../views/export/dcjh/report_dcjh.vue'),
  174. haveView: true,
  175. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  176. haveSubMenu: true,
  177. },
  178. {
  179. path: '/report_dcjh_org',
  180. name: '督查计划(无机构)',
  181. component: () =>
  182. import ('../views/export/dcjh/report_dcjh_org.vue'),
  183. haveView: true,
  184. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  185. haveSubMenu: true,
  186. },
  187. {
  188. path: '/dskdcjhgl',
  189. name: '大中型水库督查计划管理',
  190. component: () =>
  191. import ('../views/duChaJiHua/planManage_skd.vue'),
  192. haveView: true,
  193. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  194. haveSubMenu: true,
  195. },
  196. {
  197. path: '/nydcjhgl',
  198. name: '人饮督查计划管理',
  199. component: () =>
  200. import ('../views/duChaJiHua/planManage_ny.vue'),
  201. haveView: true,
  202. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  203. haveSubMenu: true,
  204. },
  205. {
  206. path: '/reportIndex_xry',
  207. name: '2020人饮统计报表',
  208. component: () =>
  209. import ('../views/export/reportIndex_xry.vue'),
  210. haveView: true,
  211. meta: {
  212. title: 'dashboard',
  213. icon: 'dashboard',
  214. noCache: true
  215. },
  216. haveSubMenu: true,
  217. },
  218. {
  219. path: '/reportIndex_gdncys',
  220. name: '农村饮水统计报表(广东)',
  221. component: () =>
  222. import ('../views/export/reportIndex_gdnyaq.vue'),
  223. haveView: true,
  224. meta: {
  225. title: 'dashboard',
  226. icon: 'dashboard',
  227. noCache: true
  228. },
  229. haveSubMenu: true,
  230. },
  231. {
  232. path: '/reportIndex_cdep',
  233. name: '乙级检测单位报表(新疆兵团)',
  234. component: () =>
  235. import ('../views/export/reportIndex_xjbt_yjjcdw.vue'),
  236. haveView: true,
  237. meta: {
  238. title: 'dashboard',
  239. icon: 'dashboard',
  240. noCache: true
  241. },
  242. haveSubMenu: true,
  243. },
  244. {
  245. path: '/reportIndex_bid',
  246. name: '招投标报表(新疆兵团)',
  247. component: () =>
  248. import ('../views/export/reportIndex_xjbt_ztb.vue'),
  249. haveView: true,
  250. meta: {
  251. title: 'dashboard',
  252. icon: 'dashboard',
  253. noCache: true
  254. },
  255. haveSubMenu: true,
  256. },
  257. // {
  258. // path: '/reportIndex_sk_r_yn',
  259. // name: '小水库复查统计报表(云南)',
  260. // component: () =>
  261. // import ('../views/export/reportIndex_sk_r_yn.vue'),
  262. // haveView: true,
  263. // meta: {
  264. // title: 'dashboard',
  265. // icon: 'dashboard',
  266. // noCache: true
  267. // },
  268. // haveSubMenu: true,
  269. // },
  270. // {
  271. // path: '/reportIndex_sz_r_gd',
  272. // name: '水闸复查统计报表(广东)',
  273. // component: () =>
  274. // import ('../views/export/reportIndex_sz_r_gd.vue'),
  275. // haveView: true,
  276. // meta: {
  277. // title: 'dashboard',
  278. // icon: 'dashboard',
  279. // noCache: true
  280. // },
  281. // haveSubMenu: true,
  282. // },
  283. {
  284. path: '/reportIndex_bund',
  285. name: '水利资金报表(新疆兵团)',
  286. component: () =>
  287. import ('../views/export/reportIndex_xjbt_slzj.vue'),
  288. haveView: true,
  289. meta: {
  290. title: 'dashboard',
  291. icon: 'dashboard',
  292. noCache: true
  293. },
  294. haveSubMenu: true,
  295. },
  296. {
  297. path: '/reportIndex_xjry',
  298. name: '新疆农饮统计报表(新疆兵团)',
  299. component: () =>
  300. import ('../views/export/reportIndex_xjbt_ny.vue'),
  301. haveView: true,
  302. meta: {
  303. title: 'dashboard',
  304. icon: 'dashboard',
  305. noCache: true
  306. },
  307. haveSubMenu: true,
  308. },
  309. {
  310. path: '/reportIndex_rlrw',
  311. name: '退地减水报表(新疆兵团)',
  312. component: () =>
  313. import ('../views/export/reportIndex_xjbt_tdjs.vue'),
  314. haveView: true,
  315. meta: {
  316. title: 'dashboard',
  317. icon: 'dashboard',
  318. noCache: true
  319. },
  320. haveSubMenu: true,
  321. },
  322. {
  323. path: '/reportIndex_fjny2021',
  324. name: '农饮(福建)',
  325. component: () =>
  326. import ('../views/export/reportIndex_ncjmysaq.vue'),
  327. haveView: true,
  328. meta: {
  329. title: 'dashboard',
  330. icon: 'dashboard',
  331. noCache: true
  332. },
  333. haveSubMenu: true,
  334. },
  335. {
  336. path: '/reportIndex_bzhgd',
  337. name: '标准化示范工地评选(福建)',
  338. component: () =>
  339. import ('../views/export/reportIndex_bzhgd.vue'),
  340. haveView: true,
  341. meta: {
  342. title: 'dashboard',
  343. icon: 'dashboard',
  344. noCache: true
  345. },
  346. haveSubMenu: true,
  347. },
  348. {
  349. path: '/reportIndex_dzxsk_fj',
  350. name: '大中型水库运行安全检查(福建)',
  351. component: () =>
  352. import ('../views/export/reportIndex_dzxsk_fj.vue'),
  353. haveView: true,
  354. meta: {
  355. title: 'dashboard',
  356. icon: 'dashboard',
  357. noCache: true
  358. },
  359. haveSubMenu: true,
  360. },
  361. {
  362. path: '/reportIndex_xxsk_fj',
  363. name: '小型水库统计报表(福建)',
  364. component: () =>
  365. import ('../views/export/reportIndex_xxsk_fj.vue'),
  366. haveView: true,
  367. meta: {
  368. title: 'dashboard',
  369. icon: 'dashboard',
  370. noCache: true
  371. },
  372. haveSubMenu: true,
  373. },
  374. {
  375. path: '/reportIndex_common_fj',
  376. name: '通用督查统计报表(福建)',
  377. component: () =>
  378. import ('../views/export/reportIndex_df_fj.vue'),
  379. haveView: true,
  380. meta: {
  381. title: 'dashboard',
  382. icon: 'dashboard',
  383. noCache: true
  384. },
  385. haveSubMenu: true,
  386. },
  387. {
  388. path: '/reportIndex_sdz_fj',
  389. name: '小水电站风险隐患排查统计报表(福建)',
  390. component: () =>
  391. import ('../views/export/reportIndex_sdz_fj.vue'),
  392. haveView: true,
  393. meta: {
  394. title: 'dashboard',
  395. icon: 'dashboard',
  396. noCache: true
  397. },
  398. haveSubMenu: true,
  399. },
  400. {
  401. path: '/reportIndex_jhyshqsk',
  402. name: '计划用水户及取水口统计报表',
  403. component: () =>
  404. import ('../views/export/reportIndex_jhyshqsk.vue'),
  405. haveView: true,
  406. meta: {
  407. title: 'dashboard',
  408. icon: 'dashboard',
  409. noCache: true
  410. },
  411. haveSubMenu: true,
  412. },
  413. {
  414. path: '/reportIndex_zlglpj',
  415. name: '建设质量工作评价(福建)',
  416. component: () =>
  417. import ('../views/export/reportIndex_zlglpj.vue'),
  418. haveView: true,
  419. meta: {
  420. title: 'dashboard',
  421. icon: 'dashboard',
  422. noCache: true
  423. },
  424. haveSubMenu: true,
  425. },
  426. {
  427. path: '/shdcjhgl',
  428. name: '水毁督查计划管理',
  429. component: () =>
  430. import ('../views/duChaJiHua/planManage_sh.vue'),
  431. haveView: true,
  432. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  433. haveSubMenu: true,
  434. },
  435. {
  436. path: '/dxsdcjhgl',
  437. name: '地下水督查计划管理',
  438. component: () =>
  439. import ('../views/duChaJiHua/planManage_dxs.vue'),
  440. haveView: true,
  441. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  442. haveSubMenu: true,
  443. },
  444. {
  445. path: '/szdcjhgl',
  446. name: '水闸督查计划管理',
  447. component: () =>
  448. import ('../views/duChaJiHua/planManage_sz.vue'),
  449. haveView: true,
  450. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  451. haveSubMenu: true,
  452. },
  453. {
  454. path: '/jshdcjhgl',
  455. name: '水利工程建设督查计划管理',
  456. component: () =>
  457. import ('../views/duChaJiHua/planManage_jsh.vue'),
  458. haveView: true,
  459. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  460. haveSubMenu: true,
  461. },
  462. {
  463. path: '/yxdcjhgl',
  464. name: '水利工程运行督查计划管理',
  465. component: () =>
  466. import ('../views/duChaJiHua/planManage_yx.vue'),
  467. haveView: true,
  468. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  469. haveSubMenu: true,
  470. },
  471. // {
  472. // path: '/dcjh',
  473. // name: '督查计划',
  474. // component: () =>
  475. // import ('../views/duChaJiHua/planManageOne.vue'),
  476. // haveView: true,
  477. // meta: { title: 'dashboard', icon: 'dashboard', noCache: true },
  478. // haveSubMenu: true,
  479. // },
  480. {
  481. path: '/dcjh',
  482. name: '督查计划',
  483. component: () =>
  484. import ('../views/duChaJiHua/planManageOneNew.vue'),
  485. haveView: true,
  486. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  487. haveSubMenu: true,
  488. },
  489. {
  490. path: '/planCheck',
  491. name: '浙江检查计划',
  492. component: () =>
  493. import ('../views/duChaJiHua/ZheJiang/checkPlanNew.vue'),
  494. haveView: true,
  495. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  496. haveSubMenu: true,
  497. },
  498. {
  499. path: '/planCheckYear',
  500. name: '年度检查计划',
  501. component: () =>
  502. import ('../views/duChaJiHua/ZheJiang/checkPlanSd.vue'),
  503. haveView: true,
  504. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  505. haveSubMenu: true,
  506. },
  507. {
  508. path: '/planCheckSd',
  509. name: '年度检查计划',
  510. component: () =>
  511. import ('../views/duChaJiHua/ZheJiang/checkPlanYear.vue'),
  512. haveView: true,
  513. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  514. haveSubMenu: true,
  515. },
  516. {
  517. path: '/yearSdPlanD',
  518. name: '详细检查计划(山东)',
  519. component: () =>
  520. import ('../views/duChaJiHua/ZheJiang/monthPlanSd.vue'),
  521. haveView: true,
  522. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  523. haveSubMenu: true,
  524. },
  525. {
  526. path: '/detailYearSdPlanD',
  527. name: '实施检查计划(山东)',
  528. component: () =>
  529. import ('../views/duChaJiHua/ZheJiang/detailMonthPlanSd.vue'),
  530. haveView: true,
  531. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  532. haveSubMenu: true,
  533. },
  534. {
  535. path: '/chkMonth',
  536. name: '监督进度月报(山东)',
  537. component: () =>
  538. import ('../views/duChaJiHua/ZheJiang/chkMonth.vue'),
  539. haveView: true,
  540. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  541. haveSubMenu: true,
  542. },
  543. {
  544. path: '/monthHz',
  545. name: '计划月汇总',
  546. component: () =>
  547. import ('../views/duChaJiHua/ZheJiang/monthHz.vue'),
  548. haveView: true,
  549. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  550. haveSubMenu: true,
  551. },
  552. {
  553. path: '/month_report',
  554. name: '统计月报',
  555. component: () =>
  556. import ('../views/duChaJiHua/ZheJiang/monthReport.vue'),
  557. haveView: true,
  558. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  559. haveSubMenu: true,
  560. },
  561. {
  562. path: '/month_report_gd',
  563. name: '统计月报(广东)',
  564. component: () =>
  565. import ('../views/duChaJiHua/ZheJiang/monthReportGd.vue'),
  566. haveView: true,
  567. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  568. haveSubMenu: true,
  569. },
  570. {
  571. path: '/monthReform',
  572. name: '月计划统筹(广东)',
  573. component: () =>
  574. import ('../views/duChaJiHua/ZheJiang/monthReform.vue'),
  575. haveView: true,
  576. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  577. haveSubMenu: true,
  578. },
  579. {
  580. path: '/monthPlanGd',
  581. name: '月度检查计划(广东)',
  582. component: () =>
  583. import ('../views/duChaJiHua/ZheJiang/monthPlanGd.vue'),
  584. haveView: true,
  585. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  586. haveSubMenu: true,
  587. },
  588. {
  589. path: '/monthPlanSd',
  590. name: '月度计划分配(山东)',
  591. component: () =>
  592. import ('../views/duChaJiHua/planManageOneNew.vue'),
  593. haveView: true,
  594. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  595. haveSubMenu: true,
  596. },
  597. {
  598. path: '/monthSms',
  599. name: '月报短信提醒',
  600. component: () =>
  601. import ('../views/duChaJiHua/ZheJiang/monthSms.vue'),
  602. haveView: true,
  603. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  604. haveSubMenu: true,
  605. },
  606. {
  607. path: '/workProgramme',
  608. name: '浙江工作方案',
  609. component: () =>
  610. import ('../views/duChaJiHua/ZheJiang/workProgramme.vue'),
  611. haveView: true,
  612. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  613. haveSubMenu: true,
  614. },
  615. {
  616. path: '/xsk',
  617. name: '小水库',
  618. component: () =>
  619. import ('../views/dcdxIndex/xsk.vue'),
  620. haveView: true,
  621. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  622. haveSubMenu: true,
  623. },
  624. {
  625. path: '/ncys',
  626. name: '农村饮水',
  627. component: () =>
  628. import ('../views/dcdxIndex/ncys.vue'),
  629. haveView: true,
  630. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  631. haveSubMenu: true,
  632. },
  633. {
  634. path: '/shgc',
  635. name: '水毁工程',
  636. component: () =>
  637. import ('../views/dcdxIndex/shgc.vue'),
  638. haveView: true,
  639. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  640. haveSubMenu: true,
  641. },
  642. {
  643. path: '/dxscz',
  644. name: '地下水测站',
  645. component: () =>
  646. import ('../views/dcdxIndex/dxscz.vue'),
  647. haveView: true,
  648. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  649. haveSubMenu: true,
  650. },
  651. {
  652. path: '/dcdx_xz',
  653. name: '水闸督查',
  654. component: () =>
  655. import ('../views/dcdxIndex/dcdx_xz.vue'),
  656. haveView: true,
  657. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  658. haveSubMenu: true,
  659. },
  660. {
  661. path: '/dcry',
  662. name: '督查人员',
  663. component: () =>
  664. import ('../views/duChaRenYuan/duChaRenYuan.vue'),
  665. haveView: true,
  666. haveSubMenu: false
  667. },
  668. {
  669. path: '/jgry',
  670. name: '机构人员',
  671. component: () =>
  672. import ('../views/duChaRenYuan/duChaRenYuanForOrgan.vue'),
  673. haveView: true,
  674. haveSubMenu: false
  675. },
  676. // {
  677. // path: '/dcwt',
  678. // name: '督查问题',
  679. // component: () =>
  680. // import ('../views/duChaWenTi/duChaWenTiNew.vue'),
  681. // haveView: true,
  682. // haveSubMenu: false
  683. // },
  684. {
  685. path: '/dcwtxsk',
  686. name: '小水库问题',
  687. component: () =>
  688. import ('../views/duChaWenTi/duChaWenTi_xiaoshuikuNew.vue'),
  689. haveView: true,
  690. haveSubMenu: false
  691. },
  692. {
  693. path: '/fjtywt',
  694. name: '福建通用问题',
  695. component: () =>
  696. import ('../views/duChaWenTi/duChaWenTi_fjty.vue'),
  697. haveView: true,
  698. haveSubMenu: false
  699. },
  700. {
  701. path: '/dcdxgl',
  702. name: '督查对象管理',
  703. component: () =>
  704. import ('../views/duChaDuiXiang/duChaduixiangguanli.vue'),
  705. haveView: true,
  706. haveSubMenu: false
  707. },
  708. {
  709. path: '/dcwt_xskfc',
  710. name: '小水库复查问题',
  711. component: () =>
  712. import ('../views/duChaWenTi/duChaWenTi_xskfc.vue'),
  713. haveView: true,
  714. haveSubMenu: false
  715. },
  716. {
  717. path: '/wtcz_jsztfh',
  718. name: '节水载体复核问题',
  719. component: () =>
  720. import ('../views/duChaWenTi/duChaWenTi_jsztfh.vue'),
  721. haveView: true,
  722. haveSubMenu: false
  723. },
  724. {
  725. path: '/wtcz_qsxkglfh',
  726. name: '取水许可管理复核问题-河道外',
  727. component: () =>
  728. import ('../views/duChaWenTi/duChaWenTi_qsxkglhdw.vue'),
  729. haveView: true,
  730. haveSubMenu: false
  731. },
  732. {
  733. path: '/wtcz_qsxkglfhsdz',
  734. name: '取水许可管理复核问题-水电站',
  735. component: () =>
  736. import ('../views/duChaWenTi/duChaWenTi_qsxkglsdz.vue'),
  737. haveView: true,
  738. haveSubMenu: false
  739. },
  740. {
  741. path: '/wtcz_szygljsgl',
  742. name: '水资源管理及节水管理督查',
  743. component: () =>
  744. import ('../views/duChaWenTi/duChaWenTi_szygljsgl.vue'),
  745. haveView: true,
  746. haveSubMenu: false
  747. },
  748. {
  749. path: '/wtcz_xszygljsgl',
  750. name: '水资源管理及节水管理督查',
  751. component: () =>
  752. import ('../views/duChaWenTi/duChaWenTi_xszygljsgl.vue'),
  753. haveView: true,
  754. haveSubMenu: false
  755. },
  756. {
  757. path: '/dcwtxskbzh',
  758. name: '小水库标准化问题',
  759. component: () =>
  760. import ('../views/duChaWenTi/duChaWenTi_xiaoshuikuBzhgl.vue'),
  761. haveView: true,
  762. haveSubMenu: false
  763. },
  764. {
  765. path: '/dcwtdsk',
  766. name: '大中型水库问题',
  767. component: () =>
  768. import ('../views/duChaWenTi/duChaWenTi_dsk.vue'),
  769. haveView: true,
  770. haveSubMenu: false
  771. },
  772. {
  773. path: '/dcwtfjdsk',
  774. name: '福建大中型水库问题',
  775. component: () =>
  776. import ('../views/duChaWenTi/duChaWenTi_dskFj.vue'),
  777. haveView: true,
  778. haveSubMenu: false
  779. },
  780. {
  781. path: '/dcwtfjzdxskhtk',
  782. name: '福建中型水库回头看问题',
  783. component: () =>
  784. import ('../views/duChaWenTi/duChaWenTi_fjzdxskhtk.vue'),
  785. haveView: true,
  786. haveSubMenu: false
  787. },
  788. {
  789. path: '/dcwtfjtydctb',
  790. name: '福建通用督查填报',
  791. component: () =>
  792. import ('../views/duChaWenTi/fjtydctb.vue'),
  793. haveView: true,
  794. haveSubMenu: false
  795. },
  796. {
  797. path: '/dcwtny',
  798. name: '人饮问题',
  799. component: () =>
  800. import ('../views/duChaWenTi/duChaWenTi_renyinNew.vue'),
  801. haveView: true,
  802. haveSubMenu: false
  803. },
  804. {
  805. path: '/dcwtRyNew',
  806. name: '2020人饮问题',
  807. component: () =>
  808. import ('../views/duChaWenTi/duChaWenTi_renyinNeww.vue'),
  809. haveView: true,
  810. haveSubMenu: false
  811. },
  812. {
  813. path: '/wtcz_ncysaq',
  814. name: '农村饮水安全',
  815. component: () =>
  816. import ('../views/duChaWenTi/duChaWenTi_ncysaq.vue'),
  817. haveView: true,
  818. haveSubMenu: false
  819. },
  820. {
  821. path: '/wtcz_ncysaq2021',
  822. name: '农村饮水安全2021',
  823. component: () =>
  824. import ('../views/duChaWenTi/duChaWenTi_ncysaq2021.vue'),
  825. haveView: true,
  826. haveSubMenu: false
  827. },
  828. {
  829. // 人饮查询
  830. path: '/dctb_nynew',
  831. name: '新人饮填报',
  832. component: () =>
  833. import ('../views/duChaTianBao/duChaTianBaoIndex_renyinNew.vue'),
  834. haveView: true,
  835. meta: {
  836. title: 'dashboard',
  837. icon: 'dashboard',
  838. noCache: true
  839. },
  840. haveSubMenu: true,
  841. },
  842. {
  843. path: '/dctb_xsd',
  844. name: '小水电清理整改暗访督查',
  845. component: () =>
  846. import('../views/duChaTianBao/duChaTianBaoIndex_xsd.vue'),
  847. haveView: true,
  848. meta: {
  849. title: 'dashboard',
  850. icon: 'dashboard',
  851. noCache: true
  852. },
  853. haveSubMenu: true,
  854. },
  855. {
  856. // 人饮查询
  857. path: '/dctb_ncysaq',
  858. name: '农村饮水安全填报',
  859. component: () =>
  860. import ('../views/duChaTianBao/duChaTianBaoIndex_ncysaq.vue'),
  861. haveView: true,
  862. meta: {
  863. title: 'dashboard',
  864. icon: 'dashboard',
  865. noCache: true
  866. },
  867. haveSubMenu: true,
  868. },
  869. {
  870. // 人饮查询
  871. path: '/dctb_ncysaqxjbt',
  872. name: '农村饮水安全填报(新疆兵团)',
  873. component: () =>
  874. import ('../views/duChaTianBao/duChaTianBaoIndex_ncysaqxjbt.vue'),
  875. haveView: true,
  876. meta: {
  877. title: 'dashboard',
  878. icon: 'dashboard',
  879. noCache: true
  880. },
  881. haveSubMenu: true,
  882. },
  883. {
  884. // 农村饮水安全填报2021
  885. path: '/dctb_ncysaq2021',
  886. name: '农村饮水安全填报2021',
  887. component: () =>
  888. import ('../views/duChaTianBao/duChaTianBaoIndex_ncysaq2021.vue'),
  889. haveView: true,
  890. meta: {
  891. title: 'dashboard',
  892. icon: 'dashboard',
  893. noCache: true
  894. },
  895. haveSubMenu: true,
  896. },
  897. {
  898. path: '/dcwtsh',
  899. name: '水毁问题',
  900. component: () =>
  901. import ('../views/duChaWenTi/duChaWenTi_shuihuiNew.vue'),
  902. haveView: true,
  903. haveSubMenu: false
  904. },
  905. {
  906. path: '/dcwt_qsxk',
  907. name: '取水许可问题',
  908. component: () =>
  909. import ('../views/duChaWenTi/duChaWenTi_qsxk.vue'),
  910. haveView: true,
  911. haveSubMenu: false
  912. },
  913. {
  914. path: '/dcwtdxs',
  915. name: '地下水问题',
  916. component: () =>
  917. import ('../views/duChaWenTi/duChaWenTi_dxsNew.vue'),
  918. haveView: true,
  919. haveSubMenu: false
  920. },
  921. {
  922. path: '/dcwt_sz',
  923. name: '水闸问题',
  924. component: () =>
  925. import ('../views/duChaWenTi/dcwt_sz.vue'),
  926. haveView: true,
  927. haveSubMenu: false
  928. },
  929. {
  930. path: '/dcwt_aqscssjygk',
  931. name: '安全生产双随机一公开问题',
  932. component: () =>
  933. import ('../views/duChaWenTi/dcwt_aqscssjygk.vue'),
  934. haveView: true,
  935. haveSubMenu: false
  936. },
  937. {
  938. path: '/dcwt_sxzbmaqscxj',
  939. name: '水行政部门安全生产巡检',
  940. component: () =>
  941. import ('../views/duChaWenTi/dcwt_sxzbmaqscxj.vue'),
  942. haveView: true,
  943. haveSubMenu: false
  944. },
  945. {
  946. path: '/dcwt_jsh',
  947. name: '水利工程建设问题',
  948. component: () =>
  949. import ('../views/duChaWenTi/duChaWenTi_jianshe.vue'),
  950. haveView: true,
  951. haveSubMenu: false
  952. },
  953. {
  954. path: '/dcwt_slgcjsaqsc',
  955. name: '水利工程建设安全生产问题',
  956. component: () =>
  957. import ('../views/duChaWenTi/duChaWenTi_slgcjsaqsc.vue'),
  958. haveView: true,
  959. haveSubMenu: false
  960. },
  961. {
  962. path: '/dcwt_slgcjszljj',
  963. name: '水利工程建设安全生产问题',
  964. component: () =>
  965. import ('../views/duChaWenTi/duChaWenTi_slgcjszljj.vue'),
  966. haveView: true,
  967. haveSubMenu: false
  968. },
  969. {
  970. path: '/dcwt_yx',
  971. name: '水利工程运行问题',
  972. component: () =>
  973. import ('../views/duChaWenTi/duChaWenTi_yunxing.vue'),
  974. haveView: true,
  975. haveSubMenu: false
  976. },
  977. {
  978. path: '/dcwt_tdfj',
  979. name: '特定飞检问题',
  980. component: () =>
  981. import ('../views/duChaWenTi/duChaWenTi_teDingFeiJian.vue'),
  982. haveView: true,
  983. haveSubMenu: false
  984. },
  985. {
  986. path: '/dcwt_qt',
  987. name: '其他督查问题',
  988. component: () =>
  989. import ('../views/duChaWenTi/duChaWenTi_qiTa.vue'),
  990. haveView: true,
  991. haveSubMenu: false
  992. },
  993. {
  994. path: '/dcwt_shuibao',
  995. name: '水保督查问题',
  996. component: () =>
  997. import ('../views/duChaWenTi/duChaWenTi_shuibao.vue'),
  998. haveView: true,
  999. haveSubMenu: false
  1000. },
  1001. {
  1002. path: '/dcwt_siluan',
  1003. name: '河湖四乱督查问题',
  1004. component: () =>
  1005. import ('../views/duChaWenTi/duChaWenTi_siluan.vue'),
  1006. haveView: true,
  1007. haveSubMenu: false
  1008. },
  1009. {
  1010. path: '/dcwt_shuizheng',
  1011. name: '非法采砂督查问题',
  1012. component: () =>
  1013. import ('../views/duChaWenTi/duChaWenTi_shuizheng.vue'),
  1014. haveView: true,
  1015. haveSubMenu: false
  1016. },
  1017. {
  1018. path: '/dcwt_zyhbdc',
  1019. name: '中央环保督查问题',
  1020. component: () =>
  1021. import ('../views/duChaWenTi/duChaWenTi_zyhbdc.vue'),
  1022. haveView: true,
  1023. haveSubMenu: false
  1024. },
  1025. {
  1026. path: '/dcwt_ty',
  1027. name: '通用问题',
  1028. component: () =>
  1029. import ('../views/duChaWenTi/duChaWenTi_tongyong.vue'),
  1030. haveView: true,
  1031. haveSubMenu: false
  1032. },
  1033. {
  1034. path: '/dcwt_ydb',
  1035. name: '淤地坝问题',
  1036. component: () =>
  1037. import ('../views/duChaWenTi/duChaWenTi_yudiba.vue'),
  1038. haveView: true,
  1039. haveSubMenu: false
  1040. },
  1041. {
  1042. path: '/dcwt_syd',
  1043. name: '水源地问题',
  1044. component: () =>
  1045. import ('../views/duChaWenTi/duChaWenTi_shuiyuandi.vue'),
  1046. haveView: true,
  1047. haveSubMenu: false
  1048. },
  1049. {
  1050. path: '/dcwt_fsgk',
  1051. name: '分水及管控问题',
  1052. component: () =>
  1053. import ('../views/duChaWenTi/duChaWenTi_fenshuiguankong.vue'),
  1054. haveView: true,
  1055. haveSubMenu: false
  1056. },
  1057. {
  1058. path: '/dcwt_jieshui',
  1059. name: '节水管理与评价问题',
  1060. component: () =>
  1061. import ('../views/duChaWenTi/duChaWenTi_jieshui.vue'),
  1062. haveView: true,
  1063. haveSubMenu: false
  1064. },
  1065. {
  1066. path: '/dcwt_ysdw',
  1067. name: '用水单位问题',
  1068. component: () =>
  1069. import ('../views/duChaWenTi/duChaWenTi_yongshuidw.vue'),
  1070. haveView: true,
  1071. haveSubMenu: false
  1072. },
  1073. {
  1074. path: '/dcwt_qsk',
  1075. name: '取水口问题',
  1076. component: () =>
  1077. import ('../views/duChaWenTi/duChaWenTi_qushuikou.vue'),
  1078. haveView: true,
  1079. haveSubMenu: false
  1080. },
  1081. {
  1082. path: '/dcwt_fh',
  1083. name: '水库防洪调度问题',
  1084. component: () =>
  1085. import ('../views/duChaWenTi/duChaWenTi_fanghong.vue'),
  1086. haveView: true,
  1087. haveSubMenu: false
  1088. },
  1089. {
  1090. path: '/dcwt_sh',
  1091. name: '山洪灾害防御问题',
  1092. component: () =>
  1093. import ('../views/duChaWenTi/duChaWenTi_shanhong.vue'),
  1094. haveView: true,
  1095. haveSubMenu: false
  1096. },
  1097. {
  1098. path: '/dcwt_ygl',
  1099. name: '灌区最后一公里问题',
  1100. component: () =>
  1101. import ('../views/duChaWenTi/duChaWenTi_yigongli.vue'),
  1102. haveView: true,
  1103. haveSubMenu: false
  1104. },
  1105. {
  1106. path: '/dcwt_yjJcdw',
  1107. name: '乙级水利工程检测单位问题',
  1108. component: () =>
  1109. import ('../views/duChaWenTi/duChaWenTi_yjJcdw.vue'),
  1110. haveView: true,
  1111. haveSubMenu: false
  1112. },
  1113. {
  1114. path: '/dcwt_tdjs',
  1115. name: '退地减水问题',
  1116. component: () =>
  1117. import ('../views/duChaWenTi/duChaWenTi_tdjs.vue'),
  1118. haveView: true,
  1119. haveSubMenu: false
  1120. },
  1121. {
  1122. path: '/dcwt_xfyq',
  1123. name: '消防安全及疫情防控对象督查问题',
  1124. component: () =>
  1125. import ('../views/duChaWenTi/duChaWenTi_xfyq.vue'),
  1126. haveView: true,
  1127. haveSubMenu: false
  1128. },
  1129. {
  1130. path: '/wtcz_ztb',
  1131. name: '招投标填报问题',
  1132. component: () =>
  1133. import ('../views/duChaWenTi/duChaWenTi_ztb.vue'),
  1134. haveView: true,
  1135. haveSubMenu: false
  1136. },
  1137. {
  1138. path: '/wtcz_dxsyc',
  1139. name: '地下水压采填报问题',
  1140. component: () =>
  1141. import ('../views/duChaWenTi/duChaWenTi_dxsyc.vue'),
  1142. haveView: true,
  1143. haveSubMenu: false
  1144. },
  1145. {
  1146. path: '/dcwt_df',
  1147. name: '堤防险工险段问题',
  1148. component: () =>
  1149. import ('../views/duChaWenTi/duChaWenTi_difang.vue'),
  1150. haveView: true,
  1151. haveSubMenu: false
  1152. },
  1153. {
  1154. path: '/wtcz_cbh',
  1155. name: '超标洪水防御问题',
  1156. component: () =>
  1157. import ('../views/duChaWenTi/duChaWenTi_cbhs.vue'),
  1158. haveView: true,
  1159. haveSubMenu: false
  1160. },
  1161. {
  1162. path: '/wtcz_xsd',
  1163. name: '小水电清理整改暗访督查问题',
  1164. component: () =>
  1165. import('../views/duChaWenTi/duChaWenTi_xiaoshuidian.vue'),
  1166. haveView: true,
  1167. haveSubMenu: false
  1168. },
  1169. {
  1170. path: '/dcwt_ryzj',
  1171. name: '浙江人饮问题',
  1172. component: () =>
  1173. import ('../views/duChaWenTi/duChaWenTi_renyinZj.vue'),
  1174. haveView: true,
  1175. haveSubMenu: false
  1176. },
  1177. {
  1178. path: '/dcwt_zjqjg',
  1179. name: '浙江强监管问题',
  1180. component: () =>
  1181. import ('../views/duChaWenTi/duChaWenTi_zjqjg.vue'),
  1182. haveView: true,
  1183. haveSubMenu: false
  1184. },
  1185. {
  1186. path: '/wttj',
  1187. name: '问题统计',
  1188. component: () =>
  1189. import ('../views/duChaWenTi/problemCountShow/pblCouShIndex.vue'),
  1190. haveView: true,
  1191. haveSubMenu: false
  1192. },
  1193. {
  1194. path: '/zhxx',
  1195. name: '综合信息',
  1196. component: () =>
  1197. import ('../views/zongHeXinXiOl/zhxxIndex.vue'),
  1198. haveView: true,
  1199. meta: {
  1200. title: 'dashboard',
  1201. icon: 'dashboard',
  1202. noCache: true
  1203. },
  1204. haveSubMenu: true,
  1205. },
  1206. {
  1207. path: '/jc_zhxx',
  1208. name: '地图展示',
  1209. component: () =>
  1210. import ('../views/zongHeXinXiOl/jcZhxxIndex.vue'),
  1211. haveView: true,
  1212. meta: {
  1213. title: 'dashboard',
  1214. icon: 'dashboard',
  1215. noCache: true
  1216. },
  1217. haveSubMenu: true,
  1218. },
  1219. {
  1220. path: '/zhxx_jc',
  1221. name: '综合信息稽察',
  1222. component: () =>
  1223. import ('../views/jcOneMap/zhxxIndex.vue'),
  1224. haveView: true,
  1225. meta: {
  1226. title: 'dashboard',
  1227. icon: 'dashboard',
  1228. noCache: true
  1229. },
  1230. haveSubMenu: true,
  1231. },
  1232. {
  1233. path: '/home',
  1234. name: '信息展示',
  1235. component: initHome('dc'),
  1236. haveView: true,
  1237. meta: {
  1238. title: 'dashboard',
  1239. icon: 'dashboard',
  1240. noCache: true
  1241. },
  1242. haveSubMenu: true,
  1243. },
  1244. {
  1245. path: '/sldchome',
  1246. name: '信息展示',
  1247. component: initHome('dc'),
  1248. haveView: true,
  1249. meta: {
  1250. title: 'dashboard',
  1251. icon: 'dashboard',
  1252. noCache: true
  1253. },
  1254. haveSubMenu: true,
  1255. },
  1256. {
  1257. path: '/newhome',
  1258. name: '信息展示',
  1259. component: initHomeNew('dc'),
  1260. haveView: true,
  1261. meta: {
  1262. title: 'dashboard',
  1263. icon: 'dashboard',
  1264. noCache: true
  1265. },
  1266. haveSubMenu: true,
  1267. },
  1268. {
  1269. path: '/jchome',
  1270. name: '稽察信息展示',
  1271. component: initHome('jc'),
  1272. haveView: true,
  1273. meta: {
  1274. title: 'dashboard',
  1275. icon: 'dashboard',
  1276. noCache: true
  1277. },
  1278. haveSubMenu: true,
  1279. },
  1280. {
  1281. path: '/sljchome',
  1282. name: '稽察信息展示',
  1283. component: initHome('jc'),
  1284. haveView: true,
  1285. meta: {
  1286. title: 'dashboard',
  1287. icon: 'dashboard',
  1288. noCache: true
  1289. },
  1290. haveSubMenu: true,
  1291. },
  1292. {
  1293. path: '/cdjctz',
  1294. name: '检查台账',
  1295. component: () =>
  1296. import ('../views/chengdu/checkBook.vue'),
  1297. haveView: true,
  1298. meta: {
  1299. title: 'dashboard',
  1300. icon: 'dashboard',
  1301. noCache: true
  1302. },
  1303. haveSubMenu: false
  1304. },
  1305. {
  1306. path: '/inspectStatisticsCd',
  1307. name: '检查情况统计表',
  1308. component: () =>
  1309. import ('../views/chengdu/inspectStatisticsCd.vue'),
  1310. haveView: true,
  1311. meta: {
  1312. title: 'dashboard',
  1313. icon: 'dashboard',
  1314. noCache: true
  1315. },
  1316. haveSubMenu: false
  1317. },
  1318. {
  1319. path: '/specialActionStatistics',
  1320. name: '专项行动统计表',
  1321. component: () =>
  1322. import ('../views/chengdu/specialActionStatistics.vue'),
  1323. haveView: true,
  1324. meta: {
  1325. title: 'dashboard',
  1326. icon: 'dashboard',
  1327. noCache: true
  1328. },
  1329. haveSubMenu: false
  1330. },
  1331. {
  1332. path: '/dccgtj',
  1333. name: '督查成果统计',
  1334. component: () =>
  1335. import ('../views/home/homeResult.vue'),
  1336. haveView: true,
  1337. meta: {
  1338. title: 'dashboard',
  1339. icon: 'dashboard',
  1340. noCache: true
  1341. },
  1342. haveSubMenu: true,
  1343. },
  1344. {
  1345. path: '/public',
  1346. name: '舆情列表',
  1347. component: () =>
  1348. import ('../views/home/PublicSentimentMore.vue'),
  1349. haveView: true,
  1350. meta: {
  1351. title: 'dashboard',
  1352. icon: 'dashboard',
  1353. noCache: true
  1354. },
  1355. haveSubMenu: true,
  1356. },
  1357. {
  1358. path: '/inspection_Index',
  1359. name: '稽察填报',
  1360. component: () =>
  1361. import ('../views/Inspection/inspectionIndex.vue'),
  1362. haveView: true,
  1363. meta: {
  1364. title: 'dashboard',
  1365. icon: 'dashboard',
  1366. noCache: true
  1367. },
  1368. haveSubMenu: true,
  1369. },{
  1370. path: '/inspection_View',
  1371. name: '必查清单',
  1372. component: () =>
  1373. import ('../views/Inspection/inspectionView.vue'),
  1374. // component: () =>
  1375. // import ('../views/Inspection/mustProblemView.vue'),
  1376. haveView: true,
  1377. meta: {
  1378. title: 'dashboard',
  1379. icon: 'dashboard',
  1380. noCache: true
  1381. },
  1382. haveSubMenu: true,
  1383. },
  1384. {
  1385. path: '/expertEvaluation',
  1386. name: '稽察专家测评',
  1387. component: () =>
  1388. import ('../views/Inspection/evaluation/expertEvaluation.vue'),
  1389. haveView: true,
  1390. meta: {
  1391. title: 'dashboard',
  1392. icon: 'dashboard',
  1393. noCache: true
  1394. },
  1395. haveSubMenu: true,
  1396. },
  1397. {
  1398. path: '/leaderEvaluation',
  1399. name: '专家组长测评',
  1400. component: () =>
  1401. import ('../views/Inspection/evaluation/leaderEvaluation.vue'),
  1402. haveView: true,
  1403. meta: {
  1404. title: 'dashboard',
  1405. icon: 'dashboard',
  1406. noCache: true
  1407. },
  1408. haveSubMenu: true,
  1409. },
  1410. {
  1411. path: '/expertResult',
  1412. name: '稽察专家测评结果',
  1413. component: () =>
  1414. import ('../views/Inspection/evaluation/expertResult.vue'),
  1415. haveView: true,
  1416. meta: {
  1417. title: 'dashboard',
  1418. icon: 'dashboard',
  1419. noCache: true
  1420. },
  1421. haveSubMenu: true,
  1422. },
  1423. {
  1424. path: '/leaderResult',
  1425. name: '专家组长测评结果',
  1426. component: () =>
  1427. import ('../views/Inspection/evaluation/leaderResult.vue'),
  1428. haveView: true,
  1429. meta: {
  1430. title: 'dashboard',
  1431. icon: 'dashboard',
  1432. noCache: true
  1433. },
  1434. haveSubMenu: true,
  1435. },
  1436. {
  1437. path: '/inspection_chart',
  1438. name: '稽察填报统计',
  1439. component: () =>
  1440. import ('../views/Inspection/StatisticsChart/inspection_chart.vue'),
  1441. haveView: true,
  1442. meta: {
  1443. title: 'dashboard',
  1444. icon: 'dashboard',
  1445. noCache: true
  1446. },
  1447. haveSubMenu: true,
  1448. },
  1449. {
  1450. path: '/inspection_reform',
  1451. name: '稽察整改',
  1452. component: () =>
  1453. import ('../views/Inspection/reform.vue'),
  1454. haveView: true,
  1455. meta: {
  1456. title: 'dashboard',
  1457. icon: 'dashboard',
  1458. noCache: true
  1459. },
  1460. haveSubMenu: true,
  1461. },
  1462. {
  1463. path: '/zgwt_st',
  1464. name: '整改反馈',
  1465. component: () =>
  1466. import ('../views/Inspection/reform_st.vue'),
  1467. haveView: true,
  1468. meta: {
  1469. title: 'dashboard',
  1470. icon: 'dashboard',
  1471. noCache: true
  1472. },
  1473. haveSubMenu: true,
  1474. },
  1475. {
  1476. path: '/inspection_notice',
  1477. name: '整改通知',
  1478. component: () =>
  1479. import ('../views/Inspection/inspectionReformNotice.vue'),
  1480. haveView: true,
  1481. meta: {
  1482. title: 'dashboard',
  1483. icon: 'dashboard',
  1484. noCache: true
  1485. },
  1486. haveSubMenu: true,
  1487. },
  1488. {
  1489. path: '/zgtz_st',
  1490. name: '整改通知_st',
  1491. component: () =>
  1492. import ('../views/Inspection/inspectionReformNotice_st.vue'),
  1493. haveView: true,
  1494. meta: {
  1495. title: 'dashboard',
  1496. icon: 'dashboard',
  1497. noCache: true
  1498. },
  1499. haveSubMenu: true,
  1500. },
  1501. {
  1502. path: '/inspection_assess',
  1503. name: '稽察测评',
  1504. component: () =>
  1505. import ('../views/Inspection/assess.vue'),
  1506. haveView: true,
  1507. meta: {
  1508. title: 'dashboard',
  1509. icon: 'dashboard',
  1510. noCache: true
  1511. },
  1512. haveSubMenu: true,
  1513. },
  1514. {
  1515. path: '/must_problemList',
  1516. name: '必查清单查看',
  1517. component: () =>
  1518. import ('../views/Inspection/mustProblemList.vue'),
  1519. haveView: true,
  1520. meta: {
  1521. title: 'dashboard',
  1522. icon: 'dashboard',
  1523. noCache: true
  1524. },
  1525. haveSubMenu: true,
  1526. },
  1527. {
  1528. path: '/must_problemView',
  1529. name: '必查清单管理',
  1530. component: () =>
  1531. import ('../views/Inspection/mustProblemView.vue'),
  1532. haveView: true,
  1533. meta: {
  1534. title: 'dashboard',
  1535. icon: 'dashboard',
  1536. noCache: true
  1537. },
  1538. haveSubMenu: true,
  1539. },
  1540. {
  1541. path: '/inspection_problemlist',
  1542. name: '稽察问题清单',
  1543. component: () =>
  1544. import ('../views/Inspection/inspectionProblemList.vue'),
  1545. haveView: true,
  1546. meta: {
  1547. title: 'dashboard',
  1548. icon: 'dashboard',
  1549. noCache: true
  1550. },
  1551. haveSubMenu: true,
  1552. },
  1553. {
  1554. path: '/inspection_lawStandards',
  1555. name: '稽察法规标准',
  1556. component: () =>
  1557. import ('../views/Inspection/inspectionLawStandards.vue'),
  1558. haveView: true,
  1559. meta: {
  1560. title: 'dashboard',
  1561. icon: 'dashboard',
  1562. noCache: true
  1563. },
  1564. haveSubMenu: true,
  1565. },
  1566. {
  1567. path: '/inspection_problemview',
  1568. name: '稽察问题浏览',
  1569. component: () =>
  1570. import ('../views/Inspection/viewProblemList.vue'),
  1571. haveView: true,
  1572. meta: {
  1573. title: 'dashboard',
  1574. icon: 'dashboard',
  1575. noCache: true
  1576. },
  1577. haveSubMenu: true,
  1578. },
  1579. {
  1580. path: '/inspection_problemlistview',
  1581. name: '问题清单库',
  1582. component: () =>
  1583. import ('../views/Inspection/viewProblemListview.vue'),
  1584. haveView: true,
  1585. meta: {
  1586. title: 'dashboard',
  1587. icon: 'dashboard',
  1588. noCache: true
  1589. },
  1590. haveSubMenu: true,
  1591. },
  1592. {
  1593. path: '/inspection_lawview',
  1594. name: '稽察法规浏览',
  1595. component: () =>
  1596. import ('../views/Inspection/viewLawList.vue'),
  1597. haveView: true,
  1598. meta: {
  1599. title: 'dashboard',
  1600. icon: 'dashboard',
  1601. noCache: true
  1602. },
  1603. haveSubMenu: true,
  1604. },
  1605. {
  1606. path: '/inspection_result',
  1607. name: '稽察成果',
  1608. component: () =>
  1609. import ('../views/Inspection/resultReport/result.vue'),
  1610. haveView: true,
  1611. meta: {
  1612. title: 'dashboard',
  1613. icon: 'dashboard',
  1614. noCache: true
  1615. },
  1616. haveSubMenu: true,
  1617. },
  1618. {
  1619. path: '/inspection_result2',
  1620. name: '稽察成果(测试)',
  1621. component: () =>
  1622. import ('../views/Inspection/resultReport/result2.vue'),
  1623. haveView: true,
  1624. meta: {
  1625. title: 'dashboard',
  1626. icon: 'dashboard',
  1627. noCache: true
  1628. },
  1629. haveSubMenu: true,
  1630. },
  1631. {
  1632. path: '/inspection_manage',
  1633. name: '稽察成果',
  1634. component: () =>
  1635. import ('../views/Inspection/resultReport/manage.vue'),
  1636. haveView: true,
  1637. meta: {
  1638. title: 'dashboard',
  1639. icon: 'dashboard',
  1640. noCache: true
  1641. },
  1642. haveSubMenu: true,
  1643. },
  1644. {
  1645. path: '/jchz',
  1646. name: '基础信息纠错汇总',
  1647. component: () =>
  1648. import ('../views/Inspection/resultReport/correctionTable.vue'),
  1649. haveView: true,
  1650. meta: {
  1651. title: 'dashboard',
  1652. icon: 'dashboard',
  1653. noCache: true
  1654. },
  1655. haveSubMenu: true,
  1656. },
  1657. {
  1658. path: '/queryResults',
  1659. name: '稽察成果查询',
  1660. component: () =>
  1661. import ('../views/Inspection/queryResults.vue'),
  1662. haveView: true,
  1663. meta: {
  1664. title: 'dashboard',
  1665. icon: 'dashboard',
  1666. noCache: true
  1667. },
  1668. haveSubMenu: true,
  1669. },
  1670. {
  1671. path: '/inspection_resultTable',
  1672. name: '稽察汇总成果',
  1673. component: () =>
  1674. import ('../views/Inspection/resultReport/resultTable.vue'),
  1675. haveView: true,
  1676. meta: {
  1677. title: 'dashboard',
  1678. icon: 'dashboard',
  1679. noCache: true
  1680. },
  1681. haveSubMenu: true,
  1682. },
  1683. {
  1684. path: '/meeting_Index',
  1685. name: '新会议管理',
  1686. component: () =>
  1687. import ('../views/meetingManage/meetingIndex.vue'),
  1688. haveView: true,
  1689. meta: {
  1690. title: 'dashboard',
  1691. icon: 'dashboard',
  1692. noCache: true
  1693. },
  1694. haveSubMenu: true,
  1695. },
  1696. {
  1697. path: '/newHomeMainView',
  1698. name: '信息展示(new)',
  1699. component: () =>
  1700. import ('../views/home/newHomeMainView.vue'),
  1701. haveView: true,
  1702. meta: {
  1703. title: 'dashboard',
  1704. icon: 'dashboard',
  1705. noCache: true
  1706. },
  1707. haveSubMenu: true,
  1708. },
  1709. {
  1710. path: '/gonggaoguanli',
  1711. name: '公告管理',
  1712. component: () =>
  1713. import ('../views/xiTongGuanLi/announcementManage.vue'),
  1714. haveView: true,
  1715. meta: {title: 'dashboard', icon: 'dashboard', noCache: true},
  1716. haveSubMenu: true,
  1717. },
  1718. // 对象查询(liyz)
  1719. {
  1720. path: '/xzqh',
  1721. name: '行政区划',
  1722. component: () =>
  1723. import ('../views/duChaDuiXiang/chaXun/xingZhengQuHua.vue'),
  1724. haveView: true,
  1725. meta: {
  1726. title: 'dashboard',
  1727. icon: 'dashboard',
  1728. noCache: true
  1729. },
  1730. haveSubMenu: true,
  1731. }, {
  1732. // 水毁查询
  1733. path: '/shcx',
  1734. name: '水毁查询',
  1735. component: () =>
  1736. import ('../views/duChaDuiXiang/chaXun/shuiHuiChaXun.vue'),
  1737. haveView: true,
  1738. meta: {
  1739. title: 'dashboard',
  1740. icon: 'dashboard',
  1741. noCache: true
  1742. },
  1743. haveSubMenu: true,
  1744. }, {
  1745. // 水库查询
  1746. path: '/skcx',
  1747. name: '水库查询',
  1748. component: () =>
  1749. import ('../views/duChaDuiXiang/chaXun/shuiKuChaXun.vue'),
  1750. haveView: true,
  1751. meta: {
  1752. title: 'dashboard',
  1753. icon: 'dashboard',
  1754. noCache: true
  1755. },
  1756. haveSubMenu: true,
  1757. }, {
  1758. // 人饮查询
  1759. path: '/yscx',
  1760. name: '人饮查询',
  1761. component: () =>
  1762. import ('../views/duChaDuiXiang/chaXun/yinShuiChaXun.vue'),
  1763. haveView: true,
  1764. meta: {
  1765. title: 'dashboard',
  1766. icon: 'dashboard',
  1767. noCache: true
  1768. },
  1769. haveSubMenu: true,
  1770. }, {
  1771. path: '/gwscx',
  1772. name: '地下水水源地查询',
  1773. component: () =>
  1774. import ('../views/duChaDuiXiang/chaXun/shuiYuanDiChaXun_gws.vue'),
  1775. haveView: true,
  1776. meta: {
  1777. title: 'dashboard',
  1778. icon: 'dashboard',
  1779. noCache: true
  1780. },
  1781. haveSubMenu: true,
  1782. }, {
  1783. path: '/swscx',
  1784. name: '地表水水源地查询',
  1785. component: () =>
  1786. import ('../views/duChaDuiXiang/chaXun/shuiYuanDiChaXun_sws.vue'),
  1787. haveView: true,
  1788. meta: {
  1789. title: 'dashboard',
  1790. icon: 'dashboard',
  1791. noCache: true
  1792. },
  1793. haveSubMenu: true,
  1794. }, {
  1795. path: '/xzqh',
  1796. name: '行政区划查询',
  1797. component: () =>
  1798. import ('../views/duChaDuiXiang/chaXun/xingZhengQuHua.vue'),
  1799. haveView: true,
  1800. meta: {
  1801. title: 'dashboard',
  1802. icon: 'dashboard',
  1803. noCache: true
  1804. },
  1805. haveSubMenu: true,
  1806. }, {
  1807. path: '/slgc',
  1808. name: '水利工程查询',
  1809. component: () =>
  1810. import ('../views/duChaDuiXiang/chaXun/shuiLiGongCheng.vue'),
  1811. haveView: true,
  1812. meta: {
  1813. title: 'dashboard',
  1814. icon: 'dashboard',
  1815. noCache: true
  1816. },
  1817. haveSubMenu: true,
  1818. }, {
  1819. path: '/dcrycx',
  1820. name: '督查人员基础信息填报表',
  1821. component: () =>
  1822. import ('../views/duChaDuiXiang/chaXun/renYuanChaXun_sht.vue'),
  1823. haveView: true,
  1824. meta: {
  1825. title: 'dashboard',
  1826. icon: 'dashboard',
  1827. noCache: true
  1828. },
  1829. haveSubMenu: true,
  1830. }, {
  1831. path: '/szcx',
  1832. name: '水闸基础信息查询',
  1833. component: () =>
  1834. import ('../views/duChaDuiXiang/chaXun/shuiZhaChaXun.vue'),
  1835. haveView: true,
  1836. meta: {
  1837. title: 'dashboard',
  1838. icon: 'dashboard',
  1839. noCache: true
  1840. },
  1841. haveSubMenu: true,
  1842. },{
  1843. path: '/expert_manage',
  1844. name: '专家库管理',
  1845. component: () =>
  1846. import ('../views/duChaDuiXiang/chaXun/expertManage.vue'),
  1847. haveView: true,
  1848. meta: {
  1849. title: 'dashboard',
  1850. icon: 'dashboard',
  1851. noCache: true
  1852. },
  1853. haveSubMenu: true,
  1854. }, {
  1855. path: '/dxscx',
  1856. name: '地下水监测站基础信息查询',
  1857. component: () =>
  1858. import ('../views/duChaDuiXiang/chaXun/diXiaShuiChaXun.vue'),
  1859. haveView: true,
  1860. meta: {
  1861. title: 'dashboard',
  1862. icon: 'dashboard',
  1863. noCache: true
  1864. },
  1865. haveSubMenu: true,
  1866. },
  1867. {
  1868. // 取水许可证查询
  1869. path: '/xkzcx',
  1870. name: '取水许可证查询',
  1871. component: () =>
  1872. import ('../views/duChaDuiXiang/chaXun/certificateChaXun.vue'),
  1873. haveView: true,
  1874. meta: {
  1875. title: 'dashboard',
  1876. icon: 'dashboard',
  1877. noCache: true
  1878. },
  1879. haveSubMenu: true,
  1880. },
  1881. {
  1882. path: '/qskcx',
  1883. name: '取水口查询',
  1884. component: () =>
  1885. import ('../views/duChaDuiXiang/chaXun/intakeChaXun.vue'),
  1886. haveView: true,
  1887. meta: {
  1888. title: 'dashboard',
  1889. icon: 'dashboard',
  1890. noCache: true
  1891. },
  1892. haveSubMenu: true,
  1893. },
  1894. {
  1895. // 水源地查询
  1896. path: '/sydcx',
  1897. name: '水源地查询',
  1898. component: () =>
  1899. import ('../views/duChaDuiXiang/chaXun/waterSourceChaXun.vue'),
  1900. haveView: true,
  1901. meta: {
  1902. title: 'dashboard',
  1903. icon: 'dashboard',
  1904. noCache: true
  1905. },
  1906. haveSubMenu: true,
  1907. },
  1908. {
  1909. //用水单位查询
  1910. path: '/ysdwcx',
  1911. name: '用水单位查询',
  1912. component: () =>
  1913. import ('../views/duChaDuiXiang/chaXun/WaterUnitChaXun.vue'),
  1914. haveView: true,
  1915. meta: {
  1916. title: 'dashboard',
  1917. icon: 'dashboard',
  1918. noCache: true
  1919. },
  1920. haveSubMenu: true,
  1921. }, {
  1922. path: '/export',
  1923. name: '导出',
  1924. component: () =>
  1925. import ('../views/export/generalExport.vue'),
  1926. haveView: true,
  1927. meta: {
  1928. title: 'dashboard',
  1929. icon: 'dashboard',
  1930. noCache: true
  1931. },
  1932. haveSubMenu: true,
  1933. },
  1934. {
  1935. path: '/export_sh',
  1936. name: '水毁登记表导出',
  1937. component: () =>
  1938. import ('../views/export/generalExport_shuihui.vue'),
  1939. haveView: true,
  1940. meta: {
  1941. title: 'dashboard',
  1942. icon: 'dashboard',
  1943. noCache: true
  1944. },
  1945. haveSubMenu: true,
  1946. },
  1947. {
  1948. path: '/export_sk',
  1949. name: '水库登记表导出',
  1950. component: () =>
  1951. import ('../views/export/generalExport_shuiku.vue'),
  1952. haveView: true,
  1953. meta: {
  1954. title: 'dashboard',
  1955. icon: 'dashboard',
  1956. noCache: true
  1957. },
  1958. haveSubMenu: true,
  1959. },
  1960. {
  1961. path: '/reportIndex_sk',
  1962. name: '水库统计报表',
  1963. component: () =>
  1964. import ('../views/export/reportIndex_sk.vue'),
  1965. haveView: true,
  1966. meta: {
  1967. title: 'dashboard',
  1968. icon: 'dashboard',
  1969. noCache: true
  1970. },
  1971. haveSubMenu: true,
  1972. },
  1973. {
  1974. path: '/reportIndex_shuiku',
  1975. name: '水库专项督查统计报表',
  1976. component: () =>
  1977. import ('../views/export/gcFuJian/cgfj.vue'),
  1978. haveView: true,
  1979. meta: {
  1980. title: 'dashboard',
  1981. icon: 'dashboard',
  1982. noCache: true
  1983. },
  1984. haveSubMenu: true,
  1985. },
  1986. {
  1987. path: '/report_skaqyxjcjdb',
  1988. name: '2021年度水库安全运行专项检查进度表',
  1989. component: () =>
  1990. import ('../views/export/gcFuJian/skaqyxjcjdb.vue'),
  1991. haveView: true,
  1992. meta: {
  1993. title: 'dashboard',
  1994. icon: 'dashboard',
  1995. noCache: true
  1996. },
  1997. haveSubMenu: true,
  1998. },
  1999. {
  2000. path: '/report_xxskzgqkpm',
  2001. name: '市各县(市、区)小型水库整改情况排名表',
  2002. component: () =>
  2003. import ('../views/export/gcFuJian/xxskzgqkpm.vue'),
  2004. haveView: true,
  2005. meta: {
  2006. title: 'dashboard',
  2007. icon: 'dashboard',
  2008. noCache: true
  2009. },
  2010. haveSubMenu: true,
  2011. },
  2012. {
  2013. path: '/reportIndex_gongcheng',
  2014. name: '2020年度在建水利工程建设监督检查统计表',
  2015. component: () =>
  2016. import ('../views/export/zjsl/zjsl.vue'),
  2017. haveView: true,
  2018. meta: {
  2019. title: 'dashboard',
  2020. icon: 'dashboard',
  2021. noCache: true
  2022. },
  2023. haveSubMenu: true,
  2024. },
  2025. {
  2026. path: '/reportIndex_ry',
  2027. name: '人饮统计报表',
  2028. component: () =>
  2029. import ('../views/export/reportIndex_ry.vue'),
  2030. haveView: true,
  2031. meta: {
  2032. title: 'dashboard',
  2033. icon: 'dashboard',
  2034. noCache: true
  2035. },
  2036. haveSubMenu: true,
  2037. },
  2038. {
  2039. path: '/reportIndex_fjsxzzf',
  2040. name: '水行政执法统计报表(福建)',
  2041. component: () =>
  2042. import ('../views/export/reportIndex_fjsxzzf.vue'),
  2043. haveView: true,
  2044. meta: {
  2045. title: 'dashboard',
  2046. icon: 'dashboard',
  2047. noCache: true
  2048. },
  2049. haveSubMenu: true,
  2050. },
  2051. {
  2052. path: '/reportIndex_sh',
  2053. name: '水毁统计报表',
  2054. component: () =>
  2055. import ('../views/export/reportIndex_sh.vue'),
  2056. haveView: true,
  2057. meta: {
  2058. title: 'dashboard',
  2059. icon: 'dashboard',
  2060. noCache: true
  2061. },
  2062. haveSubMenu: true,
  2063. },
  2064. {
  2065. path: '/reportIndex_sz',
  2066. name: '水闸统计报表',
  2067. component: () =>
  2068. import ('../views/export/reportIndex_sz.vue'),
  2069. haveView: true,
  2070. meta: {
  2071. title: 'dashboard',
  2072. icon: 'dashboard',
  2073. noCache: true
  2074. },
  2075. haveSubMenu: true,
  2076. },
  2077. {
  2078. path: '/reportIndex_szy',
  2079. name: '水资源和节水进度统计表',
  2080. component: () =>
  2081. import ('../views/export/reportIndex_szy.vue'),
  2082. haveView: true,
  2083. meta: {
  2084. title: 'dashboard',
  2085. icon: 'dashboard',
  2086. noCache: true
  2087. },
  2088. haveSubMenu: true,
  2089. },
  2090. {
  2091. path: '/reportIndex_skfh',
  2092. name: '水库防洪统计报表',
  2093. component: () =>
  2094. import ('../views/export/reportIndex_skfh.vue'),
  2095. haveView: true,
  2096. meta: {
  2097. title: 'dashboard',
  2098. icon: 'dashboard',
  2099. noCache: true
  2100. },
  2101. haveSubMenu: true,
  2102. },
  2103. {
  2104. path: '/reportIndex_dfxgxd',
  2105. name: '堤防险工险段统计报表',
  2106. component: () =>
  2107. import ('../views/export/reportIndex_dfxgxd.vue'),
  2108. haveView: true,
  2109. meta: {
  2110. title: 'dashboard',
  2111. icon: 'dashboard',
  2112. noCache: true
  2113. },
  2114. haveSubMenu: true,
  2115. },
  2116. {
  2117. path: '/reportIndex_dxsyc',
  2118. name: '地下水压采的统计报表',
  2119. component: () =>
  2120. import ('../views/export/reportIndex_dxsyc.vue'),
  2121. haveView: true,
  2122. meta: {
  2123. title: 'dashboard',
  2124. icon: 'dashboard',
  2125. noCache: true
  2126. },
  2127. haveSubMenu: true,
  2128. },
  2129. {
  2130. path: '/reportIndex_shzh',
  2131. name: '山洪灾害统计报表',
  2132. component: () =>
  2133. import ('../views/export/reportIndex_shzh.vue'),
  2134. haveView: true,
  2135. meta: {
  2136. title: 'dashboard',
  2137. icon: 'dashboard',
  2138. noCache: true
  2139. },
  2140. haveSubMenu: true,
  2141. },
  2142. {
  2143. path: '/reportIndex_zjqjg',
  2144. name: '浙江强监管统计报表',
  2145. component: () =>
  2146. import ('../views/export/zhejiang/reportIndex_zjqjg.vue'),
  2147. haveView: true,
  2148. meta: {
  2149. title: 'dashboard',
  2150. icon: 'dashboard',
  2151. noCache: true
  2152. },
  2153. haveSubMenu: true,
  2154. },
  2155. {
  2156. path: '/reportIndex_wtcrr',
  2157. name: '节水载体核实统计报表',
  2158. component: () =>
  2159. import ('../views/export/fujian/reportIndex_wtcrr.vue'),
  2160. haveView: true,
  2161. meta: {
  2162. title: 'dashboard',
  2163. icon: 'dashboard',
  2164. noCache: true
  2165. },
  2166. haveSubMenu: true,
  2167. },
  2168. {
  2169. path: '/reportIndex_wtgt',
  2170. name: '取水许可管理对象核实-河道外统计报表',
  2171. component: () =>
  2172. import ('../views/export/fujian/reportIndex_wtgt.vue'),
  2173. haveView: true,
  2174. meta: {
  2175. title: 'dashboard',
  2176. icon: 'dashboard',
  2177. noCache: true
  2178. },
  2179. haveSubMenu: true,
  2180. },
  2181. {
  2182. path: '/reportIndex_wtgth',
  2183. name: '取水许可管理对象核实-水电站统计报表',
  2184. component: () =>
  2185. import ('../views/export/fujian/reportIndex_wtgth.vue'),
  2186. haveView: true,
  2187. meta: {
  2188. title: 'dashboard',
  2189. icon: 'dashboard',
  2190. noCache: true
  2191. },
  2192. haveSubMenu: true,
  2193. },
  2194. {
  2195. path: '/reportIndex_wrws',
  2196. name: '市级水资源管理及节水管理核实统计报表',
  2197. component: () =>
  2198. import ('../views/export/fujian/reportIndex_wrws.vue'),
  2199. haveView: true,
  2200. meta: {
  2201. title: 'dashboard',
  2202. icon: 'dashboard',
  2203. noCache: true
  2204. },
  2205. haveSubMenu: true,
  2206. },
  2207. {
  2208. path: '/reportIndex_wrwx',
  2209. name: '县级水资源管理及节水管理核实统计报表',
  2210. component: () =>
  2211. import ('../views/export/fujian/reportIndex_wrwx.vue'),
  2212. haveView: true,
  2213. meta: {
  2214. title: 'dashboard',
  2215. icon: 'dashboard',
  2216. noCache: true
  2217. },
  2218. haveSubMenu: true,
  2219. },
  2220. {
  2221. path: '/reportIndex_zjry',
  2222. name: '浙江人饮统计报表',
  2223. component: () =>
  2224. import ('../views/export/zhejiang/reportIndex_zjry.vue'),
  2225. haveView: true,
  2226. meta: {
  2227. title: 'dashboard',
  2228. icon: 'dashboard',
  2229. noCache: true
  2230. },
  2231. haveSubMenu: true,
  2232. },
  2233. {
  2234. path: '/dctb_fanghong',
  2235. name: '水库防洪调度填报',
  2236. component: () =>
  2237. import ('../views/duChaTianBao/duChaTianBaoIndex_fanghongNew.vue'),
  2238. haveView: true,
  2239. meta: {
  2240. title: 'dashboard',
  2241. icon: 'dashboard',
  2242. noCache: true
  2243. },
  2244. haveSubMenu: true,
  2245. },
  2246. {
  2247. path: '/dctb_shanhong',
  2248. name: '山洪灾害防御',
  2249. component: () =>
  2250. import ('../views/duChaTianBao/duChaTianBaoIndex_shanhong.vue'),
  2251. haveView: true,
  2252. meta: {
  2253. title: 'dashboard',
  2254. icon: 'dashboard',
  2255. noCache: true
  2256. },
  2257. haveSubMenu: true,
  2258. },
  2259. {
  2260. // 030超标洪水防御督查
  2261. path: '/dctb_chb',
  2262. name: '超标洪水防御督查',
  2263. component: () =>
  2264. import ('../views/duChaTianBao/duChaTianBaoIndex_chbhs.vue'),
  2265. haveView: true,
  2266. meta: {
  2267. title: 'dashboard',
  2268. icon: 'dashboard',
  2269. noCache: true
  2270. },
  2271. haveSubMenu: true,
  2272. },
  2273. {
  2274. // 032水资源管理督查
  2275. path: '/dctb_szygl',
  2276. name: '水资源管理填报',
  2277. component: () =>
  2278. import ('../views/duChaTianBao/duChaTianBaoIndex_szygl.vue'),
  2279. haveView: true,
  2280. meta: {
  2281. title: 'dashboard',
  2282. icon: 'dashboard',
  2283. noCache: true
  2284. },
  2285. haveSubMenu: true,
  2286. },
  2287. {
  2288. // 2020年度专项督查水资源(江苏)
  2289. path: '/dctb_elzx',
  2290. name: '2020年度专项督查水资源(江苏)',
  2291. component: () =>
  2292. import ('../views/duChaTianBao/duChaTianBaoIndex_nianduzhuanxiangducha.vue'),
  2293. haveView: true,
  2294. meta: {
  2295. title: 'dashboard',
  2296. icon: 'dashboard',
  2297. noCache: true
  2298. },
  2299. haveSubMenu: true,
  2300. },
  2301. {
  2302. path: '/dcwt_szygl',
  2303. name: '水资源管理问题',
  2304. component: () =>
  2305. import ('../views/duChaWenTi/duChaWenTi_szygl.vue'),
  2306. haveView: true,
  2307. haveSubMenu: false
  2308. },
  2309. {
  2310. path: '/reportIndex_szygl',
  2311. name: '水资源管理督查统计报表',
  2312. component: () =>
  2313. import ('../views/export/reportIndex_szygl.vue'),
  2314. haveView: true,
  2315. meta: {
  2316. title: 'dashboard',
  2317. icon: 'dashboard',
  2318. noCache: true
  2319. },
  2320. haveSubMenu: true,
  2321. },
  2322. {
  2323. path: '/reportIndex_jyysh',
  2324. name: '节水督查统计报表',
  2325. component: () =>
  2326. import ('../views/export/reportIndex_jyysh.vue'),
  2327. haveView: true,
  2328. meta: {
  2329. title: 'dashboard',
  2330. icon: 'dashboard',
  2331. noCache: true
  2332. },
  2333. haveSubMenu: true,
  2334. },
  2335. {
  2336. // 033节水督查
  2337. path: '/dctb_jsh',
  2338. name: '节水督查填报',
  2339. component: () =>
  2340. import ('../views/duChaTianBao/duChaTianBaoIndex_jsh.vue'),
  2341. haveView: true,
  2342. meta: {
  2343. title: 'dashboard',
  2344. icon: 'dashboard',
  2345. noCache: true
  2346. },
  2347. haveSubMenu: true,
  2348. },
  2349. {
  2350. path: '/wtcz_jsh',
  2351. name: '节水问题',
  2352. component: () =>
  2353. import ('../views/duChaWenTi/duChaWenTi_jsh.vue'),
  2354. haveView: true,
  2355. haveSubMenu: false
  2356. },
  2357. {
  2358. path: '/dcwt_qys',
  2359. name: '取用水问题',
  2360. component: () =>
  2361. import('../views/duChaWenTi/duChaWenTi_quyongshui.vue'),
  2362. haveView: true,
  2363. haveSubMenu: false
  2364. },
  2365. {
  2366. path: '/dcwt_qys_view',
  2367. name: '取用水问题查看',
  2368. component: () =>
  2369. import('../views/duChaWenTi/duChaWenTi_quyongshui.vue'),
  2370. haveView: true,
  2371. haveSubMenu: false
  2372. },
  2373. {
  2374. path: '/reportIndex_qysh',
  2375. name: '取用水统计报表',
  2376. component: () =>
  2377. import('../views/export/reportIndex_qysh.vue'),
  2378. haveView: true,
  2379. meta: {
  2380. title: 'dashboard',
  2381. icon: 'dashboard',
  2382. noCache: true
  2383. },
  2384. haveSubMenu: true,
  2385. },
  2386. {
  2387. path: '/dctb_qys',
  2388. name: '取用水检查填报',
  2389. component: () =>
  2390. import('../views/duChaTianBao/duChaTianBaoIndex_quyongshui.vue'),
  2391. haveView: true,
  2392. meta: {
  2393. title: 'dashboard',
  2394. icon: 'dashboard',
  2395. noCache: true
  2396. },
  2397. haveSubMenu: true,
  2398. },
  2399. {
  2400. path: '/dctb_qys_view',
  2401. name: '取用水检查填报查看',
  2402. component: () =>
  2403. import('../views/duChaTianBao/duChaTianBaoIndex_quyongshui.vue'),
  2404. haveView: true,
  2405. meta: {
  2406. title: 'dashboard',
  2407. icon: 'dashboard',
  2408. noCache: true
  2409. },
  2410. haveSubMenu: true,
  2411. },
  2412. {
  2413. path: '/dccg_qys',
  2414. name: '取用水检查督查成果',
  2415. component: () =>
  2416. import('../views/duChaChengGuo/shuiYuanDiGuanLi/duChaChengGuo_quyongshui.vue'),
  2417. haveView: true,
  2418. meta: {
  2419. title: 'dashboard',
  2420. icon: 'dashboard',
  2421. noCache: true
  2422. },
  2423. haveSubMenu: true,
  2424. },
  2425. {
  2426. // 034小水库除险加固督查
  2427. path: '/dctb_chuxian',
  2428. name: '小水库除险加固督查填报',
  2429. component: () =>
  2430. import ('../views/duChaTianBao/duChaTianBaoIndex_xskchuxianjiagu.vue'),
  2431. haveView: true,
  2432. meta: {
  2433. title: 'dashboard',
  2434. icon: 'dashboard',
  2435. noCache: true
  2436. },
  2437. haveSubMenu: true,
  2438. },
  2439. {
  2440. path: '/wtcz_xskchuxian',
  2441. name: '小水库除险加固问题',
  2442. component: () =>
  2443. import ('../views/duChaWenTi/duChaWenTi_xskchuxianjiagu.vue'),
  2444. haveView: true,
  2445. haveSubMenu: false
  2446. },
  2447. {
  2448. path: '/wtcz_xskchuxian_view',
  2449. name: '小水库除险加固问题查看',
  2450. component: () =>
  2451. import ('../views/duChaWenTi/duChaWenTi_xskchuxianjiagu.vue'),
  2452. haveView: true,
  2453. haveSubMenu: false
  2454. },
  2455. {
  2456. path: '/reportIndex_xskcxjg',
  2457. name: '小型水库除险加固项目建设督查统计报表',
  2458. component: () =>
  2459. import ('../views/export/reportIndex_xskcxjg.vue'),
  2460. haveView: true,
  2461. meta: {
  2462. title: 'dashboard',
  2463. icon: 'dashboard',
  2464. noCache: true
  2465. },
  2466. haveSubMenu: true,
  2467. },
  2468. // 水库除险加固督查报告
  2469. {
  2470. path: '/report_chuxiandoc',
  2471. name: '水库除险加固督查报告',
  2472. component: () =>
  2473. import ('../views/export/xskchuxian/report_doc.vue'),
  2474. haveView: true,
  2475. meta: {
  2476. title: 'dashboard',
  2477. icon: 'dashboard',
  2478. noCache: true
  2479. },
  2480. haveSubMenu: true,
  2481. },
  2482. {
  2483. // 035 中小河流治理
  2484. path: '/dctb_zxhlzl',
  2485. name: '中小河流治理填报',
  2486. component: () =>
  2487. import ('../views/duChaTianBao/duChaTianBaoIndex_zxhlzl.vue'),
  2488. haveView: true,
  2489. meta: {
  2490. title: 'dashboard',
  2491. icon: 'dashboard',
  2492. noCache: true
  2493. },
  2494. haveSubMenu: true,
  2495. },
  2496. {
  2497. path: '/wtcz_zxhlzl',
  2498. name: '中小河流治理问题',
  2499. component: () =>
  2500. import ('../views/duChaWenTi/duChaWenTi_zxhlzl.vue'),
  2501. haveView: true,
  2502. haveSubMenu: false
  2503. },
  2504. {
  2505. path: '/wtcz_zxhlzl_view',
  2506. name: '中小河流治理问题查看',
  2507. component: () =>
  2508. import ('../views/duChaWenTi/duChaWenTi_zxhlzl.vue'),
  2509. haveView: true,
  2510. haveSubMenu: false
  2511. },
  2512. {
  2513. path: '/reportIndex_zxhlzl',
  2514. name: '中小河流治理督查统计报表',
  2515. component: () =>
  2516. import ('../views/export/reportIndex_zxhlzl.vue'),
  2517. haveView: true,
  2518. meta: {
  2519. title: 'dashboard',
  2520. icon: 'dashboard',
  2521. noCache: true
  2522. },
  2523. haveSubMenu: true,
  2524. },
  2525. {
  2526. path: '/report_zxhlzl_doc',
  2527. name: '中小河流治理工作报告',
  2528. component: () =>
  2529. import ('../views/export/hl/report_zxhlzl_doc.vue'),
  2530. haveView: true,
  2531. meta: {
  2532. title: 'dashboard',
  2533. icon: 'dashboard',
  2534. noCache: true
  2535. },
  2536. haveSubMenu: true,
  2537. },
  2538. {
  2539. // 037农村饮水安全回头看督查
  2540. path: '/dctb_nyhtk',
  2541. name: '农村饮水安全回头看督查填报',
  2542. component: () =>
  2543. import ('../views/duChaTianBao/duChaTianBaoIndex_nyhtk.vue'),
  2544. haveView: true,
  2545. meta: {
  2546. title: 'dashboard',
  2547. icon: 'dashboard',
  2548. noCache: true
  2549. },
  2550. haveSubMenu: true,
  2551. },
  2552. {
  2553. path: '/dcwtnyhtk',
  2554. name: '农饮安全回头看问题',
  2555. component: () =>
  2556. import ('../views/duChaWenTi/duChaWenTi_nongyinHuitoukan.vue'),
  2557. haveView: true,
  2558. haveSubMenu: false
  2559. },
  2560. {
  2561. path: '/dcwtnyhtk_view',
  2562. name: '农饮安全回头看问题查看',
  2563. component: () =>
  2564. import ('../views/duChaWenTi/duChaWenTi_nongyinHuitoukan.vue'),
  2565. haveView: true,
  2566. haveSubMenu: false
  2567. },
  2568. {
  2569. path: '/reportIndex_nyaqhtk',
  2570. name: '农村饮水安全回头看督查统计报表',
  2571. component: () =>
  2572. import ('../views/export/reportIndex_nyaqhtk.vue'),
  2573. haveView: true,
  2574. meta: {
  2575. title: 'dashboard',
  2576. icon: 'dashboard',
  2577. noCache: true
  2578. },
  2579. haveSubMenu: true,
  2580. },
  2581. {
  2582. path: '/reportIndex_shuibao',
  2583. name: '水保统计报表',
  2584. component: () =>
  2585. import ('../views/export/reportIndex_shuibao.vue'),
  2586. haveView: true,
  2587. meta: {
  2588. title: 'dashboard',
  2589. icon: 'dashboard',
  2590. noCache: true
  2591. },
  2592. haveSubMenu: true,
  2593. },
  2594. {
  2595. path: '/reportIndex_siluan',
  2596. name: '河湖四乱统计报表',
  2597. component: () =>
  2598. import ('../views/export/reportIndex_siluan.vue'),
  2599. haveView: true,
  2600. meta: {
  2601. title: 'dashboard',
  2602. icon: 'dashboard',
  2603. noCache: true
  2604. },
  2605. haveSubMenu: true,
  2606. },
  2607. {
  2608. path: '/reportIndex_shuizheng',
  2609. name: '非法采砂统计报表',
  2610. component: () =>
  2611. import ('../views/export/reportIndex_shuizheng.vue'),
  2612. haveView: true,
  2613. meta: {
  2614. title: 'dashboard',
  2615. icon: 'dashboard',
  2616. noCache: true
  2617. },
  2618. haveSubMenu: true,
  2619. },
  2620. {
  2621. path: '/reportIndex_zyhbdc',
  2622. name: '中央环保督查统计报表',
  2623. component: () =>
  2624. import ('../views/export/reportIndex_zyhbdc.vue'),
  2625. haveView: true,
  2626. meta: {
  2627. title: 'dashboard',
  2628. icon: 'dashboard',
  2629. noCache: true
  2630. },
  2631. haveSubMenu: true,
  2632. },
  2633. {
  2634. path: '/report_sk',
  2635. name: '附表1-小水库情况表',
  2636. component: () =>
  2637. import ('../views/export/report_sk.vue'),
  2638. haveView: true,
  2639. meta: {
  2640. title: 'dashboard',
  2641. icon: 'dashboard',
  2642. noCache: true
  2643. },
  2644. haveSubMenu: true,
  2645. },
  2646. {
  2647. path: '/report_sk2',
  2648. name: '附表2-督查小型水库名称及分布情况表\n',
  2649. component: () =>
  2650. import ('../views/export/report_sk2.vue'),
  2651. haveView: true,
  2652. meta: {
  2653. title: 'dashboard',
  2654. icon: 'dashboard',
  2655. noCache: true
  2656. },
  2657. haveSubMenu: true,
  2658. },
  2659. {
  2660. path: '/report_sk3',
  2661. name: '附表3-督查水库情况统计表',
  2662. component: () =>
  2663. import ('../views/export/report_sk3.vue'),
  2664. haveView: true,
  2665. meta: {
  2666. title: 'dashboard',
  2667. icon: 'dashboard',
  2668. noCache: true
  2669. },
  2670. haveSubMenu: true,
  2671. },
  2672. {
  2673. path: '/report_sk4',
  2674. name: '附表4-督查问题汇总表',
  2675. component: () =>
  2676. import ('../views/export/report_sk4.vue'),
  2677. haveView: true,
  2678. meta: {
  2679. title: 'dashboard',
  2680. icon: 'dashboard',
  2681. noCache: true
  2682. },
  2683. haveSubMenu: true,
  2684. },
  2685. {
  2686. path: '/report_sk5',
  2687. name: '附表5-追究建议表',
  2688. component: () =>
  2689. import ('../views/export/report_sk5.vue'),
  2690. haveView: true,
  2691. meta: {
  2692. title: 'dashboard',
  2693. icon: 'dashboard',
  2694. noCache: true
  2695. },
  2696. haveSubMenu: true,
  2697. },
  2698. {
  2699. path: '/report_sk6',
  2700. name: '附表6-督查登记表',
  2701. component: () =>
  2702. import ('../views/export/report_sk6.vue'),
  2703. haveView: true,
  2704. meta: {
  2705. title: 'dashboard',
  2706. icon: 'dashboard',
  2707. noCache: true
  2708. },
  2709. haveSubMenu: true,
  2710. },
  2711. {
  2712. path: '/report_sk7',
  2713. name: '小型水库督查工作报告',
  2714. component: () =>
  2715. import ('../views/export/report_sk7.vue'),
  2716. haveView: true,
  2717. meta: {
  2718. title: 'dashboard',
  2719. icon: 'dashboard',
  2720. noCache: true
  2721. },
  2722. haveSubMenu: true,
  2723. },
  2724. {
  2725. path: '/report_renyin',
  2726. name: '农村饮水安全督查报告',
  2727. component: () =>
  2728. import ('../views/export/report_renyin.vue'),
  2729. haveView: true,
  2730. meta: {
  2731. title: 'dashboard',
  2732. icon: 'dashboard',
  2733. noCache: true
  2734. },
  2735. haveSubMenu: true,
  2736. },
  2737. {
  2738. path: '/report_hhsl',
  2739. name: '农村饮水安全督查报告',
  2740. component: () =>
  2741. import ('../views/export/report_hhsl.vue'),
  2742. haveView: true,
  2743. meta: {
  2744. title: 'dashboard',
  2745. icon: 'dashboard',
  2746. noCache: true
  2747. },
  2748. haveSubMenu: true,
  2749. },
  2750. {
  2751. path: '/report_wrws',
  2752. name: '监督复核情况报告',
  2753. component: () =>
  2754. import ('../views/export/report_wrws.vue'),
  2755. haveView: true,
  2756. meta: {
  2757. title: 'dashboard',
  2758. icon: 'dashboard',
  2759. noCache: true
  2760. },
  2761. haveSubMenu: true,
  2762. },
  2763. {
  2764. path: '/report_sk_evolve',
  2765. name: '督查进度表',
  2766. component: () =>
  2767. import ('../views/export/report_sk_evolve.vue'),
  2768. haveView: true,
  2769. meta: {
  2770. title: 'dashboard',
  2771. icon: 'dashboard',
  2772. noCache: true
  2773. },
  2774. haveSubMenu: true,
  2775. },
  2776. {
  2777. path: '/report_szdoc',
  2778. name: '流域水闸专项检查工作报告',
  2779. component: () =>
  2780. import ('../views/export/reportSz/report_sz_doc.vue'),
  2781. haveView: true,
  2782. meta: {
  2783. title: 'dashboard',
  2784. icon: 'dashboard',
  2785. noCache: true
  2786. },
  2787. haveSubMenu: true,
  2788. },
  2789. {
  2790. path: '/report_slgc_doc',
  2791. name: '水利工程督查工作报告',
  2792. component: () =>
  2793. import ('../views/export/slgc/report_slgc_doc.vue'),
  2794. haveView: true,
  2795. meta: {
  2796. title: 'dashboard',
  2797. icon: 'dashboard',
  2798. noCache: true
  2799. },
  2800. haveSubMenu: true,
  2801. },
  2802. {
  2803. path: '/report_shidc_doc',
  2804. name: '小型水库市督查检查报告',
  2805. component: () =>
  2806. import ('../views/export/sk/report_shidc_doc.vue'),
  2807. haveView: true,
  2808. meta: {
  2809. title: 'dashboard',
  2810. icon: 'dashboard',
  2811. noCache: true
  2812. },
  2813. haveSubMenu: true,
  2814. },
  2815. {
  2816. path: '/report_xiandc_doc',
  2817. name: '小型水库县(市、区)督查检查报告',
  2818. component: () =>
  2819. import ('../views/export/sk/report_xiandc_doc.vue'),
  2820. haveView: true,
  2821. meta: {
  2822. title: 'dashboard',
  2823. icon: 'dashboard',
  2824. noCache: true
  2825. },
  2826. haveSubMenu: true,
  2827. },
  2828. {
  2829. path: '/report_hcbg_doc',
  2830. name: '核查报告',
  2831. component: () =>
  2832. import ('../views/export/dc/hcbg/report_hcbg_doc.vue'),
  2833. haveView: true,
  2834. meta: {
  2835. title: 'dashboard',
  2836. icon: 'dashboard',
  2837. noCache: true
  2838. },
  2839. haveSubMenu: true,
  2840. },
  2841. {
  2842. path: '/report_jdjc_doc',
  2843. name: '在建水利工程监督检查报告',
  2844. component: () =>
  2845. import ('../views/export/dc/jdjc/report_jdjc_doc.vue'),
  2846. haveView: true,
  2847. meta: {
  2848. title: 'dashboard',
  2849. icon: 'dashboard',
  2850. noCache: true
  2851. },
  2852. haveSubMenu: true,
  2853. },
  2854. {
  2855. path: '/report_bzhgd_doc',
  2856. name: '“党建+标准化”示范工地评选成果',
  2857. component: () =>
  2858. import ('../views/export/dc/bzhgd/report_bzhgd_doc.vue'),
  2859. haveView: true,
  2860. meta: {
  2861. title: 'dashboard',
  2862. icon: 'dashboard',
  2863. noCache: true
  2864. },
  2865. haveSubMenu: true,
  2866. },
  2867. {
  2868. path: '/xmfr_table',
  2869. name: '项目法人安全生产标准化评审',
  2870. component: () =>
  2871. import ('../views/export/dc/anbiao/report_xmfr_doc.vue'),
  2872. haveView: true,
  2873. meta: {
  2874. title: 'dashboard',
  2875. icon: 'dashboard',
  2876. noCache: true
  2877. },
  2878. haveSubMenu: true,
  2879. },
  2880. {
  2881. path: '/sjdw_table',
  2882. name: '设计单位安全生产标准化评审成果',
  2883. component: () =>
  2884. import ('../views/export/dc/anbiao/report_sjdw_doc.vue'),
  2885. haveView: true,
  2886. meta: {
  2887. title: 'dashboard',
  2888. icon: 'dashboard',
  2889. noCache: true
  2890. },
  2891. haveSubMenu: true,
  2892. },
  2893. {
  2894. path: '/sgqy_table',
  2895. name: '施工企业安全生产标准化评审',
  2896. component: () =>
  2897. import ('../views/export/dc/anbiao/report_sgqy_doc.vue'),
  2898. haveView: true,
  2899. meta: {
  2900. title: 'dashboard',
  2901. icon: 'dashboard',
  2902. noCache: true
  2903. },
  2904. haveSubMenu: true,
  2905. },
  2906. {
  2907. path: '/gldw_table',
  2908. name: '管理单位安全生产标准化评审',
  2909. component: () =>
  2910. import ('../views/export/dc/anbiao/report_gldw_doc.vue'),
  2911. haveView: true,
  2912. meta: {
  2913. title: 'dashboard',
  2914. icon: 'dashboard',
  2915. noCache: true
  2916. },
  2917. haveSubMenu: true,
  2918. },
  2919. {
  2920. path: '/jldw_table',
  2921. name: '监理单位安全生产标准化评审',
  2922. component: () =>
  2923. import ('../views/export/dc/anbiao/report_jldw_doc.vue'),
  2924. haveView: true,
  2925. meta: {
  2926. title: 'dashboard',
  2927. icon: 'dashboard',
  2928. noCache: true
  2929. },
  2930. haveSubMenu: true,
  2931. },
  2932. {
  2933. path: '/report_hcbg_shuiku',
  2934. name: '水库专项督查报告',
  2935. component: () =>
  2936. import ('../views/export/dc/hcbg/report_hcbg_shuiku.vue'),
  2937. haveView: true,
  2938. meta: {
  2939. title: 'dashboard',
  2940. icon: 'dashboard',
  2941. noCache: true
  2942. },
  2943. haveSubMenu: true,
  2944. },
  2945. {
  2946. path: '/preFlood',
  2947. name: '汛前检查报告',
  2948. component: () =>
  2949. import ('../views/export/dc/hcbg/preFlood.vue'),
  2950. haveView: true,
  2951. meta: {
  2952. title: 'dashboard',
  2953. icon: 'dashboard',
  2954. noCache: true
  2955. },
  2956. haveSubMenu: true,
  2957. },
  2958. {
  2959. path: '/report_shuikuanquanyunxing',
  2960. name: '水库安全运行管理检查报告',
  2961. component: () =>
  2962. import ('../views/export/dc/hcbg/report_shuikuanquanyunxing.vue'),
  2963. haveView: true,
  2964. meta: {
  2965. title: 'dashboard',
  2966. icon: 'dashboard',
  2967. noCache: true
  2968. },
  2969. haveSubMenu: true,
  2970. },
  2971. {
  2972. path: '/report_ncsdz_excel',
  2973. name: '农村水电站督查检查情况汇总表',
  2974. component: () =>
  2975. import ('../views/export/sk/report_ncsdz_excel.vue'),
  2976. haveView: true,
  2977. meta: {
  2978. title: 'dashboard',
  2979. icon: 'dashboard',
  2980. noCache: true
  2981. },
  2982. haveSubMenu: true,
  2983. },
  2984. {
  2985. path: '/report_xskdc_excel',
  2986. name: '小型水库督查检查情况汇总表',
  2987. component: () =>
  2988. import ('../views/export/sk/report_xskdc_excel.vue'),
  2989. haveView: true,
  2990. meta: {
  2991. title: 'dashboard',
  2992. icon: 'dashboard',
  2993. noCache: true
  2994. },
  2995. haveSubMenu: true,
  2996. },
  2997. {
  2998. path: '/report_jcbg_doc_FuJian',
  2999. name: '稽察报告(福建)',
  3000. component: () =>
  3001. import ('../views/export/jc/report_jcbg_doc.vue'),
  3002. haveView: true,
  3003. meta: {
  3004. title: 'dashboard',
  3005. icon: 'dashboard',
  3006. noCache: true
  3007. },
  3008. haveSubMenu: true,
  3009. },
  3010. {
  3011. path: '/report_jcbg_doc',
  3012. name: '稽察报告',
  3013. component: () =>
  3014. import ('../views/export/jc/report_jcbg_doc_group_new.vue'),
  3015. haveView: true,
  3016. meta: {
  3017. title: 'dashboard',
  3018. icon: 'dashboard',
  3019. noCache: true
  3020. },
  3021. haveSubMenu: true,
  3022. },
  3023. {
  3024. path: '/report_szydc8',
  3025. name: '水资源管理发现问题汇总表',
  3026. component: () =>
  3027. import ('../views/export/szy/report_szydc8.vue'),
  3028. haveView: true,
  3029. meta: {
  3030. title: 'dashboard',
  3031. icon: 'dashboard',
  3032. noCache: true
  3033. },
  3034. haveSubMenu: true,
  3035. },
  3036. {
  3037. path: '/floodSituation',
  3038. name: '汛情快报',
  3039. component: () =>
  3040. import ('../views/export/xunqin/floodSituation.vue'),
  3041. haveView: true,
  3042. meta: {
  3043. title: 'dashboard',
  3044. icon: 'dashboard',
  3045. noCache: true
  3046. },
  3047. haveSubMenu: true,
  3048. },
  3049. {
  3050. path: '/report_dfxgxd',
  3051. name: '堤防险工险段督查工作报告',
  3052. component: () =>
  3053. import ('../views/export/df/report_dfxgxd.vue'),
  3054. haveView: true,
  3055. meta: {
  3056. title: 'dashboard',
  3057. icon: 'dashboard',
  3058. noCache: true
  3059. },
  3060. haveSubMenu: true,
  3061. },
  3062. {
  3063. path: '/report_fhdoc',
  3064. name: '水库防洪调度工作报告',
  3065. component: () =>
  3066. import ('../views/export/sk/report_fh_doc.vue'),
  3067. haveView: true,
  3068. meta: {
  3069. title: 'dashboard',
  3070. icon: 'dashboard',
  3071. noCache: true
  3072. },
  3073. haveSubMenu: true,
  3074. },
  3075. {
  3076. path: '/report_szydc9',
  3077. name: '水资源检查工作情况统计表',
  3078. component: () =>
  3079. import ('../views/export/szy/report_szydc9.vue'),
  3080. haveView: true,
  3081. meta: {
  3082. title: 'dashboard',
  3083. icon: 'dashboard',
  3084. noCache: true
  3085. },
  3086. haveSubMenu: true,
  3087. },
  3088. {
  3089. path: '/report_sh',
  3090. name: '水毁修复项目暗访情况表',
  3091. component: () =>
  3092. import ('../views/export/report_sh.vue'),
  3093. haveView: true,
  3094. meta: {
  3095. title: 'dashboard',
  3096. icon: 'dashboard',
  3097. noCache: true
  3098. },
  3099. haveSubMenu: true,
  3100. },
  3101. {
  3102. path: '/report_ry2',
  3103. name: '表2',
  3104. component: () =>
  3105. import ('../views/export/report_ry2.vue'),
  3106. haveView: true,
  3107. meta: {
  3108. title: 'dashboard',
  3109. icon: 'dashboard',
  3110. noCache: true
  3111. },
  3112. haveSubMenu: true,
  3113. },
  3114. {
  3115. path: '/report_ry3',
  3116. name: '表3',
  3117. component: () =>
  3118. import ('../views/export/report_ry3.vue'),
  3119. haveView: true,
  3120. meta: {
  3121. title: 'dashboard',
  3122. icon: 'dashboard',
  3123. noCache: true
  3124. },
  3125. haveSubMenu: true,
  3126. },
  3127. {
  3128. path: '/report_ry4',
  3129. name: '表4',
  3130. component: () =>
  3131. import ('../views/export/report_ry4.vue'),
  3132. haveView: true,
  3133. meta: {
  3134. title: 'dashboard',
  3135. icon: 'dashboard',
  3136. noCache: true
  3137. },
  3138. haveSubMenu: true,
  3139. },
  3140. {
  3141. path: '/report_ry5',
  3142. name: '表5',
  3143. component: () =>
  3144. import ('../views/export/report_ry5.vue'),
  3145. haveView: true,
  3146. meta: {
  3147. title: 'dashboard',
  3148. icon: 'dashboard',
  3149. noCache: true
  3150. },
  3151. haveSubMenu: true,
  3152. },
  3153. {
  3154. path: '/report_ry6',
  3155. name: '表6',
  3156. component: () =>
  3157. import ('../views/export/report_ry6.vue'),
  3158. haveView: true,
  3159. meta: {
  3160. title: 'dashboard',
  3161. icon: 'dashboard',
  3162. noCache: true
  3163. },
  3164. haveSubMenu: true,
  3165. },
  3166. {
  3167. path: '/report_ry7',
  3168. name: '表7',
  3169. component: () =>
  3170. import ('../views/export/report_ry7.vue'),
  3171. haveView: true,
  3172. meta: {
  3173. title: 'dashboard',
  3174. icon: 'dashboard',
  3175. noCache: true
  3176. },
  3177. haveSubMenu: true,
  3178. },
  3179. {
  3180. path: '/report_ry8',
  3181. name: '人饮暗访调研报告参考提纲(分省)',
  3182. component: () =>
  3183. import ('../views/export/report_ry8.vue'),
  3184. haveView: true,
  3185. meta: {
  3186. title: 'dashboard',
  3187. icon: 'dashboard',
  3188. noCache: true
  3189. },
  3190. haveSubMenu: true,
  3191. },
  3192. // 督查汇总台账
  3193. {
  3194. path: '/report_dchztz',
  3195. name: '督查汇总台账',
  3196. component: () =>
  3197. import ('../views/export/reportIndex_dchztz.vue'),
  3198. haveView: true,
  3199. meta: {
  3200. title: 'dashboard',
  3201. icon: 'dashboard',
  3202. noCache: true
  3203. },
  3204. haveSubMenu: true,
  3205. },
  3206. {
  3207. path: '/report_hztz_qh',
  3208. name: '汇总台账(青海)',
  3209. component: () =>
  3210. import ('../views/export/reportIndex_hztz_qh.vue'),
  3211. haveView: true,
  3212. meta: {
  3213. title: 'dashboard',
  3214. icon: 'dashboard',
  3215. noCache: true
  3216. },
  3217. haveSubMenu: true,
  3218. },
  3219. // 稽察汇总台账
  3220. {
  3221. path: '/report_jchztz',
  3222. name: '稽察汇总台账',
  3223. component: () =>
  3224. import ('../views/export/reportIndex_jchztz.vue'),
  3225. haveView: true,
  3226. meta: {
  3227. title: 'dashboard',
  3228. icon: 'dashboard',
  3229. noCache: true
  3230. },
  3231. haveSubMenu: true,
  3232. },
  3233. {
  3234. // 灌区最后一公里填报
  3235. path: '/dctb_gqzhygl',
  3236. name: '灌区最后一公里填报',
  3237. component: () =>
  3238. import ('../views/duChaTianBao/duChaTianBaoIndex_gqzhygl.vue'),
  3239. haveView: true,
  3240. meta: {
  3241. title: 'dashboard',
  3242. icon: 'dashboard',
  3243. noCache: true
  3244. },
  3245. haveSubMenu: true,
  3246. },
  3247. {
  3248. // 乙级水利工程检测单位填报
  3249. path: '/dctb_yjJcdw',
  3250. name: '乙级水利工程检测单位填报',
  3251. component: () =>
  3252. import ('../views/duChaTianBao/duChaTianBaoIndex_yjJcdw.vue'),
  3253. haveView: true,
  3254. meta: {
  3255. title: 'dashboard',
  3256. icon: 'dashboard',
  3257. noCache: true
  3258. },
  3259. haveSubMenu: true,
  3260. },
  3261. {
  3262. // 退地减水督查列表
  3263. path: '/dctb_tdjs',
  3264. name: '退地减水督查填报',
  3265. component: () =>
  3266. import ('../views/duChaTianBao/duChaTianBaoIndex_tdjs.vue'),
  3267. haveView: true,
  3268. meta: {
  3269. title: 'dashboard',
  3270. icon: 'dashboard',
  3271. noCache: true
  3272. },
  3273. haveSubMenu: true,
  3274. },
  3275. {
  3276. // 消防安全及疫情防控对象督查
  3277. path: '/dctb_xfyq',
  3278. name: '消防安全及疫情防控对象督查',
  3279. component: () =>
  3280. import ('../views/duChaTianBao/duChaTianBaoIndex_xfyq.vue'),
  3281. haveView: true,
  3282. meta: {
  3283. title: 'dashboard',
  3284. icon: 'dashboard',
  3285. noCache: true
  3286. },
  3287. haveSubMenu: true,
  3288. },
  3289. {
  3290. // 乙级水利工程检测单位填报
  3291. path: '/dctb_ztb',
  3292. name: '招投标填报',
  3293. component: () =>
  3294. import ('../views/duChaTianBao/duChaTianBaoIndex_ztb.vue'),
  3295. haveView: true,
  3296. meta: {
  3297. title: 'dashboard',
  3298. icon: 'dashboard',
  3299. noCache: true
  3300. },
  3301. haveSubMenu: true,
  3302. },
  3303. {
  3304. // 地下水压采
  3305. path: '/dctb_dxsyc',
  3306. name: '地下水压采',
  3307. component: () =>
  3308. import ('../views/duChaTianBao/duChaTianBaoIndex_dxsyc.vue'),
  3309. haveView: true,
  3310. meta: {
  3311. title: 'dashboard',
  3312. icon: 'dashboard',
  3313. noCache: true
  3314. },
  3315. haveSubMenu: true,
  3316. },
  3317. {
  3318. // 标准化工地
  3319. path: '/dctb_bzhgd',
  3320. name: '标准化工地(福建)',
  3321. component: () =>
  3322. import ('../views/duChaTianBao/duChaTianBaoIndex_bzhgd.vue'),
  3323. haveView: true,
  3324. meta: {
  3325. title: 'dashboard',
  3326. icon: 'dashboard',
  3327. noCache: true
  3328. },
  3329. haveSubMenu: true,
  3330. },
  3331. {
  3332. // 项目法人安全生产标准化评审
  3333. path: '/dctb_xmfr',
  3334. name: '项目法人安全生产标准化评审(福建)',
  3335. component: () =>
  3336. import('../views/duChaTianBao/duChaTianBaoIndex_xmfr.vue'),
  3337. haveView: true,
  3338. meta: {
  3339. title: 'dashboard',
  3340. icon: 'dashboard',
  3341. noCache: true
  3342. },
  3343. haveSubMenu: true,
  3344. },
  3345. {
  3346. // 施工企业安全生产标准化评审
  3347. path: '/dctb_sgqy',
  3348. name: '施工企业安全生产标准化评审(福建)',
  3349. component: () =>
  3350. import('../views/duChaTianBao/duChaTianBaoIndex_sgqy.vue'),
  3351. haveView: true,
  3352. meta: {
  3353. title: 'dashboard',
  3354. icon: 'dashboard',
  3355. noCache: true
  3356. },
  3357. haveSubMenu: true,
  3358. },
  3359. {
  3360. // 管理单位安全生产标准化评审
  3361. path: '/dctb_gldw',
  3362. name: '管理单位安全生产标准化评审(福建)',
  3363. component: () =>
  3364. import('../views/duChaTianBao/duChaTianBaoIndex_gldw.vue'),
  3365. haveView: true,
  3366. meta: {
  3367. title: 'dashboard',
  3368. icon: 'dashboard',
  3369. noCache: true
  3370. },
  3371. haveSubMenu: true,
  3372. },
  3373. {
  3374. // 设计单位安全生产标准化评审
  3375. path: '/dctb_sjdw',
  3376. name: '设计单位安全生产标准化评审(福建)',
  3377. component: () =>
  3378. import('../views/duChaTianBao/duChaTianBaoIndex_sjdw.vue'),
  3379. haveView: true,
  3380. meta: {
  3381. title: 'dashboard',
  3382. icon: 'dashboard',
  3383. noCache: true
  3384. },
  3385. haveSubMenu: true,
  3386. },
  3387. {
  3388. // 监理单位安全生产标准化评审
  3389. path: '/dctb_jldw',
  3390. name: '监理单位安全生产标准化评审(福建)',
  3391. component: () =>
  3392. import('../views/duChaTianBao/duChaTianBaoIndex_jldw.vue'),
  3393. haveView: true,
  3394. meta: {
  3395. title: 'dashboard',
  3396. icon: 'dashboard',
  3397. noCache: true
  3398. },
  3399. haveSubMenu: true,
  3400. },
  3401. {
  3402. //质量管理评价
  3403. path: '/dctb_zlglpj',
  3404. name: '质量管理评价(福建)',
  3405. component: () =>
  3406. import ('../views/duChaTianBao/duChaTianBaoIndex_zlglpj.vue'),
  3407. haveView: true,
  3408. meta: {
  3409. title: 'dashboard',
  3410. icon: 'dashboard',
  3411. noCache: true
  3412. },
  3413. haveSubMenu: true,
  3414. },
  3415. {
  3416. //质量管理评价
  3417. path: '/dctb_fjqa',
  3418. name: '工程质量监督(福建)',
  3419. component: () =>
  3420. import ('../views/duChaTianBao/duChaTianBaoIndex_fjqa.vue'),
  3421. haveView: true,
  3422. meta: {
  3423. title: 'dashboard',
  3424. icon: 'dashboard',
  3425. noCache: true
  3426. },
  3427. haveSubMenu: true,
  3428. },
  3429. {
  3430. //质量管理评价
  3431. path: '/dctb_sdqa',
  3432. name: '工程质量监督(山东)',
  3433. component: () =>
  3434. import ('../views/duChaTianBao/duChaTianBaoIndex_sdqa.vue'),
  3435. haveView: true,
  3436. meta: {
  3437. title: 'dashboard',
  3438. icon: 'dashboard',
  3439. noCache: true
  3440. },
  3441. haveSubMenu: true,
  3442. },
  3443. {
  3444. // 029堤防险工险段督查
  3445. path: '/dctb_df',
  3446. name: '堤防险工险段督查',
  3447. component: () =>
  3448. import ('../views/duChaTianBao/duChaTianBaoIndex_difangOld.vue'),
  3449. haveView: true,
  3450. meta: {
  3451. title: 'dashboard',
  3452. icon: 'dashboard',
  3453. noCache: true
  3454. },
  3455. haveSubMenu: true,
  3456. },
  3457. {
  3458. path: '/dctb_zlyaqxmgl',
  3459. name: '工程项目管理',
  3460. component: () =>
  3461. import ('../views/duChaTianBao/zlyaq/xmManage.vue'),
  3462. haveView: true,
  3463. meta: {
  3464. title: 'dashboard',
  3465. icon: 'dashboard',
  3466. noCache: true
  3467. },
  3468. haveSubMenu: true,
  3469. },
  3470. {
  3471. path: '/dctb_zlyaqjcbgl',
  3472. name: '检查表管理',
  3473. component: () =>
  3474. import ('../views/duChaTianBao/zlyaq/reportManage.vue'),
  3475. haveView: true,
  3476. meta: {
  3477. title: 'dashboard',
  3478. icon: 'dashboard',
  3479. noCache: true
  3480. },
  3481. haveSubMenu: true,
  3482. },
  3483. {
  3484. path: '/dctb_zlyaqjcbtb',
  3485. name: '检查表填报',
  3486. component: () =>
  3487. import ('../views/duChaTianBao/zlyaq/zjreport.vue'),
  3488. haveView: true,
  3489. meta: {
  3490. title: 'dashboard',
  3491. icon: 'dashboard',
  3492. noCache: true
  3493. },
  3494. haveSubMenu: true,
  3495. },
  3496. {
  3497. path: '/dctb_zlyaqxmjcb',
  3498. name: '项目检查表',
  3499. component: () =>
  3500. import ('../views/duChaTianBao/zlyaq/xmreport.vue'),
  3501. haveView: true,
  3502. meta: {
  3503. title: 'dashboard',
  3504. icon: 'dashboard',
  3505. noCache: true
  3506. },
  3507. haveSubMenu: false,
  3508. },
  3509. {
  3510. path: '/reportFj_run',
  3511. name: '2020年福建省水库安全运行管理督查进度表',
  3512. component: () =>
  3513. import ('../views/export/fujian/reportRsvrProvinceRun.vue'),
  3514. haveView: true,
  3515. meta: {
  3516. title: 'dashboard',
  3517. icon: 'dashboard',
  3518. noCache: true
  3519. },
  3520. haveSubMenu: true,
  3521. },
  3522. {
  3523. path: '/reportIndex_fj2021skyxaqjc',
  3524. name: '2021年度小型水库安全运行专项检查情况统计表',
  3525. component: () =>
  3526. import ('../views/export/gcFuJian/skaqyx.vue'),
  3527. haveView: true,
  3528. meta: {
  3529. title: 'dashboard',
  3530. icon: 'dashboard',
  3531. noCache: true
  3532. },
  3533. haveSubMenu: true,
  3534. },
  3535. {
  3536. path: '/report_problem_sum',
  3537. name: '水库督查发现问题汇总表',
  3538. component: () =>
  3539. import ('../views/export/fujian/rsvrProblemSummary.vue'),
  3540. haveView: true,
  3541. meta: {
  3542. title: 'dashboard',
  3543. icon: 'dashboard',
  3544. noCache: true
  3545. },
  3546. haveSubMenu: true,
  3547. },
  3548. {
  3549. path: '/reportFj_rsvr_city_problem',
  3550. name: '市小型水库督查发现问题汇总表',
  3551. component: () =>
  3552. import ('../views/export/fujian/reportRsvrCityProblem.vue'),
  3553. haveView: true,
  3554. meta: {
  3555. title: 'dashboard',
  3556. icon: 'dashboard',
  3557. noCache: true
  3558. },
  3559. haveSubMenu: true,
  3560. },
  3561. {
  3562. path: '/reportFj_rsvrbig_city_problem',
  3563. name: '市大中型水库督查发现问题汇总表',
  3564. component: () =>
  3565. import ('../views/export/fujian/reportBigRsvrCityProblem.vue'),
  3566. haveView: true,
  3567. meta: {
  3568. title: 'dashboard',
  3569. icon: 'dashboard',
  3570. noCache: true
  3571. },
  3572. haveSubMenu: true,
  3573. },
  3574. {
  3575. path: '/reportFj_city_score',
  3576. name: '市水库安全运行管理督查自查成果复核及量化评分表',
  3577. component: () =>
  3578. import ('../views/export/fujian/reportCityScore.vue'),
  3579. haveView: true,
  3580. meta: {
  3581. title: 'dashboard',
  3582. icon: 'dashboard',
  3583. noCache: true
  3584. },
  3585. haveSubMenu: true,
  3586. },
  3587. {
  3588. path: '/reportFj_rsvr_county_problem',
  3589. name: '县小型水库问题清单表',
  3590. component: () =>
  3591. import ('../views/export/fujian/reportRsvrCountyProblem.vue'),
  3592. haveView: true,
  3593. meta: {
  3594. title: 'dashboard',
  3595. icon: 'dashboard',
  3596. noCache: true
  3597. },
  3598. haveSubMenu: true,
  3599. },
  3600. {
  3601. path: '/reportFj_rsvrbig_county_problem',
  3602. name: '县大中型水库问题清单表',
  3603. component: () =>
  3604. import ('../views/export/fujian/reportBigRsvrCountyProblem.vue'),
  3605. haveView: true,
  3606. meta: {
  3607. title: 'dashboard',
  3608. icon: 'dashboard',
  3609. noCache: true
  3610. },
  3611. haveSubMenu: true,
  3612. },
  3613. {
  3614. path: '/reportFj_county_score',
  3615. name: '县水库安全运行管理督查自查成果复核及量化评分表',
  3616. component: () =>
  3617. import ('../views/export/fujian/reportCountyScore.vue'),
  3618. haveView: true,
  3619. meta: {
  3620. title: 'dashboard',
  3621. icon: 'dashboard',
  3622. noCache: true
  3623. },
  3624. haveSubMenu: true,
  3625. },
  3626. {
  3627. path: '/reportFj_rsvr_word',
  3628. name: '督查水库工作报告',
  3629. component: () =>
  3630. import ('../views/export/fujian/reportRsvrPageoffice.vue'),
  3631. haveView: true,
  3632. meta: {
  3633. title: 'dashboard',
  3634. icon: 'dashboard',
  3635. noCache: true
  3636. },
  3637. haveSubMenu: true,
  3638. },
  3639. {
  3640. // 人饮查询
  3641. path: '/dctb_ny',
  3642. name: '人饮填报',
  3643. component: () =>
  3644. import ('../views/duChaTianBao/duChaTianBaoIndex_nongyin.vue'),
  3645. haveView: true,
  3646. meta: {
  3647. title: 'dashboard',
  3648. icon: 'dashboard',
  3649. noCache: true
  3650. },
  3651. haveSubMenu: true,
  3652. },
  3653. {
  3654. // 水库查询
  3655. path: '/dctb_sk',
  3656. name: '水库填报',
  3657. component: () =>
  3658. import ('../views/duChaTianBao/duChaTianBaoIndex_shuiku.vue'),
  3659. // import ('../views/duChaTianBao/detail_shuiku'),
  3660. haveView: true,
  3661. meta: {
  3662. title: 'dashboard',
  3663. icon: 'dashboard',
  3664. noCache: true
  3665. },
  3666. haveSubMenu: true,
  3667. },
  3668. {
  3669. // 水库查询
  3670. path: '/dctb_xskfc',
  3671. name: '小水库复查填报',
  3672. component: () =>
  3673. import ('../views/duChaTianBao/duChaTianBaoIndex_xskfc.vue'),
  3674. haveView: true,
  3675. meta: {
  3676. title: 'dashboard',
  3677. icon: 'dashboard',
  3678. noCache: true
  3679. },
  3680. haveSubMenu: true,
  3681. },
  3682. {
  3683. // 福建中大型水库回头看
  3684. path: '/dctb_zdxskhtk',
  3685. name: '福建中大型水库回头看',
  3686. component: () =>
  3687. import ('../views/duChaTianBao/duChaTianBaoIndex_zdxskhtkFj.vue'),
  3688. haveView: true,
  3689. meta: {
  3690. title: 'dashboard',
  3691. icon: 'dashboard',
  3692. noCache: true
  3693. },
  3694. haveSubMenu: true,
  3695. },
  3696. {
  3697. // 水库查询
  3698. path: '/dctb_dsk',
  3699. name: '大中型水库填报',
  3700. component: () =>
  3701. import ('../views/duChaTianBao/duChaTianBaoIndex_dsk.vue'),
  3702. // import ('../views/duChaTianBao/detail_shuiku'),
  3703. haveView: true,
  3704. meta: {
  3705. title: 'dashboard',
  3706. icon: 'dashboard',
  3707. noCache: true
  3708. },
  3709. haveSubMenu: true,
  3710. },
  3711. //add by lch
  3712. {
  3713. // 水库查询配置
  3714. path: '/dctb_dskFj',
  3715. name: '福建大中型水库填报',
  3716. component: () =>
  3717. import ('../views/duChaTianBao/duChaTianBaoIndex_Fujiandsk.vue'),
  3718. haveView: true,
  3719. meta: {
  3720. title: 'dashboard',
  3721. icon: 'dashboard',
  3722. noCache: true
  3723. },
  3724. haveSubMenu: true,
  3725. },
  3726. {
  3727. path: '/dctb_lh',
  3728. name: '量化评分填报',
  3729. component: () =>
  3730. import ('../views/duChaTianBao/duChaTianBaoIndex_lianghua.vue'),
  3731. haveView: true,
  3732. meta: {
  3733. title: 'dashboard',
  3734. icon: 'dashboard',
  3735. noCache: true
  3736. },
  3737. haveSubMenu: true,
  3738. },
  3739. {
  3740. path: '/dctb_bzhgl',
  3741. name: '小水库标准化管理',
  3742. component: () =>
  3743. import ('../views/duChaTianBao/duChaTianBaoIndex_bzhgl.vue'),
  3744. haveView: true,
  3745. meta: {
  3746. title: 'dashboard',
  3747. icon: 'dashboard',
  3748. noCache: true
  3749. },
  3750. haveSubMenu: true,
  3751. },
  3752. {
  3753. // 水毁查询
  3754. path: '/dctb_sh',
  3755. name: '水毁填报',
  3756. component: () =>
  3757. import ('../views/duChaTianBao/duChaTianBaoIndex_shuihui.vue'),
  3758. haveView: true,
  3759. meta: {
  3760. title: 'dashboard',
  3761. icon: 'dashboard',
  3762. noCache: true
  3763. },
  3764. haveSubMenu: true,
  3765. },
  3766. {
  3767. path: '/dctb_dxs',
  3768. name: '地下水填报',
  3769. component: () =>
  3770. import ('../views/duChaTianBao/duChaTianBaoIndex_dixiashui.vue'),
  3771. haveView: true,
  3772. meta: {
  3773. title: 'dashboard',
  3774. icon: 'dashboard',
  3775. noCache: true
  3776. },
  3777. haveSubMenu: true,
  3778. },
  3779. {
  3780. path: '/dctb_gc',
  3781. name: '172工程建设填报',
  3782. component: () =>
  3783. import ('../views/duChaTianBao/duChaTianBaoIndex_gongcheng.vue'),
  3784. haveView: true,
  3785. meta: {
  3786. title: 'dashboard',
  3787. icon: 'dashboard',
  3788. noCache: true
  3789. },
  3790. haveSubMenu: true,
  3791. },
  3792. {
  3793. path: '/dctb_slgcjsaqsc',
  3794. name: '水利工程建设安全生产填报',
  3795. component: () =>
  3796. import ('../views/duChaTianBao/duChaTianBaoIndex_slgcjsaqsc.vue'),
  3797. haveView: true,
  3798. meta: {
  3799. title: 'dashboard',
  3800. icon: 'dashboard',
  3801. noCache: true
  3802. },
  3803. haveSubMenu: true,
  3804. },
  3805. {
  3806. path: '/dctb_slgcjszljj',
  3807. name: '水利工程建设质量检测填报',
  3808. component: () =>
  3809. import ('../views/duChaTianBao/duChaTianBaoIndex_slgcjszljj.vue'),
  3810. haveView: true,
  3811. meta: {
  3812. title: 'dashboard',
  3813. icon: 'dashboard',
  3814. noCache: true
  3815. },
  3816. haveSubMenu: true,
  3817. },
  3818. {
  3819. path: '/dctb_yx',
  3820. name: '172工程运行填报',
  3821. component: () =>
  3822. import ('../views/duChaTianBao/duChaTianBaoIndex_yunxing.vue'),
  3823. haveView: true,
  3824. meta: {
  3825. title: 'dashboard',
  3826. icon: 'dashboard',
  3827. noCache: true
  3828. },
  3829. haveSubMenu: true,
  3830. },
  3831. {
  3832. path: '/dctb_sz',
  3833. name: '水闸填报',
  3834. component: () =>
  3835. import ('../views/duChaTianBao/dctb_sz'),
  3836. haveView: true,
  3837. meta: {
  3838. title: 'dashboard',
  3839. icon: 'dashboard',
  3840. noCache: true
  3841. },
  3842. haveSubMenu: true,
  3843. },
  3844. {
  3845. path: '/dctb_bxzzqlaq',
  3846. name: '病险闸站桥梁安全填报',
  3847. component: () =>
  3848. import ('../views/duChaTianBao/dctb_bxzzqlaq'),
  3849. haveView: true,
  3850. meta: {
  3851. title: 'dashboard',
  3852. icon: 'dashboard',
  3853. noCache: true
  3854. },
  3855. haveSubMenu: true,
  3856. },
  3857. {
  3858. path: '/dcwt_bxzzqlaq',
  3859. name: '病险闸站桥梁安全填报',
  3860. component: () =>
  3861. import ('../views/duChaWenTi/dcwt_bxzzqlaq.vue'),
  3862. haveView: true,
  3863. meta: {
  3864. title: 'dashboard',
  3865. icon: 'dashboard',
  3866. noCache: true
  3867. },
  3868. haveSubMenu: true,
  3869. },
  3870. {
  3871. // 特定飞检督查填报
  3872. path: '/dctb_tdfj',
  3873. name: '特定飞检填报',
  3874. component: () =>
  3875. import ('../views/duChaTianBao/duChaTianBaoIndex_tdfj.vue'),
  3876. haveView: true,
  3877. meta: {
  3878. title: 'dashboard',
  3879. icon: 'dashboard',
  3880. noCache: true
  3881. },
  3882. haveSubMenu: true,
  3883. },
  3884. {
  3885. // 其他督查填报
  3886. path: '/dctb_qt',
  3887. name: '其他填报',
  3888. component: () =>
  3889. import ('../views/duChaTianBao/duChaTianBaoIndex_qt.vue'),
  3890. haveView: true,
  3891. meta: {
  3892. title: 'dashboard',
  3893. icon: 'dashboard',
  3894. noCache: true
  3895. },
  3896. haveSubMenu: true,
  3897. },
  3898. {
  3899. // 浙江强监管
  3900. path: '/dctb_zjqjg',
  3901. name: '浙江强监管',
  3902. component: () =>
  3903. import ('../views/duChaTianBao/duChaTianBaoIndex_zjqjg.vue'),
  3904. haveView: true,
  3905. meta: {
  3906. title: 'dashboard',
  3907. icon: 'dashboard',
  3908. noCache: true
  3909. },
  3910. haveSubMenu: true,
  3911. },
  3912. {
  3913. path: '/dctb_ydb',
  3914. name: '淤地坝督查填报',
  3915. component: () =>
  3916. import ('../views/duChaTianBao/duChaTianBaoIndex_yudiba.vue'),
  3917. haveView: true,
  3918. meta: {
  3919. title: 'dashboard',
  3920. icon: 'dashboard',
  3921. noCache: true
  3922. },
  3923. haveSubMenu: true,
  3924. },
  3925. {
  3926. path: '/dctb_qsk',
  3927. name: '取水口督查填报',
  3928. component: () =>
  3929. import ('../views/duChaTianBao/duChaTianBaoIndex_qushuikou.vue'),
  3930. haveView: true,
  3931. meta: {
  3932. title: 'dashboard',
  3933. icon: 'dashboard',
  3934. noCache: true
  3935. },
  3936. haveSubMenu: true,
  3937. },
  3938. {
  3939. path: '/dctb_syd',
  3940. name: '水源地督查填报',
  3941. component: () =>
  3942. import ('../views/duChaTianBao/duChaTianBaoIndex_syd.vue'),
  3943. haveView: true,
  3944. meta: {
  3945. title: 'dashboard',
  3946. icon: 'dashboard',
  3947. noCache: true
  3948. },
  3949. haveSubMenu: true,
  3950. },
  3951. {
  3952. path: '/dctb_slfp',
  3953. name: '水量分配及取用水管控填报',
  3954. component: () =>
  3955. import ('../views/duChaTianBao/duChaTianBaoIndex_slfp.vue'),
  3956. haveView: true,
  3957. meta: {
  3958. title: 'dashboard',
  3959. icon: 'dashboard',
  3960. noCache: true
  3961. },
  3962. haveSubMenu: true,
  3963. },
  3964. {
  3965. path: '/dctb_ysdw',
  3966. name: '用水单位督查填报',
  3967. component: () =>
  3968. import ('../views/duChaTianBao/duChaTianBaoIndex_yongshuidw.vue'),
  3969. haveView: true,
  3970. meta: {
  3971. title: 'dashboard',
  3972. icon: 'dashboard',
  3973. noCache: true
  3974. },
  3975. haveSubMenu: true,
  3976. },
  3977. {
  3978. path: '/dctb_jieshui',
  3979. name: '节水管理与评价填报',
  3980. component: () =>
  3981. import ('../views/duChaTianBao/duChaTianBaoIndex_jieshui.vue'),
  3982. haveView: true,
  3983. meta: {
  3984. title: 'dashboard',
  3985. icon: 'dashboard',
  3986. noCache: true
  3987. },
  3988. haveSubMenu: true,
  3989. },
  3990. {
  3991. path: '/dctb_shuibao',
  3992. name: '水保填报',
  3993. component: () =>
  3994. import ('../views/duChaTianBao/duChaTianBaoIndex_shuibao.vue'),
  3995. haveView: true,
  3996. meta: {
  3997. title: 'dashboard',
  3998. icon: 'dashboard',
  3999. noCache: true
  4000. },
  4001. haveSubMenu: true,
  4002. },
  4003. {
  4004. path: '/dctb_lake',
  4005. name: '河湖四乱填报',
  4006. component: () =>
  4007. import ('../views/duChaTianBao/duChaTianBaoIndex_siluan.vue'),
  4008. haveView: true,
  4009. meta: {
  4010. title: 'dashboard',
  4011. icon: 'dashboard',
  4012. noCache: true
  4013. },
  4014. haveSubMenu: true,
  4015. },
  4016. {
  4017. path: '/dctb_sandControl',
  4018. name: '水政项目填报',
  4019. component: () =>
  4020. import ('../views/duChaTianBao/duChaTianBaoIndex_zhisha.vue'),
  4021. haveView: true,
  4022. meta: {
  4023. title: 'dashboard',
  4024. icon: 'dashboard',
  4025. noCache: true
  4026. },
  4027. haveSubMenu: true,
  4028. },
  4029. {
  4030. path: '/dctb_zyhbdc',
  4031. name: '中央环保督查填报',
  4032. component: () =>
  4033. import ('../views/duChaTianBao/duChaTianBaoIndex_zyhbdc.vue'),
  4034. haveView: true,
  4035. meta: {
  4036. title: 'dashboard',
  4037. icon: 'dashboard',
  4038. noCache: true
  4039. },
  4040. haveSubMenu: true,
  4041. },
  4042. {
  4043. path: '/dctb_htk',
  4044. name: '水库回头看',
  4045. component: () =>
  4046. import ('../views/duChaTianBao/duChaTianBaoIndex_huitoukan.vue'),
  4047. haveView: true,
  4048. meta: {
  4049. title: 'dashboard',
  4050. icon: 'dashboard',
  4051. noCache: true
  4052. },
  4053. haveSubMenu: true,
  4054. },
  4055. {
  4056. path: '/dctb_zxskhtk',
  4057. name: '中型水库回头看',
  4058. component: () =>
  4059. import ('../views/duChaTianBao/duChaTianBaoIndex_zxskhuitoukan.vue'),
  4060. haveView: true,
  4061. meta: {
  4062. title: 'dashboard',
  4063. icon: 'dashboard',
  4064. noCache: true
  4065. },
  4066. haveSubMenu: true,
  4067. },
  4068. {
  4069. path: '/dctb_ryZj',
  4070. name: '人饮浙江',
  4071. component: () =>
  4072. import ('../views/duChaTianBao/duChaTianBaoIndex_renyinZj.vue'),
  4073. haveView: true,
  4074. meta: {
  4075. title: 'dashboard',
  4076. icon: 'dashboard',
  4077. noCache: true
  4078. },
  4079. haveSubMenu: true,
  4080. },
  4081. {
  4082. path: '/dctb_jsztfh',
  4083. name: '福建节水载体复核',
  4084. component: () =>
  4085. import ('../views/duChaTianBao/duChaTianBaoIndex_jsztfh.vue'),
  4086. haveView: true,
  4087. meta: {
  4088. title: 'dashboard',
  4089. icon: 'dashboard',
  4090. noCache: true
  4091. },
  4092. haveSubMenu: true,
  4093. },
  4094. {
  4095. path: '/dctb_qsxk',
  4096. name: '青海取水许可',
  4097. component: () =>
  4098. import ('../views/duChaTianBao/duChaTianBaoIndex_qsxk.vue'),
  4099. haveView: true,
  4100. meta: {
  4101. title: 'dashboard',
  4102. icon: 'dashboard',
  4103. noCache: true
  4104. },
  4105. haveSubMenu: true,
  4106. },
  4107. {
  4108. path: '/dctb_aqscssjygk',
  4109. name: '安全生产双随机一公开',
  4110. component: () =>
  4111. import ('../views/duChaTianBao/duChaTianBaoIndex_aqscssjygk.vue'),
  4112. haveView: true,
  4113. meta: {
  4114. title: 'dashboard',
  4115. icon: 'dashboard',
  4116. noCache: true
  4117. },
  4118. haveSubMenu: true,
  4119. },
  4120. {
  4121. path: '/dctb_sxzbmaqscxj',
  4122. name: '水行政部门安全生产巡检',
  4123. component: () =>
  4124. import ('../views/duChaTianBao/duChaTianBaoIndex_sxzbmaqscxj.vue'),
  4125. haveView: true,
  4126. meta: {
  4127. title: 'dashboard',
  4128. icon: 'dashboard',
  4129. noCache: true
  4130. },
  4131. haveSubMenu: true,
  4132. },
  4133. {
  4134. path: '/dctb_hhzz',
  4135. name: '河湖长制督查填报',
  4136. component: () =>
  4137. import ('../views/duChaTianBao/duChaTianBaoIndex_hhzz.vue'),
  4138. haveView: true,
  4139. meta: {
  4140. title: 'dashboard',
  4141. icon: 'dashboard',
  4142. noCache: true
  4143. },
  4144. haveSubMenu: true,
  4145. },
  4146. {
  4147. path: '/dctb_pwuawiu',
  4148. name: '计划用水户及取水单位督查填报',
  4149. component: () =>
  4150. import ('../views/duChaTianBao/duChaTianBaoIndex_pwuawiu.vue'),
  4151. haveView: true,
  4152. meta: {
  4153. title: 'dashboard',
  4154. icon: 'dashboard',
  4155. noCache: true
  4156. },
  4157. haveSubMenu: true,
  4158. },
  4159. {
  4160. path: '/dctb_dws',
  4161. name: '饮用水水源地督查填报',
  4162. component: () =>
  4163. import ('../views/duChaTianBao/duChaTianBaoIndex_dws.vue'),
  4164. haveView: true,
  4165. meta: {
  4166. title: 'dashboard',
  4167. icon: 'dashboard',
  4168. noCache: true
  4169. },
  4170. haveSubMenu: true,
  4171. },
  4172. {
  4173. path: '/dctb_xsksd',
  4174. name: '小水库督查填报(山东)',
  4175. component: () =>
  4176. import ('../views/duChaTianBao/duChaTianBaoIndex_xsksd.vue'),
  4177. haveView: true,
  4178. meta: {
  4179. title: 'dashboard',
  4180. icon: 'dashboard',
  4181. noCache: true
  4182. },
  4183. haveSubMenu: true,
  4184. },
  4185. {
  4186. path: '/dctb_xsdyhgl',
  4187. name: '小水电隐患管理督查填报(福建)',
  4188. component: () =>
  4189. import ('../views/duChaTianBao/duChaTianBaoIndex_xsdyhgl.vue'),
  4190. haveView: true,
  4191. meta: {
  4192. title: 'dashboard',
  4193. icon: 'dashboard',
  4194. noCache: true
  4195. },
  4196. haveSubMenu: true,
  4197. },
  4198. {
  4199. path: '/dctb_jhyshqsk',
  4200. name: '计划用水户取水口督查填报(江苏)',
  4201. component: () =>
  4202. import ('../views/duChaTianBao/duChaTianBaoIndex_jhyshqsk.vue'),
  4203. haveView: true,
  4204. meta: {
  4205. title: 'dashboard',
  4206. icon: 'dashboard',
  4207. noCache: true
  4208. },
  4209. haveSubMenu: true,
  4210. },
  4211. {
  4212. path: '/dctb_qyshqsqk',
  4213. name: '取用水户取水情况督查填报(江苏)',
  4214. component: () =>
  4215. import ('../views/duChaTianBao/duChaTianBaoIndex_qyshqsqk.vue'),
  4216. haveView: true,
  4217. meta: {
  4218. title: 'dashboard',
  4219. icon: 'dashboard',
  4220. noCache: true
  4221. },
  4222. haveSubMenu: true,
  4223. },
  4224. {
  4225. path: '/dctb_rdwpgd',
  4226. name: '农饮工程督查填报(广东)',
  4227. component: () =>
  4228. import ('../views/duChaTianBao/duChaTianBaoIndex_rdwpgd.vue'),
  4229. haveView: true,
  4230. meta: {
  4231. title: 'dashboard',
  4232. icon: 'dashboard',
  4233. noCache: true
  4234. },
  4235. haveSubMenu: true,
  4236. },
  4237. {
  4238. path: '/dctb_hhgl',
  4239. name: '河湖管理督查填报',
  4240. component: () =>
  4241. import ('../views/duChaTianBao/duChaTianBaoIndex_hhgl.vue'),
  4242. haveView: true,
  4243. meta: {
  4244. title: 'dashboard',
  4245. icon: 'dashboard',
  4246. noCache: true
  4247. },
  4248. haveSubMenu: true,
  4249. },
  4250. {
  4251. path: '/dctb_stbczdgc',
  4252. name: '水土保持重点工程督查填报',
  4253. component: () =>
  4254. import ('../views/duChaTianBao/duChaTianBaoIndex_stbczdgc.vue'),
  4255. haveView: true,
  4256. meta: {
  4257. title: 'dashboard',
  4258. icon: 'dashboard',
  4259. noCache: true
  4260. },
  4261. haveSubMenu: true,
  4262. },
  4263. {
  4264. path: '/dctb_hbdxs',
  4265. name: '河北地下水督查填报',
  4266. component: () =>
  4267. import ('../views/duChaTianBao/duChaTianBaoIndex_hbdxs.vue'),
  4268. haveView: true,
  4269. meta: {
  4270. title: 'dashboard',
  4271. icon: 'dashboard',
  4272. noCache: true
  4273. },
  4274. haveSubMenu: true,
  4275. },
  4276. {
  4277. path: '/dctb_xskcxjg',
  4278. name: '小水库除险加固督查',
  4279. component: () =>
  4280. import ('../views/duChaTianBao/duChaTianBaoIndex_xskcxjg.vue'),
  4281. haveView: true,
  4282. meta: {
  4283. title: 'dashboard',
  4284. icon: 'dashboard',
  4285. noCache: true
  4286. },
  4287. haveSubMenu: true,
  4288. },
  4289. {
  4290. path: '/dcwt_xskcxjg',
  4291. name: '小水库除险加固督查问题',
  4292. component: () =>
  4293. import ('../views/duChaWenTi/dcwt_xskcxjg.vue'),
  4294. haveView: true,
  4295. meta: {
  4296. title: 'dashboard',
  4297. icon: 'dashboard',
  4298. noCache: true
  4299. },
  4300. haveSubMenu: true,
  4301. },
  4302. {
  4303. path: '/dctb_sxzzf',
  4304. name: '水行政执法督查填报',
  4305. component: () =>
  4306. import ('../views/duChaTianBao/duChaTianBaoIndex_sxzzf.vue'),
  4307. haveView: true,
  4308. meta: {
  4309. title: 'dashboard',
  4310. icon: 'dashboard',
  4311. noCache: true
  4312. },
  4313. haveSubMenu: true,
  4314. },
  4315. {
  4316. path: '/dctb_fjsxzzf',
  4317. name: '水行政执法督查填报(福建)',
  4318. component: () =>
  4319. import ('../views/duChaTianBao/duChaTianBaoIndex_fjsxzzf.vue'),
  4320. haveView: true,
  4321. meta: {
  4322. title: 'dashboard',
  4323. icon: 'dashboard',
  4324. noCache: true
  4325. },
  4326. haveSubMenu: true,
  4327. },
  4328. {
  4329. path: '/dctb_common',
  4330. name: '通用督查填报(海南)',
  4331. component: () =>
  4332. import ('../views/duChaTianBao/duChaTianBaoIndex_common.vue'),
  4333. haveView: true,
  4334. meta: {
  4335. title: 'dashboard',
  4336. icon: 'dashboard',
  4337. noCache: true
  4338. },
  4339. haveSubMenu: true,
  4340. },
  4341. {
  4342. path: '/dctb_xyjsxsh',
  4343. name: '县域节水型社会达标建设监督',
  4344. component: () =>
  4345. import ('../views/duChaTianBao/duChaTianBaoIndex_xyjsxsh.vue'),
  4346. haveView: true,
  4347. meta: {
  4348. title: 'dashboard',
  4349. icon: 'dashboard',
  4350. noCache: true
  4351. },
  4352. haveSubMenu: true,
  4353. },
  4354. {
  4355. path: '/dctb_slzjjdjc',
  4356. name: '水利资金监督检查填报',
  4357. component: () =>
  4358. import ('../views/duChaTianBao/duChaTianBaoIndex_slzjjdjc.vue'),
  4359. haveView: true,
  4360. meta: {
  4361. title: 'dashboard',
  4362. icon: 'dashboard',
  4363. noCache: true
  4364. },
  4365. haveSubMenu: true,
  4366. },
  4367. {
  4368. path: '/dctb_cbhsfy',
  4369. name: '超标洪水防御督查填报(青海)',
  4370. component: () =>
  4371. import ('../views/duChaTianBao/duChaTianBaoIndex_cbhsfy.vue'),
  4372. haveView: true,
  4373. meta: {
  4374. title: 'dashboard',
  4375. icon: 'dashboard',
  4376. noCache: true
  4377. },
  4378. haveSubMenu: true,
  4379. },
  4380. {
  4381. path: '/dctb_shzhfy',
  4382. name: '山洪灾害防御督查填报(青海)',
  4383. component: () =>
  4384. import ('../views/duChaTianBao/duChaTianBaoIndex_shzhfy.vue'),
  4385. haveView: true,
  4386. meta: {
  4387. title: 'dashboard',
  4388. icon: 'dashboard',
  4389. noCache: true
  4390. },
  4391. haveSubMenu: true,
  4392. },
  4393. {
  4394. path: '/dctb_qhshxf',
  4395. name: '水毁修复督查填报(青海)',
  4396. component: () =>
  4397. import ('../views/duChaTianBao/duChaTianBaoIndex_qhshxf.vue'),
  4398. haveView: true,
  4399. meta: {
  4400. title: 'dashboard',
  4401. icon: 'dashboard',
  4402. noCache: true
  4403. },
  4404. haveSubMenu: true,
  4405. },
  4406. {
  4407. path: '/dctb_skfhdd',
  4408. name: '水库防洪调度督查填报(青海)',
  4409. component: () =>
  4410. import ('../views/duChaTianBao/duChaTianBaoIndex_skfhdd.vue'),
  4411. haveView: true,
  4412. meta: {
  4413. title: 'dashboard',
  4414. icon: 'dashboard',
  4415. noCache: true
  4416. },
  4417. haveSubMenu: true,
  4418. },
  4419. {
  4420. path: '/dctb_wxhxp',
  4421. name: '危险化学品使用安全督查填报',
  4422. component: () =>
  4423. import ('../views/duChaTianBao/duChaTianBaoIndex_wxhxp.vue'),
  4424. haveView: true,
  4425. meta: {
  4426. title: 'dashboard',
  4427. icon: 'dashboard',
  4428. noCache: true
  4429. },
  4430. haveSubMenu: true,
  4431. },
  4432. {
  4433. path: '/dctb_ncysaqaf',
  4434. name: '农村饮水安全暗访',
  4435. component: () =>
  4436. import ('../views/duChaTianBao/duChaTianBaoIndex_ncysaqaf.vue'),
  4437. haveView: true,
  4438. meta: {
  4439. title: 'dashboard',
  4440. icon: 'dashboard',
  4441. noCache: true
  4442. },
  4443. haveSubMenu: true,
  4444. },
  4445. {
  4446. path: '/dctb_slxmaqscxj',
  4447. name: '水利项目安全生产巡检督查填报',
  4448. component: () =>
  4449. import ('../views/duChaTianBao/duChaTianBaoIndex_slxmaqscxj.vue'),
  4450. haveView: true,
  4451. meta: {
  4452. title: 'dashboard',
  4453. icon: 'dashboard',
  4454. noCache: true
  4455. },
  4456. haveSubMenu: true,
  4457. },
  4458. {
  4459. path: '/dcwt_slxmaqscxj',
  4460. name: '水利项目安全生产巡检问题',
  4461. component: () =>
  4462. import ('../views/duChaWenTi/dcwt_slxmaqscxj.vue'),
  4463. haveView: true,
  4464. meta: {
  4465. title: 'dashboard',
  4466. icon: 'dashboard',
  4467. noCache: true
  4468. },
  4469. haveSubMenu: true,
  4470. },
  4471. {
  4472. path: '/dcwt_hhzz',
  4473. name: '河湖长制督查问题',
  4474. component: () =>
  4475. import ('../views/duChaWenTi/dcwt_hhzz.vue'),
  4476. haveView: true,
  4477. meta: {
  4478. title: 'dashboard',
  4479. icon: 'dashboard',
  4480. noCache: true
  4481. },
  4482. haveSubMenu: true,
  4483. },
  4484. {
  4485. path: '/dcwt_pwuawiu',
  4486. name: '计划用水户及取水单位问题',
  4487. component: () =>
  4488. import ('../views/duChaWenTi/dcwt_pwuawiu.vue'),
  4489. haveView: true,
  4490. meta: {
  4491. title: 'dashboard',
  4492. icon: 'dashboard',
  4493. noCache: true
  4494. },
  4495. haveSubMenu: true,
  4496. },
  4497. {
  4498. path: '/dcwt_dws',
  4499. name: '饮用水水源地问题',
  4500. component: () =>
  4501. import ('../views/duChaWenTi/dcwt_dws.vue'),
  4502. haveView: true,
  4503. meta: {
  4504. title: 'dashboard',
  4505. icon: 'dashboard',
  4506. noCache: true
  4507. },
  4508. haveSubMenu: true,
  4509. },
  4510. {
  4511. path: '/dcwt_xsksd',
  4512. name: '小水库山东督查问题',
  4513. component: () =>
  4514. import ('../views/duChaWenTi/dcwt_xsksd.vue'),
  4515. haveView: true,
  4516. meta: {
  4517. title: 'dashboard',
  4518. icon: 'dashboard',
  4519. noCache: true
  4520. },
  4521. haveSubMenu: true,
  4522. },
  4523. {
  4524. path: '/dcwt_xsdyhgl',
  4525. name: '小水电隐患管理问题',
  4526. component: () =>
  4527. import ('../views/duChaWenTi/dcwt_xsdyhgl.vue'),
  4528. haveView: true,
  4529. meta: {
  4530. title: 'dashboard',
  4531. icon: 'dashboard',
  4532. noCache: true
  4533. },
  4534. haveSubMenu: true,
  4535. },
  4536. {
  4537. path: '/dcwt_jhyshqsk',
  4538. name: '计划用水户取水口督查问题(江苏)',
  4539. component: () =>
  4540. import ('../views/duChaWenTi/dcwt_jhyshqsk.vue'),
  4541. haveView: true,
  4542. meta: {
  4543. title: 'dashboard',
  4544. icon: 'dashboard',
  4545. noCache: true
  4546. },
  4547. haveSubMenu: true,
  4548. },
  4549. {
  4550. path: '/dcwt_qyshysqk',
  4551. name: '取用水户取水情况2024(江苏)',
  4552. component: () =>
  4553. import ('../views/duChaWenTi/dcwt_qyshqsqk.vue'),
  4554. haveView: true,
  4555. meta: {
  4556. title: 'dashboard',
  4557. icon: 'dashboard',
  4558. noCache: true
  4559. },
  4560. haveSubMenu: true,
  4561. },
  4562. {
  4563. path: '/dcwt_rdwpgd',
  4564. name: '农饮工程问题(广东)',
  4565. component: () =>
  4566. import ('../views/duChaWenTi/dcwt_rdwpgd.vue'),
  4567. haveView: true,
  4568. meta: {
  4569. title: 'dashboard',
  4570. icon: 'dashboard',
  4571. noCache: true
  4572. },
  4573. haveSubMenu: true,
  4574. },
  4575. {
  4576. path: '/dcwt_common',
  4577. name: '通用督查问题',
  4578. component: () =>
  4579. import ('../views/duChaWenTi/dcwt_common.vue'),
  4580. haveView: true,
  4581. meta: {
  4582. title: 'dashboard',
  4583. icon: 'dashboard',
  4584. noCache: true
  4585. },
  4586. haveSubMenu: true,
  4587. },
  4588. {
  4589. path: '/dcwt_import',
  4590. name: '外部问题导入',
  4591. component: () =>
  4592. import ('../views/duChaWenTi/dcwt_import.vue'),
  4593. haveView: true,
  4594. meta: {
  4595. title: 'dashboard',
  4596. icon: 'dashboard',
  4597. noCache: true
  4598. },
  4599. haveSubMenu: true,
  4600. },
  4601. {
  4602. path: '/dcwt_xyjsxsh',
  4603. name: '县域节水型社会达标建设监督督查问题',
  4604. component: () =>
  4605. import ('../views/duChaWenTi/dcwt_xyjsxsh.vue'),
  4606. haveView: true,
  4607. meta: {
  4608. title: 'dashboard',
  4609. icon: 'dashboard',
  4610. noCache: true
  4611. },
  4612. haveSubMenu: true,
  4613. },
  4614. {
  4615. path: '/dcwt_slzjjdjc',
  4616. name: '水利资金监督检查督查问题',
  4617. component: () =>
  4618. import ('../views/duChaWenTi/dcwt_slzjjdjc.vue'),
  4619. haveView: true,
  4620. meta: {
  4621. title: 'dashboard',
  4622. icon: 'dashboard',
  4623. noCache: true
  4624. },
  4625. haveSubMenu: true,
  4626. },
  4627. {
  4628. path: '/dcwt_hhgl',
  4629. name: '河湖管理督查问题',
  4630. component: () =>
  4631. import ('../views/duChaWenTi/dcwt_hhgl.vue'),
  4632. haveView: true,
  4633. meta: {
  4634. title: 'dashboard',
  4635. icon: 'dashboard',
  4636. noCache: true
  4637. },
  4638. haveSubMenu: true,
  4639. },
  4640. {
  4641. path: '/dcwt_stbczdgc',
  4642. name: '水土保持重点工程督查问题',
  4643. component: () =>
  4644. import ('../views/duChaWenTi/dcwt_stbczdgc.vue'),
  4645. haveView: true,
  4646. meta: {
  4647. title: 'dashboard',
  4648. icon: 'dashboard',
  4649. noCache: true
  4650. },
  4651. haveSubMenu: true,
  4652. },
  4653. {
  4654. path: '/dcwt_hbdxs',
  4655. name: '河北地下水督查问题',
  4656. component: () =>
  4657. import ('../views/duChaWenTi/dcwt_hbdxs.vue'),
  4658. haveView: true,
  4659. meta: {
  4660. title: 'dashboard',
  4661. icon: 'dashboard',
  4662. noCache: true
  4663. },
  4664. haveSubMenu: true,
  4665. },
  4666. {
  4667. path: '/dcwt_sxzzf',
  4668. name: '水行政执法问题',
  4669. component: () =>
  4670. import ('../views/duChaWenTi/dcwt_sxzzf.vue'),
  4671. haveView: true,
  4672. meta: {
  4673. title: 'dashboard',
  4674. icon: 'dashboard',
  4675. noCache: true
  4676. },
  4677. haveSubMenu: true,
  4678. },
  4679. {
  4680. path: '/dcwt_fjsxzzf',
  4681. name: '水行政执法问题(福建)',
  4682. component: () =>
  4683. import ('../views/duChaWenTi/dcwt_fjsxzzf.vue'),
  4684. haveView: true,
  4685. meta: {
  4686. title: 'dashboard',
  4687. icon: 'dashboard',
  4688. noCache: true
  4689. },
  4690. haveSubMenu: true,
  4691. },
  4692. {
  4693. path: '/dcwt_cbhsfy',
  4694. name: '超标洪水防御问题',
  4695. component: () =>
  4696. import ('../views/duChaWenTi/dcwt_cbhsfy.vue'),
  4697. haveView: true,
  4698. meta: {
  4699. title: 'dashboard',
  4700. icon: 'dashboard',
  4701. noCache: true
  4702. },
  4703. haveSubMenu: true,
  4704. },
  4705. {
  4706. path: '/dcwt_skfhdd',
  4707. name: '超标洪水防御问题',
  4708. component: () =>
  4709. import ('../views/duChaWenTi/dcwt_skfhdd.vue'),
  4710. haveView: true,
  4711. meta: {
  4712. title: 'dashboard',
  4713. icon: 'dashboard',
  4714. noCache: true
  4715. },
  4716. haveSubMenu: true,
  4717. },
  4718. {
  4719. path: '/dcwt_shzhfy',
  4720. name: '山洪灾害防御问题',
  4721. component: () =>
  4722. import ('../views/duChaWenTi/dcwt_shzhfy.vue'),
  4723. haveView: true,
  4724. meta: {
  4725. title: 'dashboard',
  4726. icon: 'dashboard',
  4727. noCache: true
  4728. },
  4729. haveSubMenu: true,
  4730. },
  4731. {
  4732. path: '/dcwt_qhshxf',
  4733. name: '水毁修复问题',
  4734. component: () =>
  4735. import ('../views/duChaWenTi/dcwt_qhshxf.vue'),
  4736. haveView: true,
  4737. meta: {
  4738. title: 'dashboard',
  4739. icon: 'dashboard',
  4740. noCache: true
  4741. },
  4742. haveSubMenu: true,
  4743. },
  4744. {
  4745. path: '/dcwt_ncysaqaf',
  4746. name: '农村饮水安全暗访督查问题',
  4747. component: () =>
  4748. import ('../views/duChaWenTi/dcwt_ncysaqaf.vue'),
  4749. haveView: true,
  4750. meta: {
  4751. title: 'dashboard',
  4752. icon: 'dashboard',
  4753. noCache: true
  4754. },
  4755. haveSubMenu: true,
  4756. },
  4757. {
  4758. path: '/dcwt_ncysaqxjbt',
  4759. name: '农村饮水安全督查问题(新疆兵团)',
  4760. component: () =>
  4761. import ('../views/duChaWenTi/duChaWenTi_ncysaqxjbt.vue'),
  4762. haveView: true,
  4763. meta: {
  4764. title: 'dashboard',
  4765. icon: 'dashboard',
  4766. noCache: true
  4767. },
  4768. haveSubMenu: true,
  4769. },
  4770. {
  4771. path: '/dcwt_wxhxp',
  4772. name: '危险化学品督查问题',
  4773. component: () =>
  4774. import ('../views/duChaWenTi/dcwt_wxhxp.vue'),
  4775. haveView: true,
  4776. meta: {
  4777. title: 'dashboard',
  4778. icon: 'dashboard',
  4779. noCache: true
  4780. },
  4781. haveSubMenu: true,
  4782. },
  4783. {
  4784. path: '/dctb_qsxkglfh',
  4785. name: '福建取水许可管理复核-河道外',
  4786. component: () =>
  4787. import ('../views/duChaTianBao/duChaTianBaoIndex_qsxkglfhhdw.vue'),
  4788. haveView: true,
  4789. meta: {
  4790. title: 'dashboard',
  4791. icon: 'dashboard',
  4792. noCache: true
  4793. },
  4794. haveSubMenu: true,
  4795. },
  4796. {
  4797. path: '/dctb_qsxkglfhsdz',
  4798. name: '福建取水许可管理复核-水电站',
  4799. component: () =>
  4800. import ('../views/duChaTianBao/duChaTianBaoIndex_qsxkglfhsdz.vue'),
  4801. haveView: true,
  4802. meta: {
  4803. title: 'dashboard',
  4804. icon: 'dashboard',
  4805. noCache: true
  4806. },
  4807. haveSubMenu: true,
  4808. },
  4809. {
  4810. path: '/dctb_szygljsgl',
  4811. name: '市级水资源管理及节水管理核实',
  4812. component: () =>
  4813. import ('../views/duChaTianBao/duChaTianBaoIndex_szygljsgl.vue'),
  4814. haveView: true,
  4815. meta: {
  4816. title: 'dashboard',
  4817. icon: 'dashboard',
  4818. noCache: true
  4819. },
  4820. haveSubMenu: true,
  4821. },
  4822. {
  4823. path: '/dctb_xjszygljsgl',
  4824. name: '县级水资源管理及节水管理核实',
  4825. component: () =>
  4826. import ('../views/duChaTianBao/duChaTianBaoIndex_xszygljsgl.vue'),
  4827. haveView: true,
  4828. meta: {
  4829. title: 'dashboard',
  4830. icon: 'dashboard',
  4831. noCache: true
  4832. },
  4833. haveSubMenu: true,
  4834. },
  4835. {
  4836. path: '/dailyPaper',
  4837. name: '日报',
  4838. component: () =>
  4839. import ('../views/export/dailyPaper.vue'),
  4840. haveView: true,
  4841. meta: {
  4842. title: 'dashboard',
  4843. icon: 'dashboard',
  4844. noCache: true
  4845. },
  4846. haveSubMenu: true,
  4847. },
  4848. {
  4849. path: '/systemLogManage',
  4850. name: '系统日志管理',
  4851. component: () =>
  4852. import ('../views/systemManage/systemLog.vue'),
  4853. haveView: true,
  4854. meta: {
  4855. title: 'dashboard',
  4856. icon: 'dashboard',
  4857. noCache: true
  4858. },
  4859. haveSubMenu: true,
  4860. },
  4861. {
  4862. path: '/notice',
  4863. name: '通知公告管理',
  4864. component: () =>
  4865. import ('../views/xiTongGuanLi/Notice.vue'),
  4866. haveView: true,
  4867. meta: {
  4868. title: 'dashboard',
  4869. icon: 'dashboard',
  4870. noCache: true
  4871. },
  4872. haveSubMenu: true,
  4873. },
  4874. {
  4875. path: '/fjdcry',
  4876. name: '附表1-督查人员情况表',
  4877. component: () =>
  4878. import ('../views/tongjibaobiao/dcry.vue'),
  4879. haveView: true,
  4880. meta: {
  4881. title: 'dashboard',
  4882. icon: 'dashboard',
  4883. noCache: true
  4884. },
  4885. haveSubMenu: true,
  4886. },
  4887. {
  4888. path: '/fjdcskfb',
  4889. name: '附表2-督查小型水库名称及分布情况表',
  4890. component: () =>
  4891. import ('../views/tongjibaobiao/dcskfb.vue'),
  4892. haveView: true,
  4893. meta: {
  4894. title: 'dashboard',
  4895. icon: 'dashboard',
  4896. noCache: true
  4897. },
  4898. haveSubMenu: true,
  4899. },
  4900. {
  4901. path: '/fjdcsk',
  4902. name: '附表3-特定飞检情况统计表',
  4903. component: () =>
  4904. import ('../views/tongjibaobiao/dcsk.vue'),
  4905. haveView: true,
  4906. meta: {
  4907. title: 'dashboard',
  4908. icon: 'dashboard',
  4909. noCache: true
  4910. },
  4911. haveSubMenu: true,
  4912. },
  4913. {
  4914. path: '/fjdcfxwt',
  4915. name: '附表4-督查发现问题汇总表',
  4916. component: () =>
  4917. import ('../views/tongjibaobiao/dcfxwt.vue'),
  4918. haveView: true,
  4919. meta: {
  4920. title: 'dashboard',
  4921. icon: 'dashboard',
  4922. noCache: true
  4923. },
  4924. haveSubMenu: true,
  4925. },
  4926. {
  4927. path: '/fjzrzjjy',
  4928. name: '附表5-责任追究建议表',
  4929. component: () =>
  4930. import ('../views/tongjibaobiao/zrzjjy.vue'),
  4931. haveView: true,
  4932. meta: {
  4933. title: 'dashboard',
  4934. icon: 'dashboard',
  4935. noCache: true
  4936. },
  4937. haveSubMenu: true,
  4938. },
  4939. {
  4940. path: '/fjdcdj',
  4941. name: '附表6-登记表',
  4942. component: () =>
  4943. import ('../views/tongjibaobiao/dcdj.vue'),
  4944. haveView: true,
  4945. meta: {
  4946. title: 'dashboard',
  4947. icon: 'dashboard',
  4948. noCache: true
  4949. },
  4950. haveSubMenu: true,
  4951. },
  4952. {
  4953. path: '/dcwztz',
  4954. name: '督查问责通知',
  4955. component: () =>
  4956. import ('../views/duChaZhengGai/rectificationNotice_wz.vue'),
  4957. haveView: true,
  4958. meta: {
  4959. title: 'dashboard',
  4960. icon: 'dashboard',
  4961. noCache: true
  4962. },
  4963. haveSubMenu: true,
  4964. },
  4965. {
  4966. path: '/jcwztz',
  4967. name: '稽察问责通知',
  4968. component: () =>
  4969. import ('../views/duChaZhengGai/jrectificationNotice_wz.vue'),
  4970. haveView: true,
  4971. meta: {
  4972. title: 'dashboard',
  4973. icon: 'dashboard',
  4974. noCache: true
  4975. },
  4976. haveSubMenu: true,
  4977. },
  4978. {
  4979. path: '/dczgtz',
  4980. name: '督查整改通知',
  4981. component: () =>
  4982. import ('../views/duChaZhengGai/rectificationNotice.vue'),
  4983. haveView: true,
  4984. meta: {
  4985. title: 'dashboard',
  4986. icon: 'dashboard',
  4987. noCache: true
  4988. },
  4989. haveSubMenu: true,
  4990. },
  4991. {
  4992. path: '/dczgsh',
  4993. name: '督查整改审核',
  4994. component: () =>
  4995. import ('../views/duChaZhengGai/rectificationNotice_st.vue'),
  4996. haveView: true,
  4997. meta: {
  4998. title: 'dashboard',
  4999. icon: 'dashboard',
  5000. noCache: true
  5001. },
  5002. haveSubMenu: true,
  5003. },
  5004. {
  5005. path: '/dczgtz_sx',
  5006. name: '督查市区整改通知',
  5007. component: () =>
  5008. import ('../views/duChaZhengGai/correctiveFeedback.vue'),
  5009. haveView: true,
  5010. meta: {
  5011. title: 'dashboard',
  5012. icon: 'dashboard',
  5013. noCache: true
  5014. },
  5015. haveSubMenu: true,
  5016. },
  5017. {
  5018. path: '/dczgsh_sx',
  5019. name: '督查市区整改审核',
  5020. component: () =>
  5021. import ('../views/duChaZhengGai/correctiveFeedback_st.vue'),
  5022. haveView: true,
  5023. meta: {
  5024. title: 'dashboard',
  5025. icon: 'dashboard',
  5026. noCache: true
  5027. },
  5028. haveSubMenu: true,
  5029. },
  5030. {
  5031. path: '/dczgfk_sx',
  5032. name: '督查市区整改反馈',
  5033. component: () =>
  5034. import ('../views/duChaZhengGai/correctiveFeedbackFanKui_st.vue'),
  5035. haveView: true,
  5036. meta: {
  5037. title: 'dashboard',
  5038. icon: 'dashboard',
  5039. noCache: true
  5040. },
  5041. haveSubMenu: true,
  5042. },
  5043. // 整改New record by thy
  5044. {
  5045. path: '/sdcc',
  5046. name: '省监督处',
  5047. component: () =>
  5048. import('../views/duChaZhengGaiNew/sddcNotice.vue'),
  5049. haveView: true,
  5050. meta: {
  5051. title: 'dashboard',
  5052. icon: 'dashboard',
  5053. noCache: true
  5054. },
  5055. haveSubMenu: true,
  5056. },
  5057. {
  5058. path: '/RectificationSelectPblm',
  5059. name: '业务处室整改问题选择',
  5060. component: () =>
  5061. import('../views/duChaZhengGaiNew/RectificationNew.vue'),
  5062. haveView: true,
  5063. meta: {
  5064. title: 'dashboard',
  5065. icon: 'dashboard',
  5066. noCache: true
  5067. },
  5068. haveSubMenu: true,
  5069. },
  5070. {
  5071. path: '/rectify/:type',
  5072. name: '市县自查整改台账',
  5073. component: () =>
  5074. import('../views/duChaZhengGaiNew/Rectify_cityAndCounty.vue'),
  5075. haveView: true,
  5076. meta: {
  5077. title: 'dashboard',
  5078. icon: 'dashboard',
  5079. noCache: true
  5080. },
  5081. haveSubMenu: true,
  5082. },
  5083. {
  5084. path: '/jc_wtzg',
  5085. name: '稽察整改启动',
  5086. component: () =>
  5087. import('../views/duChaZhengGaiNew/RectificationNew_jc.vue'),
  5088. haveView: true,
  5089. meta: {
  5090. title: 'dashboard',
  5091. icon: 'dashboard',
  5092. noCache: true
  5093. },
  5094. haveSubMenu: true,
  5095. },
  5096. {
  5097. path: '/toDoTask/:type',
  5098. name: '待办',
  5099. component: () =>
  5100. import('../views/toDoTask/toDoTaskPage.vue'),
  5101. haveView: true,
  5102. meta: {
  5103. title: 'dashboard',
  5104. icon: 'dashboard',
  5105. noCache: true
  5106. },
  5107. haveSubMenu: true,
  5108. },
  5109. {
  5110. path: '/zzjgtz',
  5111. name: '待办',
  5112. component: () =>
  5113. import('../views/toDoTask/zzjgtz.vue'),
  5114. haveView: true,
  5115. meta: {
  5116. title: 'dashboard',
  5117. icon: 'dashboard',
  5118. noCache: true
  5119. },
  5120. haveSubMenu: true,
  5121. },
  5122. {
  5123. path: '/jc_toTask/:type',
  5124. name: '待办',
  5125. component: () =>
  5126. import('../views/toDoTask/toDoTaskPage.vue'),
  5127. haveView: true,
  5128. meta: {
  5129. title: 'dashboard',
  5130. icon: 'dashboard',
  5131. noCache: true
  5132. },
  5133. haveSubMenu: true,
  5134. },
  5135. {
  5136. path: '/jdcshxf',
  5137. name: '监督处审核下发',
  5138. component: () =>
  5139. import('../views/duChaZhengGaiNew/supervisionAudit.vue'),
  5140. haveView: true,
  5141. meta: {
  5142. title: 'dashboard',
  5143. icon: 'dashboard',
  5144. noCache: true
  5145. },
  5146. haveSubMenu: true,
  5147. },
  5148. {
  5149. path: '/cityFllow',
  5150. name: '市督查反馈或下发到县',
  5151. component: () =>
  5152. import('../views/duChaZhengGaiNew/citySupervisionAudit.vue'),
  5153. haveView: true,
  5154. meta: {
  5155. title: 'dashboard',
  5156. icon: 'dashboard',
  5157. noCache: true
  5158. },
  5159. haveSubMenu: true,
  5160. },
  5161. {
  5162. path: '/countryFllow',
  5163. name: '县整改',
  5164. component: () =>
  5165. import('../views/duChaZhengGaiNew/countrySupervisionAudit.vue'),
  5166. haveView: true,
  5167. meta: {
  5168. title: 'dashboard',
  5169. icon: 'dashboard',
  5170. noCache: true
  5171. },
  5172. haveSubMenu: true,
  5173. },
  5174. {
  5175. path: '/zgFllow',
  5176. name: '整改工作流',
  5177. component: () =>
  5178. import('../views/zgFllow/flowWork.vue'),
  5179. haveView: true,
  5180. meta: {
  5181. title: 'dashboard',
  5182. icon: 'dashboard',
  5183. noCache: true
  5184. },
  5185. haveSubMenu: true,
  5186. },
  5187. {
  5188. path: '/xskwtqdzgqk',
  5189. name: '小水库问题清单整改情况管理',
  5190. component: () =>
  5191. import('../views/duChaZhengGaiNew/rsvrPblmListZhengGai.vue'),
  5192. haveView: true,
  5193. meta: {
  5194. title: 'dashboard',
  5195. icon: 'dashboard',
  5196. noCache: true
  5197. },
  5198. haveSubMenu: true,
  5199. },
  5200. {
  5201. path: '/ywcs',
  5202. name: '业务处室',
  5203. component: () =>
  5204. import ('../views/duChaZhengGaiNew/ywcsNotice.vue'),
  5205. haveView: true,
  5206. meta: {
  5207. title: 'dashboard',
  5208. icon: 'dashboard',
  5209. noCache: true
  5210. },
  5211. haveSubMenu: true,
  5212. },
  5213. {
  5214. path: '/sjdw',
  5215. name: '市级单位',
  5216. component: () =>
  5217. import ('../views/duChaZhengGaiNew/sjdwNotice.vue'),
  5218. haveView: true,
  5219. meta: {
  5220. title: 'dashboard',
  5221. icon: 'dashboard',
  5222. noCache: true
  5223. },
  5224. haveSubMenu: true,
  5225. },
  5226. {
  5227. path: '/xjdw',
  5228. name: '县级单位',
  5229. component: () =>
  5230. import ('../views/duChaZhengGaiNew/xjdwNotice.vue'),
  5231. haveView: true,
  5232. meta: {
  5233. title: 'dashboard',
  5234. icon: 'dashboard',
  5235. noCache: true
  5236. },
  5237. haveSubMenu: true,
  5238. },
  5239. // 帮助链接
  5240. {
  5241. path: '/duchahelp',
  5242. name: '督查填报帮助',
  5243. component: () =>
  5244. import ('../views/helpLink/duChaHelp.vue'),
  5245. haveView: true,
  5246. meta: {
  5247. title: 'dashboard',
  5248. icon: 'dashboard',
  5249. noCache: true
  5250. },
  5251. haveSubMenu: false
  5252. },
  5253. {
  5254. path: '/duChaJiHuaHelp',
  5255. name: '督查计划管理帮助',
  5256. component: () =>
  5257. import ('../views/helpLink/duChaJiHuaHelp.vue'),
  5258. haveView: true,
  5259. meta: {
  5260. title: 'dashboard',
  5261. icon: 'dashboard',
  5262. noCache: true
  5263. },
  5264. haveSubMenu: false
  5265. },
  5266. {
  5267. path: '/wenTiChuZhiHelp',
  5268. name: '问题处置帮助',
  5269. component: () =>
  5270. import ('../views/helpLink/wenTiChuZhiHelp.vue'),
  5271. haveView: true,
  5272. meta: {
  5273. title: 'dashboard',
  5274. icon: 'dashboard',
  5275. noCache: true
  5276. },
  5277. haveSubMenu: false
  5278. },
  5279. {
  5280. path: '/gongZuoChengGuo',
  5281. name: '工作成果帮助',
  5282. component: () =>
  5283. import ('../views/helpLink/gongZuoChengGuo.vue'),
  5284. haveView: true,
  5285. meta: {
  5286. title: 'dashboard',
  5287. icon: 'dashboard',
  5288. noCache: true
  5289. },
  5290. haveSubMenu: false
  5291. },
  5292. {
  5293. path: '/skfhHelp',
  5294. name: '水库防洪调度督查填报帮助',
  5295. component: () =>
  5296. import ('../views/helpLink/skfhHelp.vue'),
  5297. haveView: true,
  5298. meta: {
  5299. title: 'dashboard',
  5300. icon: 'dashboard',
  5301. noCache: true
  5302. },
  5303. haveSubMenu: false
  5304. },
  5305. {
  5306. path: '/shzhHelp',
  5307. name: '山洪灾害防御督查填报帮助',
  5308. component: () =>
  5309. import ('../views/helpLink/shzhHelp.vue'),
  5310. haveView: true,
  5311. meta: {
  5312. title: 'dashboard',
  5313. icon: 'dashboard',
  5314. noCache: true
  5315. },
  5316. haveSubMenu: false
  5317. },
  5318. // 稽查帮助
  5319. {
  5320. path: '/jiChaGZAPHelp',
  5321. name: '工作安排帮助',
  5322. component: () =>
  5323. import ('../views/helpLink/jiChaGZAPHelp.vue'),
  5324. haveView: true,
  5325. meta: {
  5326. title: 'dashboard',
  5327. icon: 'dashboard',
  5328. noCache: true
  5329. },
  5330. haveSubMenu: false
  5331. },
  5332. {
  5333. path: '/jiChaRYXPHelp',
  5334. name: '人员选派帮助',
  5335. component: () =>
  5336. import ('../views/helpLink/jiChaRYXPHelp.vue'),
  5337. haveView: true,
  5338. meta: {
  5339. title: 'dashboard',
  5340. icon: 'dashboard',
  5341. noCache: true
  5342. },
  5343. haveSubMenu: false
  5344. },
  5345. {
  5346. path: '/jiChaTBHelp',
  5347. name: '稽查填报帮助',
  5348. component: () =>
  5349. import ('../views/helpLink/jiChaTBHelp.vue'),
  5350. haveView: true,
  5351. meta: {
  5352. title: 'dashboard',
  5353. icon: 'dashboard',
  5354. noCache: true
  5355. },
  5356. haveSubMenu: false
  5357. },
  5358. {
  5359. path: '/jiChaJLGLHelp',
  5360. name: '批量简历关联帮助',
  5361. component: () =>
  5362. import ('../views/helpLink/jiChaJLGLHelp.vue'),
  5363. haveView: true,
  5364. meta: {
  5365. title: 'dashboard',
  5366. icon: 'dashboard',
  5367. noCache: true
  5368. },
  5369. haveSubMenu: false
  5370. },
  5371. {
  5372. path: '/jiChaBoHuiHelp',
  5373. name: '驳回帮助',
  5374. component: () =>
  5375. import ('../views/helpLink/jiChaBoHuiHelp.vue'),
  5376. haveView: true,
  5377. meta: {
  5378. title: 'dashboard',
  5379. icon: 'dashboard',
  5380. noCache: true
  5381. },
  5382. haveSubMenu: false
  5383. }
  5384. ]
  5385. },
  5386. {
  5387. path: '/xtgl',
  5388. name: '系统管理',
  5389. // redirect: 'szygl',
  5390. component: mainPage,
  5391. haveView: false,
  5392. haveSubMenu: true,
  5393. children: [{
  5394. path: '/xtgl',
  5395. name: '系统',
  5396. component: menuRouterView,
  5397. haveView: false,
  5398. haveSubMenu: true,
  5399. children: [{
  5400. path: '/xtgl/cdgl',
  5401. name: '菜单管理',
  5402. component: () =>
  5403. import ('../views/xiTongGuanLi/menuView.vue'),
  5404. haveView: true,
  5405. haveSubMenu: false,
  5406. }, {
  5407. path: '/xtgl/qxgl',
  5408. name: '权限管理',
  5409. component: () =>
  5410. import ('../views/xiTongGuanLi/jurisdictionManage.vue'),
  5411. haveView: true,
  5412. haveSubMenu: false,
  5413. }, {
  5414. path: '/xtgl/yhgl',
  5415. name: '用户管理',
  5416. component: () =>
  5417. import ('../views/xiTongGuanLi/userManageView.vue'),
  5418. haveView: true,
  5419. haveSubMenu: false,
  5420. }, {
  5421. path: '/xtgl/jgyhgl',
  5422. name: '机构用户管理',
  5423. component: () =>
  5424. import ('../views/xiTongGuanLi/userManageForOrgan.vue'),
  5425. haveView: true,
  5426. haveSubMenu: false,
  5427. },
  5428. {
  5429. path: '/xtgl/jsgl',
  5430. name: '角色管理',
  5431. component: () =>
  5432. import ('../views/xiTongGuanLi/roleManageView.vue'),
  5433. haveView: true,
  5434. haveSubMenu: false,
  5435. },
  5436. {
  5437. path: '/xtgl/roomManage',
  5438. name: '会议室管理',
  5439. component: () =>
  5440. import ('../views/xiTongGuanLi/conferenceRoomManage.vue'),
  5441. haveView: true,
  5442. haveSubMenu: false,
  5443. }, {
  5444. path: '/xtgl/meeting',
  5445. name: '会议管理',
  5446. component: () =>
  5447. import ('../views/xiTongGuanLi/meetingManage.vue'),
  5448. haveView: true,
  5449. haveSubMenu: false,
  5450. }, {
  5451. path: '/xtgl/organ',
  5452. name: '机构管理',
  5453. component: () =>
  5454. import ('../views/xiTongGuanLi/organManageNew.vue'),
  5455. haveView: true,
  5456. haveSubMenu: false,
  5457. }]
  5458. }]
  5459. },
  5460. {
  5461. path: '/rygl',
  5462. name: '人员管理',
  5463. component: mainPage,
  5464. haveView: true,
  5465. haveSubMenu: false,
  5466. children: [
  5467. {
  5468. path: '/rygl/jcxx',
  5469. name: '基本信息',
  5470. component: () =>
  5471. import ('../views/renYuanGuanLi/renYuanChaXunTongJi/jichuxinxi.vue'),
  5472. haveView: true,
  5473. haveSubMenu: false,
  5474. },
  5475. {
  5476. path: '/rygl/jcqk',
  5477. name: '稽察人员情况',
  5478. component: () =>
  5479. import ('../views/renYuanGuanLi/renYuanChaXunTongJi/jichaqingkuang.vue'),
  5480. haveView: true,
  5481. haveSubMenu: false,
  5482. },
  5483. {
  5484. path: '/rygl/ryxp',
  5485. name: '人员选派',
  5486. component: () =>
  5487. import ('../views/renYuanGuanLi/renYuanChaXunTongJi/renyuanxuanpai.vue'),
  5488. haveView: true,
  5489. meta: {
  5490. title: 'dashboard',
  5491. icon: 'dashboard',
  5492. noCache: true
  5493. },
  5494. haveSubMenu: true,
  5495. },
  5496. {
  5497. path: '/flgl/plgl',
  5498. name: '分类管理',
  5499. component: () =>
  5500. import ('../views/renYuanGuanLi/fenLeiGuanLi/piLiangGuanLi.vue'),
  5501. haveView: true,
  5502. meta: {
  5503. title: 'dashboard',
  5504. icon: 'dashboard',
  5505. noCache: true
  5506. },
  5507. haveSubMenu: true,
  5508. },
  5509. {
  5510. path: '/flgl/wjcyy',
  5511. name: '未稽察原因',
  5512. component: () =>
  5513. import ('../views/renYuanGuanLi/fenLeiGuanLi/weiJiChaRenYuan.vue'),
  5514. haveView: true,
  5515. meta: {
  5516. title: 'dashboard',
  5517. icon: 'dashboard',
  5518. noCache: true
  5519. },
  5520. haveSubMenu: true,
  5521. },
  5522. {
  5523. path: '/jcjl',
  5524. name: '稽察记录修改',
  5525. component: () =>
  5526. import ('../views/renYuanGuanLi/shuJuWeiHu/jiChaJiLu.vue'),
  5527. haveView: true,
  5528. meta: {
  5529. title: 'dashboard',
  5530. icon: 'dashboard',
  5531. noCache: true
  5532. },
  5533. haveSubMenu: true,
  5534. },
  5535. {
  5536. path: '/rygl/rytj/jcqk',
  5537. name: '稽察情况',
  5538. component: () =>
  5539. import ('../views/renYuanGuanLi/renYuanChaXunTongJi/jichaqingkuang.vue'),
  5540. haveView: true,
  5541. haveSubMenu: false,
  5542. },
  5543. {
  5544. path: '/sttj/ryxx',
  5545. name: '省厅推荐',
  5546. component: () =>
  5547. import('../views/renYuanGuanLi/shengTingTuiJian/renyuanxinxi.vue'),
  5548. haveView: true,
  5549. meta: {
  5550. title: 'dashboard',
  5551. icon: 'dashboard',
  5552. noCache: true
  5553. },
  5554. haveSubMenu: true,
  5555. },
  5556. {
  5557. path: '/sttj/rytj',
  5558. name: '省厅人员推荐',
  5559. component: () =>
  5560. import('../views/renYuanGuanLi/shengTingTuiJian/shengtingtuijian.vue'),
  5561. haveView: true,
  5562. meta: {
  5563. title: 'dashboard',
  5564. icon: 'dashboard',
  5565. noCache: true
  5566. },
  5567. haveSubMenu: true,
  5568. },
  5569. {
  5570. path: '/flgl/rytj',
  5571. name: '人员推荐',
  5572. component: () =>
  5573. import('../views/renYuanGuanLi/fenLeiGuanLi/renyuantuijian.vue'),
  5574. haveView: true,
  5575. meta: {
  5576. title: 'dashboard',
  5577. icon: 'dashboard',
  5578. noCache: true
  5579. },
  5580. haveSubMenu: true,
  5581. },
  5582. // 督查问题清单管理 add by luohcenghai
  5583. {
  5584. path: '/xsk_inspection_problemlistDc',
  5585. name: '小水库问题管理',
  5586. component: () =>
  5587. import ('../views/wenTiQingDan/xsk_inspectionProblemListDc.vue'),
  5588. haveView: true,
  5589. meta: {
  5590. title: 'dashboard',
  5591. icon: 'dashboard',
  5592. noCache: true
  5593. },
  5594. haveSubMenu: true,
  5595. },
  5596. {
  5597. path: '/sz_inspection_problemlistDc',
  5598. name: '水闸问题管理',
  5599. component: () =>
  5600. import ('../views/wenTiQingDan/sz_inspectionProblemListDc.vue'),
  5601. haveView: true,
  5602. meta: {
  5603. title: 'dashboard',
  5604. icon: 'dashboard',
  5605. noCache: true
  5606. },
  5607. haveSubMenu: true,
  5608. },
  5609. {
  5610. path: '/gcjs_inspection_problemlistDc',
  5611. name: '工程建设问题管理',
  5612. component: () =>
  5613. import ('../views/wenTiQingDan/gcjs_inspectionProblemListDc.vue'),
  5614. haveView: true,
  5615. meta: {
  5616. title: 'dashboard',
  5617. icon: 'dashboard',
  5618. noCache: true
  5619. },
  5620. haveSubMenu: true,
  5621. },
  5622. {
  5623. path: '/gcyx_inspection_problemlistDc',
  5624. name: '工程运行问题管理',
  5625. component: () =>
  5626. import ('../views/wenTiQingDan/gcyx_inspectionProblemListDc.vue'),
  5627. haveView: true,
  5628. meta: {
  5629. title: 'dashboard',
  5630. icon: 'dashboard',
  5631. noCache: true
  5632. },
  5633. haveSubMenu: true,
  5634. },
  5635. {
  5636. path: '/ydb_inspection_problemlistDc',
  5637. name: '淤地坝问题管理',
  5638. component: () =>
  5639. import ('../views/wenTiQingDan/ydb_inspectionProblemListDc.vue'),
  5640. haveView: true,
  5641. meta: {
  5642. title: 'dashboard',
  5643. icon: 'dashboard',
  5644. noCache: true
  5645. },
  5646. haveSubMenu: true,
  5647. },
  5648. // 督查问题查看
  5649. {
  5650. path: '/inspection_problemviewDcXsk',
  5651. name: '小水库问题查看',
  5652. component: () =>
  5653. import ('../views/wenTiQingDan/viewProblemListDcXsk.vue'),
  5654. haveView: true,
  5655. meta: {
  5656. title: 'dashboard',
  5657. icon: 'dashboard',
  5658. noCache: true
  5659. },
  5660. haveSubMenu: true,
  5661. },
  5662. {
  5663. path: '/inspection_problemviewDcSz',
  5664. name: '水闸问题查看',
  5665. component: () =>
  5666. import ('../views/wenTiQingDan/viewProblemListDcSz.vue'),
  5667. haveView: true,
  5668. meta: {
  5669. title: 'dashboard',
  5670. icon: 'dashboard',
  5671. noCache: true
  5672. },
  5673. haveSubMenu: true,
  5674. },
  5675. {
  5676. path: '/inspection_problemviewDcGcjs',
  5677. name: '工程建设问题查看',
  5678. component: () =>
  5679. import ('../views/wenTiQingDan/viewProblemListDcGcjs.vue'),
  5680. haveView: true,
  5681. meta: {
  5682. title: 'dashboard',
  5683. icon: 'dashboard',
  5684. noCache: true
  5685. },
  5686. haveSubMenu: true,
  5687. },
  5688. {
  5689. path: '/inspection_problemviewDcGcyx',
  5690. name: '工程运行问题查看',
  5691. component: () =>
  5692. import ('../views/wenTiQingDan/viewProblemListDcGcyx.vue'),
  5693. haveView: true,
  5694. meta: {
  5695. title: 'dashboard',
  5696. icon: 'dashboard',
  5697. noCache: true
  5698. },
  5699. haveSubMenu: true,
  5700. },
  5701. {
  5702. path: '/inspection_problemviewDcYdb',
  5703. name: '淤地坝问题查看',
  5704. component: () =>
  5705. import ('../views/wenTiQingDan/viewProblemListDcYdb.vue'),
  5706. haveView: true,
  5707. meta: {
  5708. title: 'dashboard',
  5709. icon: 'dashboard',
  5710. noCache: true
  5711. },
  5712. haveSubMenu: true,
  5713. },
  5714. {
  5715. path: '/rygl/khxx',
  5716. name: '考核信息',
  5717. component: () =>
  5718. import('../views/renYuanGuanLi/fenLeiGuanLi/kaohexinxi.vue'),
  5719. haveView: true,
  5720. meta: {
  5721. title: 'dashboard',
  5722. icon: 'dashboard',
  5723. noCache: true
  5724. },
  5725. haveSubMenu: true,
  5726. },
  5727. {
  5728. path: '/rygl/rykh/pccp',
  5729. name: '批次测评',
  5730. component: () =>
  5731. import('../views/export/jc/ceping/piciceping.vue'),
  5732. haveView: true,
  5733. meta: {
  5734. title: 'dashboard',
  5735. icon: 'dashboard',
  5736. noCache: true
  5737. },
  5738. haveSubMenu: true,
  5739. },
  5740. {
  5741. path: '/rygl/rykh/ndcp',
  5742. name: '年度测评',
  5743. component: () =>
  5744. import('../views/export/jc/ceping/jc_mark_year_tpy.vue'),
  5745. haveView: true,
  5746. meta: {
  5747. title: 'dashboard',
  5748. icon: 'dashboard',
  5749. noCache: true
  5750. },
  5751. haveSubMenu: true,
  5752. },
  5753. ]
  5754. },
  5755. {
  5756. name: '工作安排',
  5757. path: '/gzap',
  5758. component: mainPage,
  5759. haveView: false,
  5760. haveSubMenu: true,
  5761. children: [
  5762. {
  5763. path: '/gzap/dqjcap',
  5764. name: '当前稽察安排',
  5765. component: () =>
  5766. import ('../views/gongZuoAnPai/jiChaAnPai.vue'),
  5767. haveView: true,
  5768. haveSubMenu: false,
  5769. },
  5770. {
  5771. path: '/gzap/lsjcap',
  5772. name: '历史计划查询',
  5773. component: () =>
  5774. import ('../views/gongZuoAnPai/liShijiChaAnPai.vue'),
  5775. haveView: true,
  5776. haveSubMenu: false,
  5777. },
  5778. {
  5779. path: '/jcplanProject',
  5780. name: '年度计划项目管理',
  5781. component: () =>
  5782. import ('../views/gongZuoAnPai/planYearManage.vue'),
  5783. haveView: true,
  5784. haveSubMenu: false,
  5785. },
  5786. {
  5787. path: '/gzap/jhgl',
  5788. name: '计划管理',
  5789. component: () =>
  5790. import ('../views/gongZuoAnPai/jiHuaGuanLi.vue'),
  5791. haveView: true,
  5792. haveSubMenu: false,
  5793. },
  5794. {
  5795. path: '/gzap/xmgl',
  5796. name: '稽察项目管理',
  5797. component: () =>
  5798. import ('../views/gongZuoAnPai/xiangMuGuanLi.vue'),
  5799. haveView: true,
  5800. haveSubMenu: false,
  5801. }
  5802. ]
  5803. },
  5804. {
  5805. path: '/file',
  5806. name: '文件',
  5807. component: mainPage,
  5808. haveView: false,
  5809. haveSubMenu: true,
  5810. children: [
  5811. {
  5812. path: '/file',
  5813. name: '下载',
  5814. component: menuRouterView,
  5815. haveView: false,
  5816. haveSubMenu: true,
  5817. children: [{
  5818. path: '/fileload',
  5819. name: '文件下载',
  5820. component: () =>
  5821. import ('../views/inspection/fileDownload.vue'),
  5822. haveView: true,
  5823. haveSubMenu: false,
  5824. }]
  5825. }
  5826. ]
  5827. },
  5828. {
  5829. path: '/login',
  5830. name: '登录',
  5831. component: () =>
  5832. import ('../views/login/login.vue'),
  5833. haveView: true,
  5834. haveSubMenu: false
  5835. },
  5836. {
  5837. path: '/logindc',
  5838. name: '督查登录',
  5839. component: logindc,
  5840. haveView: true,
  5841. haveSubMenu: false
  5842. },
  5843. {
  5844. path: '/loginjc',
  5845. name: '督查登录',
  5846. component: loginjc,
  5847. haveView: true,
  5848. haveSubMenu: false
  5849. },
  5850. {
  5851. path: '/refresh',
  5852. name: '刷新',
  5853. component: () =>
  5854. import ('../components/layout/refresh.vue'),
  5855. haveView: true,
  5856. haveSubMenu: false
  5857. },
  5858. {
  5859. path: '*',
  5860. redirect: '/404'
  5861. }
  5862. ];
  5863. const originalPush = Router.prototype.push
  5864. Router.prototype.push = function push(location) {
  5865. return originalPush.call(this, location).catch(err => err)
  5866. }
  5867. const router = new Router({
  5868. routes: constantRouterMap
  5869. })
  5870. router.beforeEach((to, from, next) => {
  5871. console.log(to);
  5872. if (to.path == '/planCheckYear' || to.path == '/home') {
  5873. setTimeout(()=>{
  5874. next();
  5875. },1500)
  5876. }else {
  5877. next();
  5878. }
  5879. });
  5880. router.onError((error) => {
  5881. const pattern = /Loading chunk (\d)+ failed/g;
  5882. const isChunkLoadFailed = error.message.match(pattern);
  5883. const targetPath = router.history.pending.fullPath;
  5884. if (isChunkLoadFailed) {
  5885. router.replace(targetPath);
  5886. }
  5887. })
  5888. export default router