ef7573aba07a4134c92f9ffd1370271dea370ab0.svn-base 147 KB

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