svg-map-nx.vue 193 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533
  1. <template>
  2. <div class="svg-map-nx">
  3. <svg
  4. version="1.1"
  5. xmlns="http://www.w3.org/2000/svg"
  6. xmlns:xlink="http://www.w3.org/1999/xlink"
  7. x="0px"
  8. y="0px"
  9. :viewBox="
  10. $store.state.themeName === 'light' ? '-10 -50 700 540' : '0 -20 610 505'
  11. "
  12. :style="
  13. 'enable-background: new 0 0 745.3 459; transform: rotateX(' +
  14. deg +
  15. 'deg); left: ' +
  16. svgLeft +
  17. '; top: ' +
  18. svgTop +
  19. ';'
  20. "
  21. xml:space="preserve"
  22. :width="svgWidth"
  23. :height="svgHeight"
  24. >
  25. <defs>
  26. <g id="nx-map-line-1">
  27. <line
  28. class="nx-map-line"
  29. x1="25"
  30. y1="25"
  31. x2="25"
  32. y2="60"
  33. stroke="#16FFAA"
  34. stroke-width="1"
  35. />
  36. <circle
  37. class="nx-map-up-circle"
  38. cx="25"
  39. cy="25"
  40. r="1"
  41. fill="#16FFAA"
  42. />
  43. </g>
  44. <g id="nx-map-circle-1">
  45. <circle
  46. class="nx-map-down-circle-1"
  47. cx="25"
  48. cy="80"
  49. r="1"
  50. fill="#EAFF00"
  51. />
  52. <circle
  53. class="nx-map-down-circle-2"
  54. cx="25"
  55. cy="80"
  56. r="3"
  57. stroke="#EAFF00"
  58. stroke-width="1"
  59. fill="none"
  60. >
  61. <!-- <animate attributeType="XML" attributeName="r" from="3" to="20" dur="3s" repeatCount="indefinite"/>
  62. <animate attributeType="XML" attributeName="opacity" values="1;1;1;1;1;0" dur="3s" repeatCount="indefinite"/> -->
  63. </circle>
  64. <circle
  65. class="nx-map-down-circle-3"
  66. cx="25"
  67. cy="80"
  68. r="6"
  69. opacity="0.6"
  70. stroke="#EAFF00"
  71. stroke-width="1"
  72. fill="none"
  73. ></circle>
  74. </g>
  75. <g id="popup-box-svg">
  76. <rect
  77. x="0"
  78. y="0"
  79. width="130"
  80. height="130"
  81. stroke="#46C55A35"
  82. fill="#000000"
  83. opacity="0.8"
  84. />
  85. <circle cx="4" cy="4" r="2" fill="#ffffff">
  86. <animate
  87. attributeType="XML"
  88. attributeName="fill"
  89. values="#ffffff;transparent;#ffffff"
  90. dur="2s"
  91. repeatCount="indefinite"
  92. />
  93. </circle>
  94. <circle cx="126" cy="4" r="2" fill="#ffffff">
  95. <animate
  96. attributeType="XML"
  97. attributeName="fill"
  98. values="#ffffff;transparent;#ffffff"
  99. dur="2s"
  100. repeatCount="indefinite"
  101. />
  102. </circle>
  103. <circle cx="4" cy="126" r="2" fill="#ffffff">
  104. <animate
  105. attributeType="XML"
  106. attributeName="fill"
  107. values="#ffffff;transparent;#ffffff"
  108. dur="2s"
  109. repeatCount="indefinite"
  110. />
  111. </circle>
  112. <circle cx="126" cy="126" r="2" fill="#ffffff">
  113. <animate
  114. attributeType="XML"
  115. attributeName="fill"
  116. values="#ffffff;transparent;#ffffff"
  117. dur="2s"
  118. repeatCount="indefinite"
  119. />
  120. </circle>
  121. </g>
  122. <g id="effects-svg-path">
  123. <path
  124. class="effects-svg-path esp-6"
  125. :style="'stroke-dashoffset: ' + sd"
  126. fill="none"
  127. d="m400.56702,10.66952c2.23778,-0.66269 4.39873,-1.68074 6.74215,-1.94965c2.35303,0.00961 4.64843,0.59546 6.98225,0.93161c2.75641,0.50902 5.7241,0.73952 8.10595,2.38184c2.30501,1.54628 4.10099,3.69762 5.82975,5.83936c3.36147,4.33149 7.00146,8.4517 9.91153,13.11934c0.94121,1.21973 1.6135,2.88126 3.10215,3.54395c3.79366,0.64348 7.90426,-0.80676 11.48663,1.04686c2.41065,1.16211 5.09023,1.78638 7.35682,3.23662c1.67113,1.95926 2.90047,4.24506 4.24506,6.44442c1.844,-0.2305 3.92812,-0.16327 5.41677,-1.50786c4.95577,-3.85128 9.51777,-9.1336 16.14467,-9.8347c1.62311,4.63883 1.24854,9.62341 1.40221,14.46393c-0.02881,7.41444 0.49942,14.92493 -0.93161,22.25294c-0.70111,3.55356 -4.38912,5.52242 -5.37836,8.9127c-0.36496,3.51514 -0.16327,7.22236 -2.03609,10.38214c0.88359,-0.33615 1.76717,-0.63387 2.70839,-0.9028c-0.33615,2.85245 -0.74913,5.78173 -2.11293,8.35566c-1.18132,2.31461 -3.37108,3.81287 -5.21508,5.54162c-3.79366,3.26543 -6.6461,7.47207 -10.56462,10.58383c-2.68917,2.19936 -5.81054,3.75524 -8.54774,5.85856c-2.70839,2.09372 -4.61002,4.97497 -6.87661,7.49128c-2.39145,2.69878 -5.29192,4.91736 -7.46247,7.80822c-1.92084,2.53551 -3.69762,5.16706 -5.63767,7.67375c1.52707,0.461 3.05414,0.9124 4.61002,1.3734c0.6915,4.5716 1.25815,9.64262 -1.24854,13.80124c-2.61234,4.84052 -7.80822,7.62573 -10.20927,12.61992c2.48749,3.06374 4.89814,6.21392 6.95344,9.6042c1.55588,2.48749 3.04453,5.20547 5.59925,6.8478c1.99767,1.53667 4.50437,2.50669 6.11788,4.51397c2.04569,4.49477 2.24738,9.54658 1.8248,14.38709c0.28813,0.01921 0.87398,0.05763 1.16211,0.07683c0.09604,-2.02649 0.06723,-4.09139 0.60506,-6.06025c1.46944,-1.31578 3.45751,-1.72876 5.30152,-2.33382c0.39378,4.20664 0.00961,8.41328 -0.34575,12.61032c-0.49942,5.86817 0.63387,11.83238 -0.82596,17.61411c-0.78754,-0.65309 -1.55588,-1.30617 -2.30501,-1.95926c-0.33615,3.63999 -0.54744,7.3184 -1.44063,10.88156c-0.79715,3.08295 -2.53551,5.79134 -3.6592,8.74943c-1.21013,3.15978 -1.3734,6.61729 -2.65076,9.74827c-2.43947,5.51281 -6.01223,10.45898 -10.2765,14.70404c-2.91008,2.77561 -3.15017,7.39523 -6.49244,9.78668c-3.50554,2.63155 -6.71334,6.05065 -11.14087,7.0783c-6.24273,1.73836 -12.46626,3.69762 -18.22878,6.70373c-5.18627,2.68917 -11.12167,4.31229 -15.41474,8.44209c-0.97963,2.61234 -0.22089,5.7241 -1.49826,8.33645c-1.94965,4.52358 -2.87165,9.98837 -7.25118,12.94646c-2.65076,2.35303 -6.86701,1.40221 -9.07597,-1.07567c-3.63999,-3.63039 -4.05297,-9.1336 -3.97614,-13.99332c0,-1.99767 1.44063,-3.53434 2.41065,-5.14786c-5.28231,-4.42754 -12.94646,-2.13213 -18.54571,-5.86817c-4.41793,-2.59313 -7.56811,-7.57772 -12.93686,-8.30764c-4.04337,-0.06723 -7.7794,1.73836 -11.63069,2.65076c-3.77445,1.03726 -7.7698,0.9124 -11.51544,2.01688c-4.10099,1.70955 -6.50205,6.09867 -10.81433,7.43366c-5.74331,1.20052 -11.69792,-1.45024 -15.73169,-5.4936c-3.38068,-3.35187 -4.39873,-8.2308 -7.25118,-11.94763c-2.38184,-3.05414 -5.83936,-5.01339 -8.38447,-7.89466c-1.96886,-2.18976 -2.12252,-5.29192 -2.5163,-8.05792c-0.26892,-3.4287 -0.97002,-7.12632 0.64348,-10.34372c1.3638,-3.01572 4.29308,-4.7925 6.42521,-7.20316c0.20169,-1.07567 0.04802,-2.36263 -0.86437,-3.08295c-2.04569,-1.91124 -4.91736,-2.39145 -7.56811,-2.81403c-4.32189,-0.60506 -8.69181,-1.28696 -13.05211,-0.89319c-7.00146,0.6723 -12.40863,6.36758 -19.47732,6.70373c-2.92928,0.17287 -5.51281,-1.49826 -7.64494,-3.31345c-3.47672,-2.93889 -6.79977,-6.38679 -11.25613,-7.7794c-5.67608,-1.72876 -11.68831,1.07567 -17.31638,-0.89319c-6.40601,-1.95926 -13.29222,-2.52591 -19.22762,-5.82975c-6.52125,-3.08295 -11.1985,-8.73022 -16.84577,-13.01369c-3.95693,-3.07334 -7.46247,-6.79017 -11.94763,-9.11439c-2.30501,-1.25815 -4.7925,-2.17055 -6.94384,-3.6688c-2.31461,-1.87282 -3.82247,-4.50437 -6.01223,-6.47323c-2.81403,-2.70839 -6.35798,-4.56199 -8.9319,-7.51049c-0.81635,-2.06491 -0.96042,-4.30268 -1.48865,-6.43482c-1.06607,-4.53319 -2.48749,-9.18162 -1.86321,-13.88768c1.1429,-1.42143 2.9677,-2.00728 4.52358,-2.89086c-0.27852,-2.82363 -0.66269,-5.81054 -2.47789,-8.10595c-2.03609,-2.45867 -4.82131,-4.12021 -7.03027,-6.37719c-3.50554,-3.45751 -5.36875,-8.09634 -8.07714,-12.1205c-1.49826,-2.31461 -3.31345,-4.43714 -4.49477,-6.94384c-1.41182,-3.05414 -1.63271,-6.46363 -1.71915,-9.76748c1.18132,-0.29773 2.38184,-0.58585 3.59197,-0.87398c-0.04802,-0.35535 -0.15367,-1.08528 -0.20169,-1.44063c-1.27736,-0.40337 -2.54511,-0.79715 -3.80326,-1.19092c-1.28696,-3.71682 -2.40105,-7.58732 -2.26659,-11.56346c0.00961,-3.59197 3.06374,-6.13708 5.57044,-8.26922c3.10215,-1.5943 6.6461,-2.40105 10.12283,-2.63155c2.91008,-0.26892 5.05181,1.99767 7.24157,3.52474c1.10448,-1.3638 2.15134,-2.79482 3.48632,-3.96654c1.45024,-0.57625 3.07334,-0.14406 4.61002,-0.20169c3.67841,0.24971 7.17434,-1.18132 10.71829,-1.95926c2.61234,-0.72992 5.39756,-1.1429 7.7794,-2.53551c1.68074,-2.54511 2.77561,-5.484 3.36147,-8.4709c0.30733,-3.24622 0.10565,-6.53086 0.38417,-9.78668c0.42259,1.99767 0.75873,4.00495 1.22934,5.99302c0.24011,-3.6592 -1.3734,-7.00146 -2.23778,-10.46858c4.98458,-1.6135 10.2861,-0.62428 15.40514,-1.40221c1.91124,-3.24622 3.63999,-6.59809 5.56084,-9.84431c0.89319,-1.25815 1.67113,-3.01572 3.39989,-3.26543c2.42026,0.97002 4.53319,2.62195 7.0783,3.31345c2.2858,0.50902 4.64843,0.27852 6.98225,0.25931c0.08644,-2.65076 -0.07683,-5.35914 0.65309,-7.93307c1.01804,-2.68917 4.40833,-2.30501 6.69413,-3.05414c0.6723,-1.28696 1.31578,-2.61234 2.19936,-3.78406c2.75641,-0.61467 5.58964,-0.07683 8.35566,0.26892c0.70111,2.65076 1.08528,5.61846 3.08295,7.67375c2.40105,2.70839 6.15629,3.36147 9.06637,5.34954c1.6135,1.43102 2.41065,3.52474 3.39028,5.41677c1.12369,2.5163 2.57393,5.00379 2.77561,7.81782c0.18248,3.15017 0.01921,6.30996 -0.01921,9.46014c3.4191,1.6039 7.20316,1.98807 10.88156,2.71799c6.05065,0.98923 9.23924,7.33761 15.28028,8.51893c1.8248,3.81287 1.95926,9.04716 5.88738,11.43861c4.3603,1.45984 8.99914,1.92084 13.49391,2.9581c4.40833,0.99884 8.9127,0.01921 13.37865,0.20169c6.26194,0.54744 11.54425,4.28347 17.22034,6.6269c3.62078,2.08411 7.94268,1.07567 11.80357,2.43947c4.13941,-1.48865 7.72178,-4.27387 11.94763,-5.60886c4.99419,-1.86321 10.45898,-0.6723 15.56841,-1.92084c4.30268,-1.53667 7.82742,-5.13825 9.63301,-9.29687c0.42259,-4.20664 -0.04802,-8.49972 1.00844,-12.64874c0.62428,-0.15367 1.88243,-0.4418 2.5163,-0.58585c3.68801,-0.9028 7.3088,1.73836 10.9872,0.85478c1.844,-1.42143 3.05414,-3.48632 4.8021,-5.023c2.00728,-0.6723 4.15862,-0.84517 6.1851,-1.52707c1.57509,-1.44063 1.87282,-3.67841 2.55472,-5.59925c-2.31461,-2.14174 -5.09983,-3.81287 -7.05909,-6.29075c-2.9581,-8.29803 0.26892,-17.05706 3.47672,-24.75963c2.42986,0.34575 4.86933,0.95082 7.35682,0.74913c1.79598,-0.74913 3.46712,-1.91124 4.76369,-3.39028c0.85478,-2.65076 1.01804,-5.4744 1.57509,-8.20199c0.97963,-4.60041 -1.33498,-9.1336 -0.72992,-13.74361c0.54744,-2.19936 1.76717,-4.30268 3.55356,-5.7241c2.56432,-1.66152 5.60886,-2.31461 8.46131,-3.32306l0.00004,0.00003z"
  128. ></path>
  129. <path
  130. v-if="$store.state.themeName === 'dark'"
  131. class="effects-svg-path esp-1"
  132. :style="'stroke-dashoffset: ' + sd"
  133. fill="none"
  134. d="m400.56702,10.66952c2.23778,-0.66269 4.39873,-1.68074 6.74215,-1.94965c2.35303,0.00961 4.64843,0.59546 6.98225,0.93161c2.75641,0.50902 5.7241,0.73952 8.10595,2.38184c2.30501,1.54628 4.10099,3.69762 5.82975,5.83936c3.36147,4.33149 7.00146,8.4517 9.91153,13.11934c0.94121,1.21973 1.6135,2.88126 3.10215,3.54395c3.79366,0.64348 7.90426,-0.80676 11.48663,1.04686c2.41065,1.16211 5.09023,1.78638 7.35682,3.23662c1.67113,1.95926 2.90047,4.24506 4.24506,6.44442c1.844,-0.2305 3.92812,-0.16327 5.41677,-1.50786c4.95577,-3.85128 9.51777,-9.1336 16.14467,-9.8347c1.62311,4.63883 1.24854,9.62341 1.40221,14.46393c-0.02881,7.41444 0.49942,14.92493 -0.93161,22.25294c-0.70111,3.55356 -4.38912,5.52242 -5.37836,8.9127c-0.36496,3.51514 -0.16327,7.22236 -2.03609,10.38214c0.88359,-0.33615 1.76717,-0.63387 2.70839,-0.9028c-0.33615,2.85245 -0.74913,5.78173 -2.11293,8.35566c-1.18132,2.31461 -3.37108,3.81287 -5.21508,5.54162c-3.79366,3.26543 -6.6461,7.47207 -10.56462,10.58383c-2.68917,2.19936 -5.81054,3.75524 -8.54774,5.85856c-2.70839,2.09372 -4.61002,4.97497 -6.87661,7.49128c-2.39145,2.69878 -5.29192,4.91736 -7.46247,7.80822c-1.92084,2.53551 -3.69762,5.16706 -5.63767,7.67375c1.52707,0.461 3.05414,0.9124 4.61002,1.3734c0.6915,4.5716 1.25815,9.64262 -1.24854,13.80124c-2.61234,4.84052 -7.80822,7.62573 -10.20927,12.61992c2.48749,3.06374 4.89814,6.21392 6.95344,9.6042c1.55588,2.48749 3.04453,5.20547 5.59925,6.8478c1.99767,1.53667 4.50437,2.50669 6.11788,4.51397c2.04569,4.49477 2.24738,9.54658 1.8248,14.38709c0.28813,0.01921 0.87398,0.05763 1.16211,0.07683c0.09604,-2.02649 0.06723,-4.09139 0.60506,-6.06025c1.46944,-1.31578 3.45751,-1.72876 5.30152,-2.33382c0.39378,4.20664 0.00961,8.41328 -0.34575,12.61032c-0.49942,5.86817 0.63387,11.83238 -0.82596,17.61411c-0.78754,-0.65309 -1.55588,-1.30617 -2.30501,-1.95926c-0.33615,3.63999 -0.54744,7.3184 -1.44063,10.88156c-0.79715,3.08295 -2.53551,5.79134 -3.6592,8.74943c-1.21013,3.15978 -1.3734,6.61729 -2.65076,9.74827c-2.43947,5.51281 -6.01223,10.45898 -10.2765,14.70404c-2.91008,2.77561 -3.15017,7.39523 -6.49244,9.78668c-3.50554,2.63155 -6.71334,6.05065 -11.14087,7.0783c-6.24273,1.73836 -12.46626,3.69762 -18.22878,6.70373c-5.18627,2.68917 -11.12167,4.31229 -15.41474,8.44209c-0.97963,2.61234 -0.22089,5.7241 -1.49826,8.33645c-1.94965,4.52358 -2.87165,9.98837 -7.25118,12.94646c-2.65076,2.35303 -6.86701,1.40221 -9.07597,-1.07567c-3.63999,-3.63039 -4.05297,-9.1336 -3.97614,-13.99332c0,-1.99767 1.44063,-3.53434 2.41065,-5.14786c-5.28231,-4.42754 -12.94646,-2.13213 -18.54571,-5.86817c-4.41793,-2.59313 -7.56811,-7.57772 -12.93686,-8.30764c-4.04337,-0.06723 -7.7794,1.73836 -11.63069,2.65076c-3.77445,1.03726 -7.7698,0.9124 -11.51544,2.01688c-4.10099,1.70955 -6.50205,6.09867 -10.81433,7.43366c-5.74331,1.20052 -11.69792,-1.45024 -15.73169,-5.4936c-3.38068,-3.35187 -4.39873,-8.2308 -7.25118,-11.94763c-2.38184,-3.05414 -5.83936,-5.01339 -8.38447,-7.89466c-1.96886,-2.18976 -2.12252,-5.29192 -2.5163,-8.05792c-0.26892,-3.4287 -0.97002,-7.12632 0.64348,-10.34372c1.3638,-3.01572 4.29308,-4.7925 6.42521,-7.20316c0.20169,-1.07567 0.04802,-2.36263 -0.86437,-3.08295c-2.04569,-1.91124 -4.91736,-2.39145 -7.56811,-2.81403c-4.32189,-0.60506 -8.69181,-1.28696 -13.05211,-0.89319c-7.00146,0.6723 -12.40863,6.36758 -19.47732,6.70373c-2.92928,0.17287 -5.51281,-1.49826 -7.64494,-3.31345c-3.47672,-2.93889 -6.79977,-6.38679 -11.25613,-7.7794c-5.67608,-1.72876 -11.68831,1.07567 -17.31638,-0.89319c-6.40601,-1.95926 -13.29222,-2.52591 -19.22762,-5.82975c-6.52125,-3.08295 -11.1985,-8.73022 -16.84577,-13.01369c-3.95693,-3.07334 -7.46247,-6.79017 -11.94763,-9.11439c-2.30501,-1.25815 -4.7925,-2.17055 -6.94384,-3.6688c-2.31461,-1.87282 -3.82247,-4.50437 -6.01223,-6.47323c-2.81403,-2.70839 -6.35798,-4.56199 -8.9319,-7.51049c-0.81635,-2.06491 -0.96042,-4.30268 -1.48865,-6.43482c-1.06607,-4.53319 -2.48749,-9.18162 -1.86321,-13.88768c1.1429,-1.42143 2.9677,-2.00728 4.52358,-2.89086c-0.27852,-2.82363 -0.66269,-5.81054 -2.47789,-8.10595c-2.03609,-2.45867 -4.82131,-4.12021 -7.03027,-6.37719c-3.50554,-3.45751 -5.36875,-8.09634 -8.07714,-12.1205c-1.49826,-2.31461 -3.31345,-4.43714 -4.49477,-6.94384c-1.41182,-3.05414 -1.63271,-6.46363 -1.71915,-9.76748c1.18132,-0.29773 2.38184,-0.58585 3.59197,-0.87398c-0.04802,-0.35535 -0.15367,-1.08528 -0.20169,-1.44063c-1.27736,-0.40337 -2.54511,-0.79715 -3.80326,-1.19092c-1.28696,-3.71682 -2.40105,-7.58732 -2.26659,-11.56346c0.00961,-3.59197 3.06374,-6.13708 5.57044,-8.26922c3.10215,-1.5943 6.6461,-2.40105 10.12283,-2.63155c2.91008,-0.26892 5.05181,1.99767 7.24157,3.52474c1.10448,-1.3638 2.15134,-2.79482 3.48632,-3.96654c1.45024,-0.57625 3.07334,-0.14406 4.61002,-0.20169c3.67841,0.24971 7.17434,-1.18132 10.71829,-1.95926c2.61234,-0.72992 5.39756,-1.1429 7.7794,-2.53551c1.68074,-2.54511 2.77561,-5.484 3.36147,-8.4709c0.30733,-3.24622 0.10565,-6.53086 0.38417,-9.78668c0.42259,1.99767 0.75873,4.00495 1.22934,5.99302c0.24011,-3.6592 -1.3734,-7.00146 -2.23778,-10.46858c4.98458,-1.6135 10.2861,-0.62428 15.40514,-1.40221c1.91124,-3.24622 3.63999,-6.59809 5.56084,-9.84431c0.89319,-1.25815 1.67113,-3.01572 3.39989,-3.26543c2.42026,0.97002 4.53319,2.62195 7.0783,3.31345c2.2858,0.50902 4.64843,0.27852 6.98225,0.25931c0.08644,-2.65076 -0.07683,-5.35914 0.65309,-7.93307c1.01804,-2.68917 4.40833,-2.30501 6.69413,-3.05414c0.6723,-1.28696 1.31578,-2.61234 2.19936,-3.78406c2.75641,-0.61467 5.58964,-0.07683 8.35566,0.26892c0.70111,2.65076 1.08528,5.61846 3.08295,7.67375c2.40105,2.70839 6.15629,3.36147 9.06637,5.34954c1.6135,1.43102 2.41065,3.52474 3.39028,5.41677c1.12369,2.5163 2.57393,5.00379 2.77561,7.81782c0.18248,3.15017 0.01921,6.30996 -0.01921,9.46014c3.4191,1.6039 7.20316,1.98807 10.88156,2.71799c6.05065,0.98923 9.23924,7.33761 15.28028,8.51893c1.8248,3.81287 1.95926,9.04716 5.88738,11.43861c4.3603,1.45984 8.99914,1.92084 13.49391,2.9581c4.40833,0.99884 8.9127,0.01921 13.37865,0.20169c6.26194,0.54744 11.54425,4.28347 17.22034,6.6269c3.62078,2.08411 7.94268,1.07567 11.80357,2.43947c4.13941,-1.48865 7.72178,-4.27387 11.94763,-5.60886c4.99419,-1.86321 10.45898,-0.6723 15.56841,-1.92084c4.30268,-1.53667 7.82742,-5.13825 9.63301,-9.29687c0.42259,-4.20664 -0.04802,-8.49972 1.00844,-12.64874c0.62428,-0.15367 1.88243,-0.4418 2.5163,-0.58585c3.68801,-0.9028 7.3088,1.73836 10.9872,0.85478c1.844,-1.42143 3.05414,-3.48632 4.8021,-5.023c2.00728,-0.6723 4.15862,-0.84517 6.1851,-1.52707c1.57509,-1.44063 1.87282,-3.67841 2.55472,-5.59925c-2.31461,-2.14174 -5.09983,-3.81287 -7.05909,-6.29075c-2.9581,-8.29803 0.26892,-17.05706 3.47672,-24.75963c2.42986,0.34575 4.86933,0.95082 7.35682,0.74913c1.79598,-0.74913 3.46712,-1.91124 4.76369,-3.39028c0.85478,-2.65076 1.01804,-5.4744 1.57509,-8.20199c0.97963,-4.60041 -1.33498,-9.1336 -0.72992,-13.74361c0.54744,-2.19936 1.76717,-4.30268 3.55356,-5.7241c2.56432,-1.66152 5.60886,-2.31461 8.46131,-3.32306l0.00004,0.00003z"
  135. ></path>
  136. <path
  137. v-if="$store.state.themeName === 'light'"
  138. class="effects-svg-path esp-1"
  139. :style="'stroke-dashoffset: ' + sd"
  140. fill="none"
  141. d="m440.56702,0.66952c2.23778,-0.66269 4.39873,-1.68074 6.74215,-1.94965c2.35303,0.00961 4.64843,0.59546 6.98225,0.93161c2.75641,0.50902 5.7241,0.73952 8.10595,2.38184c2.30501,1.54628 4.10099,3.69762 5.82975,5.83936c3.36147,4.33149 7.00146,8.4517 9.91153,13.11934c0.94121,1.21973 1.6135,2.88126 3.10215,3.54395c3.79366,0.64348 7.90426,-0.80676 11.48663,1.04686c2.41065,1.16211 5.09023,1.78638 7.35682,3.23662c1.67113,1.95926 2.90047,4.24506 4.24506,6.44442c1.844,-0.2305 3.92812,-0.16327 5.41677,-1.50786c4.95577,-3.85128 9.51777,-9.1336 16.14467,-9.8347c1.62311,4.63883 1.24854,9.62341 1.40221,14.46393c-0.02881,7.41444 0.49942,14.92493 -0.93161,22.25294c-0.70111,3.55356 -4.38912,5.52242 -5.37836,8.9127c-0.36496,3.51514 -0.16327,7.22236 -2.03609,10.38214c0.88359,-0.33615 1.76717,-0.63387 2.70839,-0.9028c-0.33615,2.85245 -0.74913,5.78173 -2.11293,8.35566c-1.18132,2.31461 -3.37108,3.81287 -5.21508,5.54162c-3.79366,3.26543 -6.6461,7.47207 -10.56462,10.58383c-2.68917,2.19936 -5.81054,3.75524 -8.54774,5.85856c-2.70839,2.09372 -4.61002,4.97497 -6.87661,7.49128c-2.39145,2.69878 -5.29192,4.91736 -7.46247,7.80822c-1.92084,2.53551 -3.69762,5.16706 -5.63767,7.67375c1.52707,0.461 3.05414,0.9124 4.61002,1.3734c0.6915,4.5716 1.25815,9.64262 -1.24854,13.80124c-2.61234,4.84052 -7.80822,7.62573 -10.20927,12.61992c2.48749,3.06374 4.89814,6.21392 6.95344,9.6042c1.55588,2.48749 3.04453,5.20547 5.59925,6.8478c1.99767,1.53667 4.50437,2.50669 6.11788,4.51397c2.04569,4.49477 2.24738,9.54658 1.8248,14.38709c0.28813,0.01921 0.87398,0.05763 1.16211,0.07683c0.09604,-2.02649 0.06723,-4.09139 0.60506,-6.06025c1.46944,-1.31578 3.45751,-1.72876 5.30152,-2.33382c0.39378,4.20664 0.00961,8.41328 -0.34575,12.61032c-0.49942,5.86817 0.63387,11.83238 -0.82596,17.61411c-0.78754,-0.65309 -1.55588,-1.30617 -2.30501,-1.95926c-0.33615,3.63999 -0.54744,7.3184 -1.44063,10.88156c-0.79715,3.08295 -2.53551,5.79134 -3.6592,8.74943c-1.21013,3.15978 -1.3734,6.61729 -2.65076,9.74827c-2.43947,5.51281 -6.01223,10.45898 -10.2765,14.70404c-2.91008,2.77561 -3.15017,7.39523 -6.49244,9.78668c-3.50554,2.63155 -6.71334,6.05065 -11.14087,7.0783c-6.24273,1.73836 -12.46626,3.69762 -18.22878,6.70373c-5.18627,2.68917 -11.12167,4.31229 -15.41474,8.44209c-0.97963,2.61234 -0.22089,5.7241 -1.49826,8.33645c-1.94965,4.52358 -2.87165,9.98837 -7.25118,12.94646c-2.65076,2.35303 -6.86701,1.40221 -9.07597,-1.07567c-3.63999,-3.63039 -4.05297,-9.1336 -3.97614,-13.99332c0,-1.99767 1.44063,-3.53434 2.41065,-5.14786c-5.28231,-4.42754 -12.94646,-2.13213 -18.54571,-5.86817c-4.41793,-2.59313 -7.56811,-7.57772 -12.93686,-8.30764c-4.04337,-0.06723 -7.7794,1.73836 -11.63069,2.65076c-3.77445,1.03726 -7.7698,0.9124 -11.51544,2.01688c-4.10099,1.70955 -6.50205,6.09867 -10.81433,7.43366c-5.74331,1.20052 -11.69792,-1.45024 -15.73169,-5.4936c-3.38068,-3.35187 -4.39873,-8.2308 -7.25118,-11.94763c-2.38184,-3.05414 -5.83936,-5.01339 -8.38447,-7.89466c-1.96886,-2.18976 -2.12252,-5.29192 -2.5163,-8.05792c-0.26892,-3.4287 -0.97002,-7.12632 0.64348,-10.34372c1.3638,-3.01572 4.29308,-4.7925 6.42521,-7.20316c0.20169,-1.07567 0.04802,-2.36263 -0.86437,-3.08295c-2.04569,-1.91124 -4.91736,-2.39145 -7.56811,-2.81403c-4.32189,-0.60506 -8.69181,-1.28696 -13.05211,-0.89319c-7.00146,0.6723 -12.40863,6.36758 -19.47732,6.70373c-2.92928,0.17287 -5.51281,-1.49826 -7.64494,-3.31345c-3.47672,-2.93889 -6.79977,-6.38679 -11.25613,-7.7794c-5.67608,-1.72876 -11.68831,1.07567 -17.31638,-0.89319c-6.40601,-1.95926 -13.29222,-2.52591 -19.22762,-5.82975c-6.52125,-3.08295 -11.1985,-8.73022 -16.84577,-13.01369c-3.95693,-3.07334 -7.46247,-6.79017 -11.94763,-9.11439c-2.30501,-1.25815 -4.7925,-2.17055 -6.94384,-3.6688c-2.31461,-1.87282 -3.82247,-4.50437 -6.01223,-6.47323c-2.81403,-2.70839 -6.35798,-4.56199 -8.9319,-7.51049c-0.81635,-2.06491 -0.96042,-4.30268 -1.48865,-6.43482c-1.06607,-4.53319 -2.48749,-9.18162 -1.86321,-13.88768c1.1429,-1.42143 2.9677,-2.00728 4.52358,-2.89086c-0.27852,-2.82363 -0.66269,-5.81054 -2.47789,-8.10595c-2.03609,-2.45867 -4.82131,-4.12021 -7.03027,-6.37719c-3.50554,-3.45751 -5.36875,-8.09634 -8.07714,-12.1205c-1.49826,-2.31461 -3.31345,-4.43714 -4.49477,-6.94384c-1.41182,-3.05414 -1.63271,-6.46363 -1.71915,-9.76748c1.18132,-0.29773 2.38184,-0.58585 3.59197,-0.87398c-0.04802,-0.35535 -0.15367,-1.08528 -0.20169,-1.44063c-1.27736,-0.40337 -2.54511,-0.79715 -3.80326,-1.19092c-1.28696,-3.71682 -2.40105,-7.58732 -2.26659,-11.56346c0.00961,-3.59197 3.06374,-6.13708 5.57044,-8.26922c3.10215,-1.5943 6.6461,-2.40105 10.12283,-2.63155c2.91008,-0.26892 5.05181,1.99767 7.24157,3.52474c1.10448,-1.3638 2.15134,-2.79482 3.48632,-3.96654c1.45024,-0.57625 3.07334,-0.14406 4.61002,-0.20169c3.67841,0.24971 7.17434,-1.18132 10.71829,-1.95926c2.61234,-0.72992 5.39756,-1.1429 7.7794,-2.53551c1.68074,-2.54511 2.77561,-5.484 3.36147,-8.4709c0.30733,-3.24622 0.10565,-6.53086 0.38417,-9.78668c0.42259,1.99767 0.75873,4.00495 1.22934,5.99302c0.24011,-3.6592 -1.3734,-7.00146 -2.23778,-10.46858c4.98458,-1.6135 10.2861,-0.62428 15.40514,-1.40221c1.91124,-3.24622 3.63999,-6.59809 5.56084,-9.84431c0.89319,-1.25815 1.67113,-3.01572 3.39989,-3.26543c2.42026,0.97002 4.53319,2.62195 7.0783,3.31345c2.2858,0.50902 4.64843,0.27852 6.98225,0.25931c0.08644,-2.65076 -0.07683,-5.35914 0.65309,-7.93307c1.01804,-2.68917 4.40833,-2.30501 6.69413,-3.05414c0.6723,-1.28696 1.31578,-2.61234 2.19936,-3.78406c2.75641,-0.61467 5.58964,-0.07683 8.35566,0.26892c0.70111,2.65076 1.08528,5.61846 3.08295,7.67375c2.40105,2.70839 6.15629,3.36147 9.06637,5.34954c1.6135,1.43102 2.41065,3.52474 3.39028,5.41677c1.12369,2.5163 2.57393,5.00379 2.77561,7.81782c0.18248,3.15017 0.01921,6.30996 -0.01921,9.46014c3.4191,1.6039 7.20316,1.98807 10.88156,2.71799c6.05065,0.98923 9.23924,7.33761 15.28028,8.51893c1.8248,3.81287 1.95926,9.04716 5.88738,11.43861c4.3603,1.45984 8.99914,1.92084 13.49391,2.9581c4.40833,0.99884 8.9127,0.01921 13.37865,0.20169c6.26194,0.54744 11.54425,4.28347 17.22034,6.6269c3.62078,2.08411 7.94268,1.07567 11.80357,2.43947c4.13941,-1.48865 7.72178,-4.27387 11.94763,-5.60886c4.99419,-1.86321 10.45898,-0.6723 15.56841,-1.92084c4.30268,-1.53667 7.82742,-5.13825 9.63301,-9.29687c0.42259,-4.20664 -0.04802,-8.49972 1.00844,-12.64874c0.62428,-0.15367 1.88243,-0.4418 2.5163,-0.58585c3.68801,-0.9028 7.3088,1.73836 10.9872,0.85478c1.844,-1.42143 3.05414,-3.48632 4.8021,-5.023c2.00728,-0.6723 4.15862,-0.84517 6.1851,-1.52707c1.57509,-1.44063 1.87282,-3.67841 2.55472,-5.59925c-2.31461,-2.14174 -5.09983,-3.81287 -7.05909,-6.29075c-2.9581,-8.29803 0.26892,-17.05706 3.47672,-24.75963c2.42986,0.34575 4.86933,0.95082 7.35682,0.74913c1.79598,-0.74913 3.46712,-1.91124 4.76369,-3.39028c0.85478,-2.65076 1.01804,-5.4744 1.57509,-8.20199c0.97963,-4.60041 -1.33498,-9.1336 -0.72992,-13.74361c0.54744,-2.19936 1.76717,-4.30268 3.55356,-5.7241c2.56432,-1.66152 5.60886,-2.31461 8.46131,-3.32306l0.00004,0.00003z"
  142. ></path>
  143. </g>
  144. </defs>
  145. <circle cx="390" cy="200" :r="r" fill="none" class="esp-c"></circle>
  146. <use
  147. v-for="(y, index) of effectsY"
  148. :key="index"
  149. x="55"
  150. :y="y[0]"
  151. :opacity="y[1]"
  152. xlink:href="#effects-svg-path"
  153. ></use>
  154. <g :opacity="o">
  155. <image
  156. v-if="$store.state.themeName === 'dark'"
  157. style="overflow: visible"
  158. width="912"
  159. height="340"
  160. id="map-main"
  161. xlink:href="@assets/mapz/dt_h.png"
  162. transform="matrix(1 0 0 1 -113 60.6679)"
  163. />
  164. <image
  165. v-if="$store.state.themeName === 'light'"
  166. style="overflow: visible"
  167. width="912"
  168. height="340"
  169. id="map-main"
  170. xlink:href="@/assets/mapz/dt_b.png"
  171. transform="matrix(1 0 0 1 -70 50.6679)"
  172. />
  173. <g>
  174. <!-- 河北 -->
  175. <g v-if="showPoint && $store.state.themeName === 'dark'">
  176. <g
  177. v-if="showType === 'all' || showType === 'fc'"
  178. class="item-label"
  179. @click.stop="clickIncident('河北')"
  180. @mouseover="mouseoverIncident('河北')"
  181. @mouseout="mouseoutIncident('河北')"
  182. >
  183. <use
  184. xlink:href="#nx-map-circle-1"
  185. x="415"
  186. y="120"
  187. width="100"
  188. height="100"
  189. />
  190. <text class="mapKey" x="435" y="195" fill="#fff" font-size="8">
  191. 河北
  192. </text>
  193. <g v-show="mapDataContentState === '河北'">
  194. <g
  195. v-if="
  196. homeSuspensionWindowsData[getmapName('河北')]
  197. ?.industryState &&
  198. homeSuspensionWindowsData[getmapName('河北')]?.companyState
  199. "
  200. >
  201. <rect
  202. x="435"
  203. y="80"
  204. width="130"
  205. height="105"
  206. fill="#000000"
  207. stroke="#46C55A35"
  208. opacity="0.8"
  209. />
  210. <text
  211. x="440"
  212. y="93"
  213. fill="#919697"
  214. font-size="8"
  215. font-weight="bold"
  216. >
  217. 清洁能源产业
  218. </text>
  219. <text x="440" y="105" fill="#919697" font-size="8">
  220. 总装机容量
  221. </text>
  222. <text x="490" y="105" fill="#05bb4c" font-size="8">
  223. {{
  224. homeSuspensionWindowsData[getmapName("河北")]
  225. ?.hbcyzzjrl || 0
  226. }}
  227. </text>
  228. <text x="510" y="105" fill="#919697" font-size="8">MW</text>
  229. <text x="440" y="117" fill="#919697" font-size="8">风场</text>
  230. <text x="460" y="117" fill="#05bb4c" font-size="8">
  231. {{
  232. homeSuspensionWindowsData[getmapName("河北")]
  233. ?.hbcyfdcsl || 0
  234. }}
  235. </text>
  236. <text x="470" y="117" fill="#919697" font-size="8">
  237. 个,装机容量
  238. </text>
  239. <text x="520" y="117" fill="#05bb4c" font-size="8">
  240. {{
  241. homeSuspensionWindowsData[getmapName("河北")]
  242. ?.hbcyfdzjrl || 0
  243. }}
  244. </text>
  245. <text x="540" y="117" fill="#919697" font-size="8">MW</text>
  246. <text x="440" y="129" fill="#919697" font-size="8">光伏</text>
  247. <text x="460" y="129" fill="#05bb4c" font-size="8">
  248. {{
  249. homeSuspensionWindowsData[getmapName("河北")]
  250. ?.hbcygfcsl || 0
  251. }}
  252. </text>
  253. <text x="470" y="129" fill="#919697" font-size="8">
  254. 个,装机容量
  255. </text>
  256. <text x="520" y="129" fill="#05bb4c" font-size="8">
  257. {{
  258. homeSuspensionWindowsData[getmapName("河北")]
  259. ?.hbcygfzjrl || 0
  260. }}
  261. </text>
  262. <text x="540" y="129" fill="#919697" font-size="8">MW</text>
  263. <text
  264. x="440"
  265. y="141"
  266. fill="#919697"
  267. font-size="8"
  268. font-weight="bold"
  269. >
  270. 清洁能源公司
  271. </text>
  272. <text x="440" y="153" fill="#919697" font-size="8">
  273. 总装机容量
  274. </text>
  275. <text x="490" y="153" fill="#05bb4c" font-size="8">
  276. {{
  277. homeSuspensionWindowsData[getmapName("河北")]
  278. ?.hbgszzjrl || 0
  279. }}
  280. </text>
  281. <text x="500" y="153" fill="#919697" font-size="8">MW</text>
  282. <text x="440" y="165" fill="#919697" font-size="8">风场</text>
  283. <text x="460" y="165" fill="#05bb4c" font-size="8">
  284. {{
  285. homeSuspensionWindowsData[getmapName("河北")]
  286. ?.hbgsfdcslcsl || 0
  287. }}
  288. </text>
  289. <text x="470" y="165" fill="#919697" font-size="8">
  290. 个,装机容量
  291. </text>
  292. <text x="520" y="165" fill="#05bb4c" font-size="8">
  293. {{
  294. homeSuspensionWindowsData[getmapName("河北")]
  295. ?.hbgsfdzjrl || 0
  296. }}
  297. </text>
  298. <text x="540" y="165" fill="#919697" font-size="8">MW</text>
  299. <text x="440" y="177" fill="#919697" font-size="8">光伏</text>
  300. <text x="460" y="177" fill="#05bb4c" font-size="8">
  301. {{
  302. homeSuspensionWindowsData[getmapName("河北")]
  303. ?.hbgsgfcsl || 0
  304. }}
  305. </text>
  306. <text x="470" y="177" fill="#919697" font-size="8">
  307. 个,装机容量
  308. </text>
  309. <text x="520" y="177" fill="#05bb4c" font-size="8">
  310. {{
  311. homeSuspensionWindowsData[getmapName("河北")]
  312. ?.hbgsgfzjrl || 0
  313. }}
  314. </text>
  315. <text x="540" y="177" fill="#919697" font-size="8">MW</text>
  316. </g>
  317. <g v-else>
  318. <rect
  319. x="435"
  320. y="120"
  321. width="130"
  322. height="55"
  323. fill="#000000"
  324. stroke="#46C55A35"
  325. opacity="0.8"
  326. />
  327. <g
  328. v-show="
  329. homeSuspensionWindowsData[getmapName('河北')]
  330. ?.industryState
  331. "
  332. >
  333. <text
  334. x="440"
  335. y="133"
  336. fill="#919697"
  337. font-size="8"
  338. font-weight="bold"
  339. >
  340. 清洁能源产业
  341. </text>
  342. <text x="440" y="145" fill="#919697" font-size="8">
  343. 总装机容量
  344. </text>
  345. <text x="490" y="145" fill="#05bb4c" font-size="8">
  346. {{
  347. homeSuspensionWindowsData[getmapName("河北")]
  348. ?.hbcyzzjrl || 0
  349. }}
  350. </text>
  351. <text x="510" y="145" fill="#919697" font-size="8">MW</text>
  352. <text x="440" y="157" fill="#919697" font-size="8">
  353. 风场
  354. </text>
  355. <text x="460" y="157" fill="#05bb4c" font-size="8">
  356. {{
  357. homeSuspensionWindowsData[getmapName("河北")]
  358. ?.hbcyfdcsl || 0
  359. }}
  360. </text>
  361. <text x="470" y="157" fill="#919697" font-size="8">
  362. 个,装机容量
  363. </text>
  364. <text x="520" y="157" fill="#05bb4c" font-size="8">
  365. {{
  366. homeSuspensionWindowsData[getmapName("河北")]
  367. ?.hbcyfdzjrl || 0
  368. }}
  369. </text>
  370. <text x="540" y="157" fill="#919697" font-size="8">MW</text>
  371. <text x="440" y="169" fill="#919697" font-size="8">
  372. 光伏
  373. </text>
  374. <text x="460" y="169" fill="#05bb4c" font-size="8">
  375. {{
  376. homeSuspensionWindowsData[getmapName("河北")]
  377. ?.hbcygfcsl || 0
  378. }}
  379. </text>
  380. <text x="470" y="169" fill="#919697" font-size="8">
  381. 个,装机容量
  382. </text>
  383. <text x="520" y="169" fill="#05bb4c" font-size="8">
  384. {{
  385. homeSuspensionWindowsData[getmapName("河北")]
  386. ?.hbcygfzjrl || 0
  387. }}
  388. </text>
  389. <text x="540" y="169" fill="#919697" font-size="8">MW</text>
  390. </g>
  391. <g
  392. v-show="
  393. homeSuspensionWindowsData[getmapName('河北')]
  394. ?.companyState
  395. "
  396. >
  397. <text
  398. x="440"
  399. y="133"
  400. fill="#919697"
  401. font-size="8"
  402. font-weight="bold"
  403. >
  404. 清洁能源公司
  405. </text>
  406. <text x="440" y="145" fill="#919697" font-size="8">
  407. 总装机容量
  408. </text>
  409. <text x="490" y="145" fill="#05bb4c" font-size="8">
  410. {{
  411. homeSuspensionWindowsData[getmapName("河北")]
  412. ?.hbgszzjrl || 0
  413. }}
  414. </text>
  415. <text x="500" y="145" fill="#919697" font-size="8">MW</text>
  416. <text x="440" y="157" fill="#919697" font-size="8">
  417. 风场
  418. </text>
  419. <text x="460" y="157" fill="#05bb4c" font-size="8">
  420. {{
  421. homeSuspensionWindowsData[getmapName("河北")]
  422. ?.hbgsfdcslcsl || 0
  423. }}
  424. </text>
  425. <text x="470" y="157" fill="#919697" font-size="8">
  426. 个,装机容量
  427. </text>
  428. <text x="520" y="157" fill="#05bb4c" font-size="8">
  429. {{
  430. homeSuspensionWindowsData[getmapName("河北")]
  431. ?.hbgsfdzjrl || 0
  432. }}
  433. </text>
  434. <text x="540" y="157" fill="#919697" font-size="8">MW</text>
  435. <text x="440" y="169" fill="#919697" font-size="8">
  436. 光伏
  437. </text>
  438. <text x="460" y="169" fill="#05bb4c" font-size="8">
  439. {{
  440. homeSuspensionWindowsData[getmapName("河北")]
  441. ?.hbgsgfcsl || 0
  442. }}
  443. </text>
  444. <text x="470" y="169" fill="#919697" font-size="8">
  445. 个,装机容量
  446. </text>
  447. <text x="520" y="169" fill="#05bb4c" font-size="8">
  448. {{
  449. homeSuspensionWindowsData[getmapName("河北")]
  450. ?.hbgsgfzjrl || 0
  451. }}
  452. </text>
  453. <text x="540" y="169" fill="#919697" font-size="8">MW</text>
  454. </g>
  455. </g>
  456. </g>
  457. </g>
  458. </g>
  459. <g v-if="showPoint && $store.state.themeName === 'light'">
  460. <g
  461. v-if="showType === 'all' || showType === 'fc'"
  462. class="item-label"
  463. @click.stop="clickIncident('河北')"
  464. @mouseover="mouseoverIncident('河北')"
  465. @mouseout="mouseoutIncident('河北')"
  466. >
  467. <use
  468. xlink:href="#nx-map-circle-1"
  469. x="456"
  470. y="110"
  471. width="100"
  472. height="100"
  473. />
  474. <text class="mapKey" x="475" y="185" fill="#fff" font-size="8">
  475. 河北
  476. </text>
  477. <g v-show="mapDataContentState === '河北'">
  478. <g
  479. v-if="
  480. homeSuspensionWindowsData[getmapName('河北')]
  481. ?.industryState &&
  482. homeSuspensionWindowsData[getmapName('河北')]?.companyState
  483. "
  484. >
  485. <rect
  486. x="475"
  487. y="65"
  488. width="130"
  489. height="105"
  490. fill="#000000"
  491. stroke="#46C55A35"
  492. opacity="0.8"
  493. />
  494. <text
  495. x="480"
  496. y="77"
  497. fill="#ffffff"
  498. font-size="8"
  499. font-weight="bold"
  500. >
  501. 清洁能源产业
  502. </text>
  503. <text x="480" y="89" fill="#ffffff" font-size="8">
  504. 总装机容量
  505. </text>
  506. <text x="530" y="89" fill="#05bb4c" font-size="8">
  507. {{
  508. homeSuspensionWindowsData[getmapName("河北")]
  509. ?.hbcyzzjrl || 0
  510. }}
  511. </text>
  512. <text x="550" y="89" fill="#919697" font-size="8">MW</text>
  513. <text x="480" y="101" fill="#ffffff" font-size="8">风场</text>
  514. <text x="500" y="101" fill="#05bb4c" font-size="8">
  515. {{
  516. homeSuspensionWindowsData[getmapName("河北")]
  517. ?.hbcyfdcsl || 0
  518. }}
  519. </text>
  520. <text x="510" y="101" fill="#ffffff" font-size="8">
  521. 个,装机容量
  522. </text>
  523. <text x="560" y="101" fill="#05bb4c" font-size="8">
  524. {{
  525. homeSuspensionWindowsData[getmapName("河北")]
  526. ?.hbcyfdzjrl || 0
  527. }}
  528. </text>
  529. <text x="580" y="101" fill="#919697" font-size="8">MW</text>
  530. <text x="480" y="113" fill="#ffffff" font-size="8">光伏</text>
  531. <text x="500" y="113" fill="#05bb4c" font-size="8">
  532. {{
  533. homeSuspensionWindowsData[getmapName("河北")]
  534. ?.hbcygfcsl || 0
  535. }}
  536. </text>
  537. <text x="510" y="113" fill="#ffffff" font-size="8">
  538. 个,装机容量
  539. </text>
  540. <text x="560" y="113" fill="#05bb4c" font-size="8">
  541. {{
  542. homeSuspensionWindowsData[getmapName("河北")]
  543. ?.hbcyfdzjrl || 0
  544. }}
  545. </text>
  546. <text x="580" y="113" fill="#919697" font-size="8">MW</text>
  547. <text
  548. x="480"
  549. y="125"
  550. fill="#ffffff"
  551. font-size="8"
  552. font-weight="bold"
  553. >
  554. 清洁能源公司
  555. </text>
  556. <text x="480" y="137" fill="#ffffff" font-size="8">
  557. 总装机容量
  558. </text>
  559. <text x="530" y="137" fill="#05bb4c" font-size="8">
  560. {{
  561. homeSuspensionWindowsData[getmapName("河北")]
  562. ?.hbgszzjrl || 0
  563. }}
  564. </text>
  565. <text x="550" y="137" fill="#919697" font-size="8">MW</text>
  566. <text x="480" y="149" fill="#ffffff" font-size="8">风场</text>
  567. <text x="500" y="149" fill="#05bb4c" font-size="8">
  568. {{
  569. homeSuspensionWindowsData[getmapName("河北")]
  570. ?.hbgsfdcslcsl || 0
  571. }}
  572. </text>
  573. <text x="510" y="149" fill="#ffffff" font-size="8">
  574. 个,装机容量
  575. </text>
  576. <text x="560" y="149" fill="#05bb4c" font-size="8">
  577. {{
  578. homeSuspensionWindowsData[getmapName("河北")]
  579. ?.hbgsfdzjrl || 0
  580. }}
  581. </text>
  582. <text x="580" y="149" fill="#919697" font-size="8">MW</text>
  583. <text x="480" y="161" fill="#ffffff" font-size="8">光伏</text>
  584. <text x="500" y="161" fill="#05bb4c" font-size="8">
  585. {{
  586. homeSuspensionWindowsData[getmapName("河北")]
  587. ?.hbgsgfcsl || 0
  588. }}
  589. </text>
  590. <text x="510" y="161" fill="#ffffff" font-size="8">
  591. 个,装机容量
  592. </text>
  593. <text x="560" y="161" fill="#05bb4c" font-size="8">
  594. {{
  595. homeSuspensionWindowsData[getmapName("河北")]
  596. ?.hbgsgfzjrl || 0
  597. }}
  598. </text>
  599. <text x="580" y="161" fill="#919697" font-size="8">MW</text>
  600. </g>
  601. <g v-else>
  602. <rect
  603. x="475"
  604. y="115"
  605. width="130"
  606. height="55"
  607. fill="#000000"
  608. stroke="#46C55A35"
  609. opacity="0.8"
  610. />
  611. <g
  612. v-show="
  613. homeSuspensionWindowsData[getmapName('河北')]
  614. ?.industryState
  615. "
  616. >
  617. <text
  618. x="480"
  619. y="127"
  620. fill="#ffffff"
  621. font-size="8"
  622. font-weight="bold"
  623. >
  624. 清洁能源产业
  625. </text>
  626. <text x="480" y="139" fill="#ffffff" font-size="8">
  627. 总装机容量
  628. </text>
  629. <text x="530" y="139" fill="#05bb4c" font-size="8">
  630. {{
  631. homeSuspensionWindowsData[getmapName("河北")]
  632. ?.hbcyzzjrl || 0
  633. }}
  634. </text>
  635. <text x="550" y="139" fill="#919697" font-size="8">MW</text>
  636. <text x="480" y="151" fill="#ffffff" font-size="8">
  637. 风场
  638. </text>
  639. <text x="500" y="151" fill="#05bb4c" font-size="8">
  640. {{
  641. homeSuspensionWindowsData[getmapName("河北")]
  642. ?.hbcyfdcsl || 0
  643. }}
  644. </text>
  645. <text x="510" y="151" fill="#ffffff" font-size="8">
  646. 个,装机容量
  647. </text>
  648. <text x="560" y="151" fill="#05bb4c" font-size="8">
  649. {{
  650. homeSuspensionWindowsData[getmapName("河北")]
  651. ?.hbcyfdzjrl || 0
  652. }}
  653. </text>
  654. <text x="580" y="151" fill="#919697" font-size="8">MW</text>
  655. <text x="480" y="163" fill="#ffffff" font-size="8">
  656. 光伏
  657. </text>
  658. <text x="500" y="163" fill="#05bb4c" font-size="8">
  659. {{
  660. homeSuspensionWindowsData[getmapName("河北")]
  661. ?.hbcygfcsl || 0
  662. }}
  663. </text>
  664. <text x="510" y="163" fill="#ffffff" font-size="8">
  665. 个,装机容量
  666. </text>
  667. <text x="560" y="163" fill="#05bb4c" font-size="8">
  668. {{
  669. homeSuspensionWindowsData[getmapName("河北")]
  670. ?.hbcygfzjrl || 0
  671. }}
  672. </text>
  673. <text x="580" y="163" fill="#919697" font-size="8">MW</text>
  674. </g>
  675. <g
  676. v-show="
  677. homeSuspensionWindowsData[getmapName('河北')]
  678. ?.companyState
  679. "
  680. >
  681. <text
  682. x="480"
  683. y="127"
  684. fill="#ffffff"
  685. font-size="8"
  686. font-weight="bold"
  687. >
  688. 清洁能源公司
  689. </text>
  690. <text x="480" y="139" fill="#ffffff" font-size="8">
  691. 总装机容量
  692. </text>
  693. <text x="530" y="139" fill="#05bb4c" font-size="8">
  694. {{
  695. homeSuspensionWindowsData[getmapName("河北")]
  696. ?.hbgszzjrl || 0
  697. }}
  698. </text>
  699. <text x="550" y="139" fill="#919697" font-size="8">MW</text>
  700. <text x="480" y="151" fill="#ffffff" font-size="8">
  701. 风场
  702. </text>
  703. <text x="500" y="151" fill="#05bb4c" font-size="8">
  704. {{
  705. homeSuspensionWindowsData[getmapName("河北")]
  706. ?.hbgsfdcslcsl || 0
  707. }}
  708. </text>
  709. <text x="510" y="151" fill="#ffffff" font-size="8">
  710. 个,装机容量
  711. </text>
  712. <text x="560" y="151" fill="#05bb4c" font-size="8">
  713. {{
  714. homeSuspensionWindowsData[getmapName("河北")]
  715. ?.hbgsfdcslcslzjrl || 0
  716. }}
  717. </text>
  718. <text x="580" y="151" fill="#919697" font-size="8">MW</text>
  719. <text x="480" y="163" fill="#ffffff" font-size="8">
  720. 光伏
  721. </text>
  722. <text x="500" y="163" fill="#05bb4c" font-size="8">
  723. {{
  724. homeSuspensionWindowsData[getmapName("河北")]
  725. ?.hbgsgfcsl || 0
  726. }}
  727. </text>
  728. <text x="510" y="163" fill="#ffffff" font-size="8">
  729. 个,装机容量
  730. </text>
  731. <text x="560" y="163" fill="#05bb4c" font-size="8">
  732. {{
  733. homeSuspensionWindowsData[getmapName("河北")]
  734. ?.hbgsgfzjrl || 0
  735. }}
  736. </text>
  737. <text x="580" y="163" fill="#919697" font-size="8">MW</text>
  738. </g>
  739. </g>
  740. </g>
  741. </g>
  742. </g>
  743. <!-- 新疆 -->
  744. <g v-if="showPoint && $store.state.themeName === 'dark'">
  745. <g
  746. v-if="showType === 'all' || showType === 'fc'"
  747. class="item-label"
  748. @click.stop="clickIncident('新疆')"
  749. @mouseover="mouseoverIncident('新疆')"
  750. @mouseout="mouseoutIncident('新疆')"
  751. >
  752. <use
  753. xlink:href="#nx-map-circle-1"
  754. x="200"
  755. y="93"
  756. width="100"
  757. height="100"
  758. />
  759. <text class="mapKey" x="218" y="167" fill="#fff" font-size="8">
  760. 新疆
  761. </text>
  762. <g v-show="mapDataContentState === '新疆'">
  763. <g
  764. v-if="
  765. homeSuspensionWindowsData[getmapName('新疆')]
  766. ?.industryState &&
  767. homeSuspensionWindowsData[getmapName('新疆')]?.companyState
  768. "
  769. >
  770. <rect
  771. x="220"
  772. y="102"
  773. width="130"
  774. height="105"
  775. fill="#000000"
  776. stroke="#46C55A35"
  777. opacity="0.8"
  778. />
  779. <text
  780. x="225"
  781. y="113"
  782. fill="#919697"
  783. font-size="8"
  784. font-weight="bold"
  785. >
  786. 清洁能源产业
  787. </text>
  788. <text x="225" y="125" fill="#919697" font-size="8">
  789. 总装机容量
  790. </text>
  791. <text x="275" y="125" fill="#05bb4c" font-size="8">
  792. {{
  793. homeSuspensionWindowsData[getmapName("新疆")]
  794. ?.xjcyzzjrl || 0
  795. }}
  796. </text>
  797. <text x="295" y="125" fill="#919697" font-size="8">MW</text>
  798. <text x="225" y="137" fill="#919697" font-size="8">风场</text>
  799. <text x="245" y="137" fill="#05bb4c" font-size="8">
  800. {{
  801. homeSuspensionWindowsData[getmapName("新疆")]
  802. ?.xjcyfdcsl || 0
  803. }}
  804. </text>
  805. <text x="255" y="137" fill="#919697" font-size="8">
  806. 个,装机容量
  807. </text>
  808. <text x="305" y="137" fill="#05bb4c" font-size="8">
  809. {{
  810. homeSuspensionWindowsData[getmapName("新疆")]
  811. ?.xjcyfdzjrl || 0
  812. }}
  813. </text>
  814. <text x="325" y="137" fill="#919697" font-size="8">MW</text>
  815. <text x="225" y="149" fill="#919697" font-size="8">光伏</text>
  816. <text x="245" y="149" fill="#05bb4c" font-size="8">
  817. {{
  818. homeSuspensionWindowsData[getmapName("新疆")]
  819. ?.xjcygfcsl || 0
  820. }}
  821. </text>
  822. <text x="255" y="149" fill="#919697" font-size="8">
  823. 个,装机容量
  824. </text>
  825. <text x="305" y="149" fill="#05bb4c" font-size="8">
  826. {{
  827. homeSuspensionWindowsData[getmapName("新疆")]
  828. ?.xjcygfzjrl || 0
  829. }}
  830. </text>
  831. <text x="325" y="149" fill="#919697" font-size="8">MW</text>
  832. <text
  833. x="225"
  834. y="161"
  835. fill="#919697"
  836. font-size="8"
  837. font-weight="bold"
  838. >
  839. 清洁能源公司
  840. </text>
  841. <text x="225" y="173" fill="#919697" font-size="8">
  842. 总装机容量
  843. </text>
  844. <text x="275" y="173" fill="#05bb4c" font-size="8">
  845. {{
  846. homeSuspensionWindowsData[getmapName("新疆")]
  847. ?.xjgszzjrl || 0
  848. }}
  849. </text>
  850. <text x="295" y="173" fill="#919697" font-size="8">MW</text>
  851. <text x="225" y="185" fill="#919697" font-size="8">风场</text>
  852. <text x="245" y="185" fill="#05bb4c" font-size="8">
  853. {{
  854. homeSuspensionWindowsData[getmapName("新疆")]
  855. ?.xjgsfdcslcsl || 0
  856. }}
  857. </text>
  858. <text x="255" y="185" fill="#919697" font-size="8">
  859. 个,装机容量
  860. </text>
  861. <text x="305" y="185" fill="#05bb4c" font-size="8">
  862. {{
  863. homeSuspensionWindowsData[getmapName("新疆")]
  864. ?.xjgsfdcslcslzjrl || 0
  865. }}
  866. </text>
  867. <text x="325" y="185" fill="#919697" font-size="8">MW</text>
  868. <text x="225" y="197" fill="#919697" font-size="8">光伏</text>
  869. <text x="245" y="197" fill="#05bb4c" font-size="8">
  870. {{
  871. homeSuspensionWindowsData[getmapName("新疆")]
  872. ?.xjgsgfcsl || 0
  873. }}
  874. </text>
  875. <text x="255" y="197" fill="#919697" font-size="8">
  876. 个,装机容量
  877. </text>
  878. <text x="305" y="197" fill="#05bb4c" font-size="8">
  879. {{
  880. homeSuspensionWindowsData[getmapName("新疆")]
  881. ?.xjgsgfzjrl || 0
  882. }}
  883. </text>
  884. <text x="325" y="197" fill="#919697" font-size="8">MW</text>
  885. </g>
  886. <g v-else>
  887. <rect
  888. x="240"
  889. y="152"
  890. width="130"
  891. height="55"
  892. fill="#000000"
  893. stroke="#46C55A35"
  894. opacity="0.8"
  895. />
  896. <g
  897. v-show="
  898. homeSuspensionWindowsData[getmapName('新疆')]
  899. ?.industryState
  900. "
  901. >
  902. <text
  903. x="245"
  904. y="163"
  905. fill="#919697"
  906. font-size="8"
  907. font-weight="bold"
  908. >
  909. 清洁能源产业
  910. </text>
  911. <text x="245" y="175" fill="#919697" font-size="8">
  912. 总装机容量
  913. </text>
  914. <text x="295" y="175" fill="#05bb4c" font-size="8">
  915. {{
  916. homeSuspensionWindowsData[getmapName("新疆")]
  917. ?.xjcyzzjrl || 0
  918. }}
  919. </text>
  920. <text x="315" y="175" fill="#919697" font-size="8">MW</text>
  921. <text x="245" y="187" fill="#919697" font-size="8">
  922. 风场
  923. </text>
  924. <text x="265" y="187" fill="#05bb4c" font-size="8">
  925. {{
  926. homeSuspensionWindowsData[getmapName("新疆")]
  927. ?.xjcyfdcsl || 0
  928. }}
  929. </text>
  930. <text x="275" y="187" fill="#919697" font-size="8">
  931. 个,装机容量
  932. </text>
  933. <text x="325" y="187" fill="#05bb4c" font-size="8">
  934. {{
  935. homeSuspensionWindowsData[getmapName("新疆")]
  936. ?.xjcyfdzjrl || 0
  937. }}
  938. </text>
  939. <text x="345" y="187" fill="#919697" font-size="8">MW</text>
  940. <text x="245" y="199" fill="#919697" font-size="8">
  941. 光伏
  942. </text>
  943. <text x="265" y="199" fill="#05bb4c" font-size="8">
  944. {{
  945. homeSuspensionWindowsData[getmapName("新疆")]
  946. ?.xjcygfcsl || 0
  947. }}
  948. </text>
  949. <text x="275" y="199" fill="#919697" font-size="8">
  950. 个,装机容量
  951. </text>
  952. <text x="325" y="199" fill="#05bb4c" font-size="8">
  953. {{
  954. homeSuspensionWindowsData[getmapName("新疆")]
  955. ?.xjcygfzjrl || 0
  956. }}
  957. </text>
  958. <text x="345" y="199" fill="#919697" font-size="8">MW</text>
  959. </g>
  960. <g
  961. v-show="
  962. homeSuspensionWindowsData[getmapName('新疆')]
  963. ?.companyState
  964. "
  965. >
  966. <text
  967. x="245"
  968. y="163"
  969. fill="#919697"
  970. font-size="8"
  971. font-weight="bold"
  972. >
  973. 清洁能源公司
  974. </text>
  975. <text x="245" y="175" fill="#919697" font-size="8">
  976. 总装机容量
  977. </text>
  978. <text x="295" y="175" fill="#05bb4c" font-size="8">
  979. {{
  980. homeSuspensionWindowsData[getmapName("新疆")]
  981. ?.xjgszzjrl || 0
  982. }}
  983. </text>
  984. <text x="305" y="175" fill="#919697" font-size="8">MW</text>
  985. <text x="245" y="187" fill="#919697" font-size="8">
  986. 风场
  987. </text>
  988. <text x="265" y="187" fill="#05bb4c" font-size="8">
  989. {{
  990. homeSuspensionWindowsData[getmapName("新疆")]
  991. ?.xjgsfdcsl || 0
  992. }}
  993. </text>
  994. <text x="275" y="187" fill="#919697" font-size="8">
  995. 个,装机容量
  996. </text>
  997. <text x="325" y="187" fill="#05bb4c" font-size="8">
  998. {{
  999. homeSuspensionWindowsData[getmapName("新疆")]
  1000. ?.xjgsfdzjrl || 0
  1001. }}
  1002. </text>
  1003. <text x="345" y="187" fill="#919697" font-size="8">MW</text>
  1004. <text x="245" y="199" fill="#919697" font-size="8">
  1005. 光伏
  1006. </text>
  1007. <text x="265" y="199" fill="#05bb4c" font-size="8">
  1008. {{
  1009. homeSuspensionWindowsData[getmapName("新疆")]
  1010. ?.xjgsgfcsl || 0
  1011. }}
  1012. </text>
  1013. <text x="275" y="199" fill="#919697" font-size="8">
  1014. 个,装机容量
  1015. </text>
  1016. <text x="325" y="199" fill="#05bb4c" font-size="8">
  1017. {{
  1018. homeSuspensionWindowsData[getmapName("新疆")]
  1019. ?.xjgsgfzjrl || 0
  1020. }}
  1021. </text>
  1022. <text x="345" y="199" fill="#919697" font-size="8">MW</text>
  1023. </g>
  1024. </g>
  1025. </g>
  1026. </g>
  1027. </g>
  1028. <g v-if="showPoint && $store.state.themeName === 'light'">
  1029. <g
  1030. v-if="showType === 'all' || showType === 'fc'"
  1031. class="item-label"
  1032. @click.stop="clickIncident('新疆')"
  1033. @mouseover="mouseoverIncident('新疆')"
  1034. @mouseout="mouseoutIncident('新疆')"
  1035. >
  1036. <use
  1037. xlink:href="#nx-map-circle-1"
  1038. x="250"
  1039. y="88"
  1040. width="100"
  1041. height="100"
  1042. />
  1043. <text class="mapKey" x="267" y="155" fill="#fff" font-size="8">
  1044. 新疆
  1045. </text>
  1046. <g v-show="mapDataContentState === '新疆'">
  1047. <g
  1048. v-if="
  1049. homeSuspensionWindowsData[getmapName('新疆')]
  1050. ?.industryState &&
  1051. homeSuspensionWindowsData[getmapName('新疆')]?.companyState
  1052. "
  1053. >
  1054. <rect
  1055. x="270"
  1056. y="100"
  1057. width="130"
  1058. height="105"
  1059. fill="#000000"
  1060. stroke="#46C55A35"
  1061. opacity="0.8"
  1062. />
  1063. <text
  1064. x="275"
  1065. y="113"
  1066. fill="#ffffff"
  1067. font-size="8"
  1068. font-weight="bold"
  1069. >
  1070. 清洁能源产业
  1071. </text>
  1072. <text x="275" y="125" fill="#ffffff" font-size="8">
  1073. 总装机容量
  1074. </text>
  1075. <text x="345" y="125" fill="#05bb4c" font-size="8">
  1076. {{
  1077. homeSuspensionWindowsData[getmapName("新疆")]
  1078. ?.xjcyzzjrl || 0
  1079. }}
  1080. </text>
  1081. <text x="365" y="125" fill="#919697" font-size="8">MW</text>
  1082. <text x="295" y="137" fill="#ffffff" font-size="8">风场</text>
  1083. <text x="315" y="137" fill="#05bb4c" font-size="8">
  1084. {{
  1085. homeSuspensionWindowsData[getmapName("新疆")]
  1086. ?.xjcyfdcsl || 0
  1087. }}
  1088. </text>
  1089. <text x="325" y="137" fill="#ffffff" font-size="8">
  1090. 个,装机容量
  1091. </text>
  1092. <text x="375" y="137" fill="#05bb4c" font-size="8">
  1093. {{
  1094. homeSuspensionWindowsData[getmapName("新疆")]
  1095. ?.xjcyfdzjrl || 0
  1096. }}
  1097. </text>
  1098. <text x="395" y="137" fill="#919697" font-size="8">MW</text>
  1099. <text x="295" y="149" fill="#ffffff" font-size="8">光伏</text>
  1100. <text x="315" y="149" fill="#05bb4c" font-size="8">
  1101. {{
  1102. homeSuspensionWindowsData[getmapName("新疆")]
  1103. ?.xjcygfcsl || 0
  1104. }}
  1105. </text>
  1106. <text x="325" y="149" fill="#ffffff" font-size="8">
  1107. 个,装机容量
  1108. </text>
  1109. <text x="375" y="149" fill="#05bb4c" font-size="8">
  1110. {{
  1111. homeSuspensionWindowsData[getmapName("新疆")]
  1112. ?.xjcygfzjrl || 0
  1113. }}
  1114. </text>
  1115. <text x="395" y="149" fill="#919697" font-size="8">MW</text>
  1116. <text
  1117. x="295"
  1118. y="161"
  1119. fill="#ffffff"
  1120. font-size="8"
  1121. font-weight="bold"
  1122. >
  1123. 清洁能源公司
  1124. </text>
  1125. <text x="295" y="173" fill="#ffffff" font-size="8">
  1126. 总装机容量
  1127. </text>
  1128. <text x="345" y="173" fill="#05bb4c" font-size="8">
  1129. {{
  1130. homeSuspensionWindowsData[getmapName("新疆")]
  1131. ?.xjgszzjrl || 0
  1132. }}
  1133. </text>
  1134. <text x="365" y="173" fill="#919697" font-size="8">MW</text>
  1135. <text x="295" y="185" fill="#ffffff" font-size="8">风场</text>
  1136. <text x="315" y="185" fill="#05bb4c" font-size="8">
  1137. {{
  1138. homeSuspensionWindowsData[getmapName("新疆")]
  1139. ?.xjgsfdcsl || 0
  1140. }}
  1141. </text>
  1142. <text x="325" y="185" fill="#ffffff" font-size="8">
  1143. 个,装机容量
  1144. </text>
  1145. <text x="375" y="185" fill="#05bb4c" font-size="8">
  1146. {{
  1147. homeSuspensionWindowsData[getmapName("新疆")]
  1148. ?.xjgsfdzjrl || 0
  1149. }}
  1150. </text>
  1151. <text x="395" y="185" fill="#919697" font-size="8">MW</text>
  1152. <text x="295" y="197" fill="#ffffff" font-size="8">光伏</text>
  1153. <text x="315" y="197" fill="#05bb4c" font-size="8">
  1154. {{
  1155. homeSuspensionWindowsData[getmapName("新疆")]
  1156. ?.xjgsgfcsl || 0
  1157. }}
  1158. </text>
  1159. <text x="325" y="197" fill="#ffffff" font-size="8">
  1160. 个,装机容量
  1161. </text>
  1162. <text x="375" y="197" fill="#05bb4c" font-size="8">
  1163. {{
  1164. homeSuspensionWindowsData[getmapName("新疆")]
  1165. ?.xjgsgfzjrl || 0
  1166. }}
  1167. </text>
  1168. <text x="395" y="197" fill="#919697" font-size="8">MW</text>
  1169. </g>
  1170. <g v-else>
  1171. <rect
  1172. x="290"
  1173. y="150"
  1174. width="130"
  1175. height="55"
  1176. fill="#000000"
  1177. stroke="#46C55A35"
  1178. opacity="0.8"
  1179. />
  1180. <g
  1181. v-show="
  1182. homeSuspensionWindowsData[getmapName('新疆')]
  1183. ?.industryState
  1184. "
  1185. >
  1186. <text
  1187. x="295"
  1188. y="163"
  1189. fill="#ffffff"
  1190. font-size="8"
  1191. font-weight="bold"
  1192. >
  1193. 清洁能源产业
  1194. </text>
  1195. <text x="295" y="175" fill="#ffffff" font-size="8">
  1196. 总装机容量
  1197. </text>
  1198. <text x="345" y="175" fill="#05bb4c" font-size="8">
  1199. {{
  1200. homeSuspensionWindowsData[getmapName("新疆")]
  1201. ?.xjcyzzjrl || 0
  1202. }}
  1203. </text>
  1204. <text x="365" y="175" fill="#919697" font-size="8">MW</text>
  1205. <text x="295" y="187" fill="#ffffff" font-size="8">
  1206. 风场
  1207. </text>
  1208. <text x="315" y="187" fill="#05bb4c" font-size="8">
  1209. {{
  1210. homeSuspensionWindowsData[getmapName("新疆")]
  1211. ?.xjcyfdcsl || 0
  1212. }}
  1213. </text>
  1214. <text x="325" y="187" fill="#ffffff" font-size="8">
  1215. 个,装机容量
  1216. </text>
  1217. <text x="375" y="187" fill="#05bb4c" font-size="8">
  1218. {{
  1219. homeSuspensionWindowsData[getmapName("新疆")]
  1220. ?.xjcyfdzjrl || 0
  1221. }}
  1222. </text>
  1223. <text x="395" y="187" fill="#919697" font-size="8">MW</text>
  1224. <text x="295" y="199" fill="#ffffff" font-size="8">
  1225. 光伏
  1226. </text>
  1227. <text x="315" y="199" fill="#05bb4c" font-size="8">
  1228. {{
  1229. homeSuspensionWindowsData[getmapName("新疆")]
  1230. ?.xjcygfcsl || 0
  1231. }}
  1232. </text>
  1233. <text x="325" y="199" fill="#ffffff" font-size="8">
  1234. 个,装机容量
  1235. </text>
  1236. <text x="375" y="199" fill="#05bb4c" font-size="8">
  1237. {{
  1238. homeSuspensionWindowsData[getmapName("新疆")]
  1239. ?.xjcygfzjrl || 0
  1240. }}
  1241. </text>
  1242. <text x="395" y="199" fill="#919697" font-size="8">MW</text>
  1243. </g>
  1244. <g
  1245. v-show="
  1246. homeSuspensionWindowsData[getmapName('新疆')]
  1247. ?.companyState
  1248. "
  1249. >
  1250. <text
  1251. x="275"
  1252. y="163"
  1253. fill="#ffffff"
  1254. font-size="8"
  1255. font-weight="bold"
  1256. >
  1257. 清洁能源公司
  1258. </text>
  1259. <text x="275" y="175" fill="#ffffff" font-size="8">
  1260. 总装机容量
  1261. </text>
  1262. <text x="325" y="175" fill="#05bb4c" font-size="8">
  1263. {{
  1264. homeSuspensionWindowsData[getmapName("新疆")]
  1265. ?.xjgszzjrl || 0
  1266. }}
  1267. </text>
  1268. <text x="345" y="175" fill="#919697" font-size="8">MW</text>
  1269. <text x="275" y="187" fill="#ffffff" font-size="8">
  1270. 风场
  1271. </text>
  1272. <text x="295" y="187" fill="#05bb4c" font-size="8">
  1273. {{
  1274. homeSuspensionWindowsData[getmapName("新疆")]
  1275. ?.xjgsfdcsl || 0
  1276. }}
  1277. </text>
  1278. <text x="305" y="187" fill="#ffffff" font-size="8">
  1279. 个,装机容量
  1280. </text>
  1281. <text x="375" y="187" fill="#05bb4c" font-size="8">
  1282. {{
  1283. homeSuspensionWindowsData[getmapName("新疆")]
  1284. ?.xjgsfdzjrl || 0
  1285. }}
  1286. </text>
  1287. <text x="375" y="187" fill="#919697" font-size="8">MW</text>
  1288. <text x="275" y="199" fill="#ffffff" font-size="8">
  1289. 光伏
  1290. </text>
  1291. <text x="295" y="199" fill="#05bb4c" font-size="8">
  1292. {{
  1293. homeSuspensionWindowsData[getmapName("新疆")]
  1294. ?.xjgsgfcsl || 0
  1295. }}
  1296. </text>
  1297. <text x="305" y="199" fill="#ffffff" font-size="8">
  1298. 个,装机容量
  1299. </text>
  1300. <text x="375" y="199" fill="#05bb4c" font-size="8">
  1301. {{
  1302. homeSuspensionWindowsData[getmapName("新疆")]
  1303. ?.xjgsgfzjrl || 0
  1304. }}
  1305. </text>
  1306. <text x="375" y="199" fill="#919697" font-size="8">MW</text>
  1307. </g>
  1308. </g>
  1309. </g>
  1310. </g>
  1311. </g>
  1312. <!-- 西藏 -->
  1313. <g v-if="showPoint && $store.state.themeName === 'dark'">
  1314. <g
  1315. v-if="showType === 'all' || showType === 'fc'"
  1316. class="item-label"
  1317. @click.stop="clickIncident('西藏')"
  1318. @mouseover="mouseoverIncident('西藏')"
  1319. @mouseout="mouseoutIncident('西藏')"
  1320. >
  1321. <use
  1322. xlink:href="#nx-map-circle-1"
  1323. x="215"
  1324. y="170"
  1325. width="100"
  1326. height="100"
  1327. />
  1328. <text class="mapKey" x="230" y="240" fill="#fff" font-size="8">
  1329. 西藏
  1330. </text>
  1331. <g v-show="mapDataContentState === '西藏'">
  1332. <g
  1333. v-if="
  1334. homeSuspensionWindowsData[getmapName('西藏')]
  1335. ?.industryState &&
  1336. homeSuspensionWindowsData[getmapName('西藏')]?.companyState
  1337. "
  1338. >
  1339. <rect
  1340. x="255"
  1341. y="228"
  1342. width="130"
  1343. height="105"
  1344. fill="#000000"
  1345. stroke="#46C55A35"
  1346. opacity="0.8"
  1347. />
  1348. <text
  1349. x="260"
  1350. y="239"
  1351. fill="#919697"
  1352. font-size="8"
  1353. font-weight="bold"
  1354. >
  1355. 清洁能源产业
  1356. </text>
  1357. <text x="260" y="251" fill="#919697" font-size="8">
  1358. 总装机容量
  1359. </text>
  1360. <text x="310" y="251" fill="#05bb4c" font-size="8">
  1361. {{
  1362. homeSuspensionWindowsData[getmapName("西藏")]
  1363. ?.xzcyzzjrl || 0
  1364. }}
  1365. </text>
  1366. <text x="320" y="251" fill="#919697" font-size="8">MW</text>
  1367. <text x="260" y="263" fill="#919697" font-size="8">风场</text>
  1368. <text x="280" y="263" fill="#05bb4c" font-size="8">
  1369. {{
  1370. homeSuspensionWindowsData[getmapName("西藏")]
  1371. ?.xzcyfdcsl || 0
  1372. }}
  1373. </text>
  1374. <text x="290" y="263" fill="#919697" font-size="8">
  1375. 个,装机容量
  1376. </text>
  1377. <text x="340" y="263" fill="#05bb4c" font-size="8">
  1378. {{
  1379. homeSuspensionWindowsData[getmapName("西藏")]
  1380. ?.xzcyfdzjrl || 0
  1381. }}
  1382. </text>
  1383. <text x="360" y="263" fill="#919697" font-size="8">MW</text>
  1384. <text x="260" y="275" fill="#919697" font-size="8">光伏</text>
  1385. <text x="280" y="275" fill="#05bb4c" font-size="8">
  1386. {{
  1387. homeSuspensionWindowsData[getmapName("西藏")]
  1388. ?.xzcygfcsl || 0
  1389. }}
  1390. </text>
  1391. <text x="290" y="275" fill="#919697" font-size="8">
  1392. 个,装机容量
  1393. </text>
  1394. <text x="340" y="275" fill="#05bb4c" font-size="8">
  1395. {{
  1396. homeSuspensionWindowsData[getmapName("西藏")]
  1397. ?.xzcygfzjrl || 0
  1398. }}
  1399. </text>
  1400. <text x="360" y="275" fill="#919697" font-size="8">MW</text>
  1401. <text
  1402. x="260"
  1403. y="287"
  1404. fill="#919697"
  1405. font-size="8"
  1406. font-weight="bold"
  1407. >
  1408. 清洁能源公司
  1409. </text>
  1410. <text x="260" y="299" fill="#919697" font-size="8">
  1411. 总装机容量
  1412. </text>
  1413. <text x="310" y="299" fill="#05bb4c" font-size="8">
  1414. {{
  1415. homeSuspensionWindowsData[getmapName("西藏")]
  1416. ?.xzgszzjrl || 0
  1417. }}
  1418. </text>
  1419. <text x="330" y="299" fill="#919697" font-size="8">MW</text>
  1420. <text x="260" y="311" fill="#919697" font-size="8">风场</text>
  1421. <text x="280" y="311" fill="#05bb4c" font-size="8">
  1422. {{
  1423. homeSuspensionWindowsData[getmapName("西藏")]
  1424. ?.xzgsfdcsl || 0
  1425. }}
  1426. </text>
  1427. <text x="290" y="311" fill="#919697" font-size="8">
  1428. 个,装机容量
  1429. </text>
  1430. <text x="340" y="311" fill="#05bb4c" font-size="8">
  1431. {{
  1432. homeSuspensionWindowsData[getmapName("西藏")]
  1433. ?.xzgsfdzjrl || 0
  1434. }}
  1435. </text>
  1436. <text x="360" y="311" fill="#919697" font-size="8">MW</text>
  1437. <text x="260" y="323" fill="#919697" font-size="8">光伏</text>
  1438. <text x="280" y="323" fill="#05bb4c" font-size="8">
  1439. {{
  1440. homeSuspensionWindowsData[getmapName("西藏")]
  1441. ?.xzgsgfcsl || 0
  1442. }}
  1443. </text>
  1444. <text x="290" y="323" fill="#919697" font-size="8">
  1445. 个,装机容量
  1446. </text>
  1447. <text x="340" y="323" fill="#05bb4c" font-size="8">
  1448. {{
  1449. homeSuspensionWindowsData[getmapName("西藏")]
  1450. ?.xzgsgfzjrl || 0
  1451. }}
  1452. </text>
  1453. <text x="360" y="323" fill="#919697" font-size="8">MW</text>
  1454. </g>
  1455. <g v-else>
  1456. <rect
  1457. x="255"
  1458. y="228"
  1459. width="130"
  1460. height="55"
  1461. fill="#000000"
  1462. stroke="#46C55A35"
  1463. opacity="0.8"
  1464. />
  1465. <g
  1466. v-show="
  1467. homeSuspensionWindowsData[getmapName('西藏')]
  1468. ?.industryState
  1469. "
  1470. >
  1471. <text
  1472. x="260"
  1473. y="239"
  1474. fill="#919697"
  1475. font-size="8"
  1476. font-weight="bold"
  1477. >
  1478. 清洁能源产业
  1479. </text>
  1480. <text x="260" y="251" fill="#919697" font-size="8">
  1481. 总装机容量
  1482. </text>
  1483. <text x="310" y="251" fill="#05bb4c" font-size="8">
  1484. {{
  1485. homeSuspensionWindowsData[getmapName("西藏")]
  1486. ?.xzcyzzjrl || 0
  1487. }}
  1488. </text>
  1489. <text x="320" y="251" fill="#919697" font-size="8">MW</text>
  1490. <text x="260" y="263" fill="#919697" font-size="8">
  1491. 风场
  1492. </text>
  1493. <text x="280" y="263" fill="#05bb4c" font-size="8">
  1494. {{
  1495. homeSuspensionWindowsData[getmapName("西藏")]
  1496. ?.xzcyfdcsl || 0
  1497. }}
  1498. </text>
  1499. <text x="290" y="263" fill="#919697" font-size="8">
  1500. 个,装机容量
  1501. </text>
  1502. <text x="340" y="263" fill="#05bb4c" font-size="8">
  1503. {{
  1504. homeSuspensionWindowsData[getmapName("西藏")]
  1505. ?.xzcyfdzjrl || 0
  1506. }}
  1507. </text>
  1508. <text x="360" y="263" fill="#919697" font-size="8">MW</text>
  1509. <text x="260" y="275" fill="#919697" font-size="8">
  1510. 光伏
  1511. </text>
  1512. <text x="280" y="275" fill="#05bb4c" font-size="8">
  1513. {{
  1514. homeSuspensionWindowsData[getmapName("西藏")]
  1515. ?.xzcygfcsl || 0
  1516. }}
  1517. </text>
  1518. <text x="290" y="275" fill="#919697" font-size="8">
  1519. 个,装机容量
  1520. </text>
  1521. <text x="340" y="275" fill="#05bb4c" font-size="8">
  1522. {{
  1523. homeSuspensionWindowsData[getmapName("西藏")]
  1524. ?.xzcygfzjrl || 0
  1525. }}
  1526. </text>
  1527. <text x="360" y="275" fill="#919697" font-size="8">MW</text>
  1528. </g>
  1529. <g
  1530. v-show="
  1531. homeSuspensionWindowsData[getmapName('西藏')]
  1532. ?.companyState
  1533. "
  1534. >
  1535. <text
  1536. x="260"
  1537. y="239"
  1538. fill="#919697"
  1539. font-size="8"
  1540. font-weight="bold"
  1541. >
  1542. 清洁能源公司
  1543. </text>
  1544. <text x="260" y="251" fill="#919697" font-size="8">
  1545. 总装机容量
  1546. </text>
  1547. <text x="310" y="251" fill="#05bb4c" font-size="8">
  1548. {{
  1549. homeSuspensionWindowsData[getmapName("西藏")]
  1550. ?.xzgszzjrl || 0
  1551. }}
  1552. </text>
  1553. <text x="330" y="251" fill="#919697" font-size="8">MW</text>
  1554. <text x="260" y="263" fill="#919697" font-size="8">
  1555. 风场
  1556. </text>
  1557. <text x="280" y="263" fill="#05bb4c" font-size="8">
  1558. {{
  1559. homeSuspensionWindowsData[getmapName("西藏")]
  1560. ?.xzgsfdcsl || 0
  1561. }}
  1562. </text>
  1563. <text x="290" y="263" fill="#919697" font-size="8">
  1564. 个,装机容量
  1565. </text>
  1566. <text x="340" y="263" fill="#05bb4c" font-size="8">
  1567. {{
  1568. homeSuspensionWindowsData[getmapName("西藏")]
  1569. ?.xzgsfdzjrl || 0
  1570. }}
  1571. </text>
  1572. <text x="360" y="263" fill="#919697" font-size="8">MW</text>
  1573. <text x="260" y="275" fill="#919697" font-size="8">
  1574. 光伏
  1575. </text>
  1576. <text x="280" y="275" fill="#05bb4c" font-size="8">
  1577. {{
  1578. homeSuspensionWindowsData[getmapName("西藏")]
  1579. ?.xzgsgfcsl || 0
  1580. }}
  1581. </text>
  1582. <text x="290" y="275" fill="#919697" font-size="8">
  1583. 个,装机容量
  1584. </text>
  1585. <text x="340" y="275" fill="#05bb4c" font-size="8">
  1586. {{
  1587. homeSuspensionWindowsData[getmapName("西藏")]
  1588. ?.xzgsgfzjrl || 0
  1589. }}
  1590. </text>
  1591. <text x="360" y="275" fill="#919697" font-size="8">MW</text>
  1592. </g>
  1593. </g>
  1594. </g>
  1595. </g>
  1596. </g>
  1597. <g v-if="showPoint && $store.state.themeName === 'light'">
  1598. <g
  1599. v-if="showType === 'all' || showType === 'fc'"
  1600. class="item-label"
  1601. @click.stop="clickIncident('西藏')"
  1602. @mouseover="mouseoverIncident('西藏')"
  1603. @mouseout="mouseoutIncident('西藏')"
  1604. >
  1605. <use
  1606. xlink:href="#nx-map-circle-1"
  1607. x="255"
  1608. y="160"
  1609. width="100"
  1610. height="100"
  1611. />
  1612. <text class="mapKey" x="270" y="235" fill="#fff" font-size="8">
  1613. 西藏
  1614. </text>
  1615. <g v-show="mapDataContentState === '西藏'">
  1616. <g
  1617. v-if="
  1618. homeSuspensionWindowsData[getmapName('西藏')]
  1619. ?.industryState &&
  1620. homeSuspensionWindowsData[getmapName('西藏')]?.companyState
  1621. "
  1622. >
  1623. <rect
  1624. x="300"
  1625. y="208"
  1626. width="130"
  1627. height="105"
  1628. fill="#000000"
  1629. stroke="#46C55A35"
  1630. opacity="0.8"
  1631. />
  1632. <text
  1633. x="305"
  1634. y="219"
  1635. fill="#ffffff"
  1636. font-size="8"
  1637. font-weight="bold"
  1638. >
  1639. 清洁能源产业
  1640. </text>
  1641. <text x="305" y="231" fill="#ffffff" font-size="8">
  1642. 总装机容量
  1643. </text>
  1644. <text x="355" y="231" fill="#05bb4c" font-size="8">
  1645. {{
  1646. homeSuspensionWindowsData[getmapName("西藏")]
  1647. ?.xzcyzzjrl || 0
  1648. }}
  1649. </text>
  1650. <text x="375" y="231" fill="#919697" font-size="8">MW</text>
  1651. <text x="305" y="243" fill="#ffffff" font-size="8">风场</text>
  1652. <text x="325" y="243" fill="#05bb4c" font-size="8">
  1653. {{
  1654. homeSuspensionWindowsData[getmapName("西藏")]
  1655. ?.xzcyfdcsl || 0
  1656. }}
  1657. </text>
  1658. <text x="335" y="243" fill="#ffffff" font-size="8">
  1659. 个,装机容量
  1660. </text>
  1661. <text x="385" y="243" fill="#05bb4c" font-size="8">
  1662. {{
  1663. homeSuspensionWindowsData[getmapName("西藏")]
  1664. ?.xzcyfdzjrl || 0
  1665. }}
  1666. </text>
  1667. <text x="405" y="243" fill="#919697" font-size="8">MW</text>
  1668. <text x="305" y="255" fill="#ffffff" font-size="8">光伏</text>
  1669. <text x="325" y="255" fill="#05bb4c" font-size="8">
  1670. {{
  1671. homeSuspensionWindowsData[getmapName("西藏")]
  1672. ?.xzcygfcsl || 0
  1673. }}
  1674. </text>
  1675. <text x="335" y="255" fill="#ffffff" font-size="8">
  1676. 个,装机容量
  1677. </text>
  1678. <text x="385" y="255" fill="#05bb4c" font-size="8">
  1679. {{
  1680. homeSuspensionWindowsData[getmapName("西藏")]
  1681. ?.xzcyfdzjrl || 0
  1682. }}
  1683. </text>
  1684. <text x="405" y="255" fill="#919697" font-size="8">MW</text>
  1685. <text
  1686. x="305"
  1687. y="267"
  1688. fill="#ffffff"
  1689. font-size="8"
  1690. font-weight="bold"
  1691. >
  1692. 清洁能源公司
  1693. </text>
  1694. <text x="305" y="279" fill="#ffffff" font-size="8">
  1695. 总装机容量
  1696. </text>
  1697. <text x="355" y="279" fill="#05bb4c" font-size="8">
  1698. {{
  1699. homeSuspensionWindowsData[getmapName("西藏")]
  1700. ?.xzgszzjrl || 0
  1701. }}
  1702. </text>
  1703. <text x="375" y="279" fill="#919697" font-size="8">MW</text>
  1704. <text x="305" y="291" fill="#ffffff" font-size="8">风场</text>
  1705. <text x="325" y="291" fill="#05bb4c" font-size="8">
  1706. {{
  1707. homeSuspensionWindowsData[getmapName("西藏")]
  1708. ?.xzgsfdcsl || 0
  1709. }}
  1710. </text>
  1711. <text x="335" y="291" fill="#ffffff" font-size="8">
  1712. 个,装机容量
  1713. </text>
  1714. <text x="385" y="291" fill="#05bb4c" font-size="8">
  1715. {{
  1716. homeSuspensionWindowsData[getmapName("西藏")]
  1717. ?.xzgsfdzjrl || 0
  1718. }}
  1719. </text>
  1720. <text x="405" y="291" fill="#919697" font-size="8">MW</text>
  1721. <text x="305" y="303" fill="#ffffff" font-size="8">光伏</text>
  1722. <text x="325" y="303" fill="#05bb4c" font-size="8">
  1723. {{
  1724. homeSuspensionWindowsData[getmapName("西藏")]
  1725. ?.xzgsgfcsl || 0
  1726. }}
  1727. </text>
  1728. <text x="335" y="303" fill="#ffffff" font-size="8">
  1729. 个,装机容量
  1730. </text>
  1731. <text x="385" y="303" fill="#05bb4c" font-size="8">
  1732. {{
  1733. homeSuspensionWindowsData[getmapName("西藏")]
  1734. ?.xzgsgfzjrl || 0
  1735. }}
  1736. </text>
  1737. <text x="405" y="303" fill="#919697" font-size="8">MW</text>
  1738. </g>
  1739. <g v-else>
  1740. <rect
  1741. x="300"
  1742. y="208"
  1743. width="130"
  1744. height="55"
  1745. fill="#000000"
  1746. stroke="#46C55A35"
  1747. opacity="0.8"
  1748. />
  1749. <g
  1750. v-show="
  1751. homeSuspensionWindowsData[getmapName('西藏')]
  1752. ?.industryState
  1753. "
  1754. >
  1755. <text
  1756. x="305"
  1757. y="219"
  1758. fill="#ffffff"
  1759. font-size="8"
  1760. font-weight="bold"
  1761. >
  1762. 清洁能源产业
  1763. </text>
  1764. <text x="305" y="231" fill="#ffffff" font-size="8">
  1765. 总装机容量
  1766. </text>
  1767. <text x="355" y="231" fill="#05bb4c" font-size="8">
  1768. {{
  1769. homeSuspensionWindowsData[getmapName("西藏")]
  1770. ?.xzcyzzjrl || 0
  1771. }}
  1772. </text>
  1773. <text x="375" y="231" fill="#919697" font-size="8">MW</text>
  1774. <text x="305" y="243" fill="#ffffff" font-size="8">
  1775. 风场
  1776. </text>
  1777. <text x="325" y="243" fill="#05bb4c" font-size="8">
  1778. {{
  1779. homeSuspensionWindowsData[getmapName("西藏")]
  1780. ?.xzcyfdcsl || 0
  1781. }}
  1782. </text>
  1783. <text x="335" y="243" fill="#ffffff" font-size="8">
  1784. 个,装机容量
  1785. </text>
  1786. <text x="385" y="243" fill="#05bb4c" font-size="8">
  1787. {{
  1788. homeSuspensionWindowsData[getmapName("西藏")]
  1789. ?.xzcyfdzjrl || 0
  1790. }}
  1791. </text>
  1792. <text x="405" y="243" fill="#919697" font-size="8">MW</text>
  1793. <text x="305" y="255" fill="#ffffff" font-size="8">
  1794. 光伏
  1795. </text>
  1796. <text x="325" y="255" fill="#05bb4c" font-size="8">
  1797. {{
  1798. homeSuspensionWindowsData[getmapName("西藏")]
  1799. ?.xzcygfcsl || 0
  1800. }}
  1801. </text>
  1802. <text x="335" y="255" fill="#ffffff" font-size="8">
  1803. 个,装机容量
  1804. </text>
  1805. <text x="385" y="255" fill="#05bb4c" font-size="8">
  1806. {{
  1807. homeSuspensionWindowsData[getmapName("西藏")]
  1808. ?.xzcygfzjrl || 0
  1809. }}
  1810. </text>
  1811. <text x="405" y="255" fill="#919697" font-size="8">MW</text>
  1812. </g>
  1813. <g
  1814. v-show="
  1815. homeSuspensionWindowsData[getmapName('西藏')]
  1816. ?.companyState
  1817. "
  1818. >
  1819. <text
  1820. x="305"
  1821. y="219"
  1822. fill="#ffffff"
  1823. font-size="8"
  1824. font-weight="bold"
  1825. >
  1826. 清洁能源公司
  1827. </text>
  1828. <text x="305" y="231" fill="#ffffff" font-size="8">
  1829. 总装机容量
  1830. </text>
  1831. <text x="355" y="231" fill="#05bb4c" font-size="8">
  1832. {{
  1833. homeSuspensionWindowsData[getmapName("西藏")]
  1834. ?.xzgszzjrl || 0
  1835. }}
  1836. </text>
  1837. <text x="375" y="231" fill="#919697" font-size="8">MW</text>
  1838. <text x="305" y="243" fill="#ffffff" font-size="8">
  1839. 风场
  1840. </text>
  1841. <text x="325" y="243" fill="#05bb4c" font-size="8">
  1842. {{
  1843. homeSuspensionWindowsData[getmapName("西藏")]
  1844. ?.xzgsfdcsl || 0
  1845. }}
  1846. </text>
  1847. <text x="335" y="243" fill="#ffffff" font-size="8">
  1848. 个,装机容量
  1849. </text>
  1850. <text x="385" y="243" fill="#05bb4c" font-size="8">
  1851. {{
  1852. homeSuspensionWindowsData[getmapName("西藏")]
  1853. ?.xzgsfdzjrl || 0
  1854. }}
  1855. </text>
  1856. <text x="405" y="243" fill="#919697" font-size="8">MW</text>
  1857. <text x="305" y="255" fill="#ffffff" font-size="8">
  1858. 光伏
  1859. </text>
  1860. <text x="325" y="255" fill="#05bb4c" font-size="8">
  1861. {{
  1862. homeSuspensionWindowsData[getmapName("西藏")]
  1863. ?.xzgsgfcsl || 0
  1864. }}
  1865. </text>
  1866. <text x="335" y="255" fill="#ffffff" font-size="8">
  1867. 个,装机容量
  1868. </text>
  1869. <text x="385" y="255" fill="#05bb4c" font-size="8">
  1870. {{
  1871. homeSuspensionWindowsData[getmapName("西藏")]
  1872. ?.xzgsgfzjrl || 0
  1873. }}
  1874. </text>
  1875. <text x="405" y="255" fill="#919697" font-size="8">MW</text>
  1876. </g>
  1877. </g>
  1878. </g>
  1879. </g>
  1880. </g>
  1881. <!-- 山东 -->
  1882. <g v-if="showPoint && $store.state.themeName === 'dark'">
  1883. <g
  1884. v-if="showType === 'all' || showType === 'fc'"
  1885. class="item-label"
  1886. @click.stop="clickIncident('山东')"
  1887. @mouseover="mouseoverIncident('山东')"
  1888. @mouseout="mouseoutIncident('山东')"
  1889. >
  1890. <use
  1891. xlink:href="#nx-map-circle-1"
  1892. x="435"
  1893. y="140"
  1894. width="100"
  1895. height="100"
  1896. />
  1897. <text class="mapKey" x="455" y="215" fill="#fff" font-size="8">
  1898. 山东
  1899. </text>
  1900. <g v-show="mapDataContentState === '山东'">
  1901. <g
  1902. v-if="
  1903. homeSuspensionWindowsData[getmapName('山东')]
  1904. ?.industryState &&
  1905. homeSuspensionWindowsData[getmapName('山东')]?.companyState
  1906. "
  1907. >
  1908. <rect
  1909. x="430"
  1910. y="239"
  1911. width="130"
  1912. height="105"
  1913. fill="#000000"
  1914. stroke="#46C55A35"
  1915. opacity="0.8"
  1916. />
  1917. <text
  1918. x="435"
  1919. y="250"
  1920. fill="#919697"
  1921. font-size="8"
  1922. font-weight="bold"
  1923. >
  1924. 清洁能源产业
  1925. </text>
  1926. <text x="435" y="262" fill="#919697" font-size="8">
  1927. 总装机容量
  1928. </text>
  1929. <text x="485" y="262" fill="#05bb4c" font-size="8">
  1930. {{
  1931. homeSuspensionWindowsData[getmapName("山东")]
  1932. ?.sdcyzzjrl || 0
  1933. }}
  1934. </text>
  1935. <text x="505" y="262" fill="#919697" font-size="8">MW</text>
  1936. <text x="435" y="274" fill="#919697" font-size="8">风场</text>
  1937. <text x="455" y="274" fill="#05bb4c" font-size="8">
  1938. {{
  1939. homeSuspensionWindowsData[getmapName("山东")]
  1940. ?.sdcyfdcsl || 0
  1941. }}
  1942. </text>
  1943. <text x="465" y="274" fill="#919697" font-size="8">
  1944. 个,装机容量
  1945. </text>
  1946. <text x="515" y="274" fill="#05bb4c" font-size="8">
  1947. {{
  1948. homeSuspensionWindowsData[getmapName("山东")]
  1949. ?.sdcyfdzjrl || 0
  1950. }}
  1951. </text>
  1952. <text x="535" y="274" fill="#919697" font-size="8">MW</text>
  1953. <text x="435" y="286" fill="#919697" font-size="8">光伏</text>
  1954. <text x="455" y="286" fill="#05bb4c" font-size="8">
  1955. {{
  1956. homeSuspensionWindowsData[getmapName("山东")]
  1957. ?.sdcygfcsl || 0
  1958. }}
  1959. </text>
  1960. <text x="465" y="286" fill="#919697" font-size="8">
  1961. 个,装机容量
  1962. </text>
  1963. <text x="515" y="286" fill="#05bb4c" font-size="8">
  1964. {{
  1965. homeSuspensionWindowsData[getmapName("山东")]
  1966. ?.sdcygfzjrl || 0
  1967. }}
  1968. </text>
  1969. <text x="535" y="286" fill="#919697" font-size="8">MW</text>
  1970. <text
  1971. x="435"
  1972. y="298"
  1973. fill="#919697"
  1974. font-size="8"
  1975. font-weight="bold"
  1976. >
  1977. 清洁能源公司
  1978. </text>
  1979. <text x="435" y="310" fill="#919697" font-size="8">
  1980. 总装机容量
  1981. </text>
  1982. <text x="485" y="310" fill="#05bb4c" font-size="8">
  1983. {{
  1984. homeSuspensionWindowsData[getmapName("山东")]
  1985. ?.sdgszzjrl || 0
  1986. }}
  1987. </text>
  1988. <text x="505" y="310" fill="#919697" font-size="8">MW</text>
  1989. <text x="435" y="322" fill="#919697" font-size="8">风场</text>
  1990. <text x="455" y="322" fill="#05bb4c" font-size="8">
  1991. {{
  1992. homeSuspensionWindowsData[getmapName("山东")]
  1993. ?.sdgsfdcsl || 0
  1994. }}
  1995. </text>
  1996. <text x="465" y="322" fill="#919697" font-size="8">
  1997. 个,装机容量
  1998. </text>
  1999. <text x="515" y="322" fill="#05bb4c" font-size="8">
  2000. {{
  2001. homeSuspensionWindowsData[getmapName("山东")]
  2002. ?.sdgsfdzjrl || 0
  2003. }}
  2004. </text>
  2005. <text x="535" y="322" fill="#919697" font-size="8">MW</text>
  2006. <text x="435" y="334" fill="#919697" font-size="8">光伏</text>
  2007. <text x="455" y="334" fill="#05bb4c" font-size="8">
  2008. {{
  2009. homeSuspensionWindowsData[getmapName("山东")]
  2010. ?.sdgsgfcsl || 0
  2011. }}
  2012. </text>
  2013. <text x="465" y="334" fill="#919697" font-size="8">
  2014. 个,装机容量
  2015. </text>
  2016. <text x="515" y="334" fill="#05bb4c" font-size="8">
  2017. {{
  2018. homeSuspensionWindowsData[getmapName("山东")]
  2019. ?.sdgsgfzjrl || 0
  2020. }}
  2021. </text>
  2022. <text x="535" y="334" fill="#919697" font-size="8">MW</text>
  2023. </g>
  2024. <g v-else>
  2025. <rect
  2026. x="430"
  2027. y="239"
  2028. width="130"
  2029. height="55"
  2030. fill="#000000"
  2031. stroke="#46C55A35"
  2032. opacity="0.8"
  2033. />
  2034. <g
  2035. v-show="
  2036. homeSuspensionWindowsData[getmapName('山东')]
  2037. ?.industryState
  2038. "
  2039. >
  2040. <text
  2041. x="435"
  2042. y="250"
  2043. fill="#919697"
  2044. font-size="8"
  2045. font-weight="bold"
  2046. >
  2047. 清洁能源产业
  2048. </text>
  2049. <text x="435" y="262" fill="#919697" font-size="8">
  2050. 总装机容量
  2051. </text>
  2052. <text x="485" y="262" fill="#05bb4c" font-size="8">
  2053. {{
  2054. homeSuspensionWindowsData[getmapName("山东")]
  2055. ?.sdcyzzjrl || 0
  2056. }}
  2057. </text>
  2058. <text x="505" y="262" fill="#919697" font-size="8">MW</text>
  2059. <text x="435" y="274" fill="#919697" font-size="8">
  2060. 风场
  2061. </text>
  2062. <text x="455" y="274" fill="#05bb4c" font-size="8">
  2063. {{
  2064. homeSuspensionWindowsData[getmapName("山东")]
  2065. ?.sdcyfdcsl || 0
  2066. }}
  2067. </text>
  2068. <text x="465" y="274" fill="#919697" font-size="8">
  2069. 个,装机容量
  2070. </text>
  2071. <text x="515" y="274" fill="#05bb4c" font-size="8">
  2072. {{
  2073. homeSuspensionWindowsData[getmapName("山东")]
  2074. ?.sdcyfdzjrl || 0
  2075. }}
  2076. </text>
  2077. <text x="535" y="274" fill="#919697" font-size="8">MW</text>
  2078. <text x="435" y="286" fill="#919697" font-size="8">
  2079. 光伏
  2080. </text>
  2081. <text x="455" y="286" fill="#05bb4c" font-size="8">
  2082. {{
  2083. homeSuspensionWindowsData[getmapName("山东")]
  2084. ?.sdcygfcsl || 0
  2085. }}
  2086. </text>
  2087. <text x="465" y="286" fill="#919697" font-size="8">
  2088. 个,装机容量
  2089. </text>
  2090. <text x="515" y="286" fill="#05bb4c" font-size="8">
  2091. {{
  2092. homeSuspensionWindowsData[getmapName("山东")]
  2093. ?.sdcygfzjrl || 0
  2094. }}
  2095. </text>
  2096. <text x="535" y="286" fill="#919697" font-size="8">MW</text>
  2097. </g>
  2098. <g
  2099. v-show="
  2100. homeSuspensionWindowsData[getmapName('山东')]
  2101. ?.companyState
  2102. "
  2103. >
  2104. <text
  2105. x="435"
  2106. y="250"
  2107. fill="#919697"
  2108. font-size="8"
  2109. font-weight="bold"
  2110. >
  2111. 清洁能源公司
  2112. </text>
  2113. <text x="435" y="262" fill="#919697" font-size="8">
  2114. 总装机容量
  2115. </text>
  2116. <text x="485" y="262" fill="#05bb4c" font-size="8">
  2117. {{
  2118. homeSuspensionWindowsData[getmapName("山东")]
  2119. ?.sdgszzjrl || 0
  2120. }}
  2121. </text>
  2122. <text x="505" y="262" fill="#919697" font-size="8">MW</text>
  2123. <text x="435" y="274" fill="#919697" font-size="8">
  2124. 风场
  2125. </text>
  2126. <text x="455" y="274" fill="#05bb4c" font-size="8">
  2127. {{
  2128. homeSuspensionWindowsData[getmapName("山东")]
  2129. ?.sdgsfdcsl || 0
  2130. }}
  2131. </text>
  2132. <text x="465" y="274" fill="#919697" font-size="8">
  2133. 个,装机容量
  2134. </text>
  2135. <text x="515" y="274" fill="#05bb4c" font-size="8">
  2136. {{
  2137. homeSuspensionWindowsData[getmapName("山东")]
  2138. ?.sdgsfdzjrl || 0
  2139. }}
  2140. </text>
  2141. <text x="535" y="274" fill="#919697" font-size="8">MW</text>
  2142. <text x="435" y="286" fill="#919697" font-size="8">
  2143. 光伏
  2144. </text>
  2145. <text x="455" y="286" fill="#05bb4c" font-size="8">
  2146. {{
  2147. homeSuspensionWindowsData[getmapName("山东")]
  2148. ?.sdgsgfcsl || 0
  2149. }}
  2150. </text>
  2151. <text x="465" y="286" fill="#919697" font-size="8">
  2152. 个,装机容量
  2153. </text>
  2154. <text x="515" y="286" fill="#05bb4c" font-size="8">
  2155. {{
  2156. homeSuspensionWindowsData[getmapName("山东")]
  2157. ?.sdgsgfzjrl || 0
  2158. }}
  2159. </text>
  2160. <text x="535" y="286" fill="#919697" font-size="8">MW</text>
  2161. </g>
  2162. </g>
  2163. </g>
  2164. </g>
  2165. </g>
  2166. <g v-if="showPoint && $store.state.themeName === 'light'">
  2167. <g
  2168. v-if="showType === 'all' || showType === 'fc'"
  2169. class="item-label"
  2170. @click.stop="clickIncident('山东')"
  2171. @mouseover="mouseoverIncident('山东')"
  2172. @mouseout="mouseoutIncident('山东')"
  2173. >
  2174. <use
  2175. xlink:href="#nx-map-circle-1"
  2176. x="478"
  2177. y="125"
  2178. width="100"
  2179. height="100"
  2180. />
  2181. <text class="mapKey" x="495" y="200" fill="#fff" font-size="8">
  2182. 山东
  2183. </text>
  2184. <g v-show="mapDataContentState === '山东'">
  2185. <g
  2186. v-if="
  2187. homeSuspensionWindowsData[getmapName('山东')]
  2188. ?.industryState &&
  2189. homeSuspensionWindowsData[getmapName('山东')]?.companyState
  2190. "
  2191. >
  2192. <rect
  2193. x="470"
  2194. y="227"
  2195. width="130"
  2196. height="105"
  2197. fill="#000000"
  2198. stroke="#46C55A35"
  2199. opacity="0.8"
  2200. />
  2201. <text
  2202. x="475"
  2203. y="238"
  2204. fill="#ffffff"
  2205. font-size="8"
  2206. font-weight="bold"
  2207. >
  2208. 清洁能源产业
  2209. </text>
  2210. <text x="475" y="250" fill="#ffffff" font-size="8">
  2211. 总装机容量
  2212. </text>
  2213. <text x="525" y="250" fill="#05bb4c" font-size="8">
  2214. {{
  2215. homeSuspensionWindowsData[getmapName("山东")]
  2216. ?.sdcyzzjrl || 0
  2217. }}
  2218. </text>
  2219. <text x="545" y="250" fill="#919697" font-size="8">MW</text>
  2220. <text x="475" y="262" fill="#919697" font-size="8">风场</text>
  2221. <text x="495" y="262" fill="#05bb4c" font-size="8">
  2222. {{
  2223. homeSuspensionWindowsData[getmapName("山东")]
  2224. ?.sdcyfdcsl || 0
  2225. }}
  2226. </text>
  2227. <text x="505" y="262" fill="#ffffff" font-size="8">
  2228. 个,装机容量
  2229. </text>
  2230. <text x="555" y="262" fill="#05bb4c" font-size="8">
  2231. {{
  2232. homeSuspensionWindowsData[getmapName("山东")]
  2233. ?.sdcyfdzjrl || 0
  2234. }}
  2235. </text>
  2236. <text x="575" y="262" fill="#919697" font-size="8">MW</text>
  2237. <text x="475" y="274" fill="#ffffff" font-size="8">光伏</text>
  2238. <text x="495" y="274" fill="#05bb4c" font-size="8">
  2239. {{
  2240. homeSuspensionWindowsData[getmapName("山东")]
  2241. ?.sdcygfcsl || 0
  2242. }}
  2243. </text>
  2244. <text x="505" y="274" fill="#ffffff" font-size="8">
  2245. 个,装机容量
  2246. </text>
  2247. <text x="555" y="274" fill="#05bb4c" font-size="8">
  2248. {{
  2249. homeSuspensionWindowsData[getmapName("山东")]
  2250. ?.sdcygfzjrl || 0
  2251. }}
  2252. </text>
  2253. <text x="575" y="274" fill="#919697" font-size="8">MW</text>
  2254. <text
  2255. x="475"
  2256. y="286"
  2257. fill="#ffffff"
  2258. font-size="8"
  2259. font-weight="bold"
  2260. >
  2261. 清洁能源公司
  2262. </text>
  2263. <text x="475" y="298" fill="#ffffff" font-size="8">
  2264. 总装机容量
  2265. </text>
  2266. <text x="525" y="298" fill="#05bb4c" font-size="8">
  2267. {{
  2268. homeSuspensionWindowsData[getmapName("山东")]
  2269. ?.sdgszzjrl || 0
  2270. }}
  2271. </text>
  2272. <text x="545" y="298" fill="#919697" font-size="8">MW</text>
  2273. <text x="475" y="310" fill="#ffffff" font-size="8">风场</text>
  2274. <text x="495" y="310" fill="#05bb4c" font-size="8">
  2275. {{
  2276. homeSuspensionWindowsData[getmapName("山东")]
  2277. ?.sdgsfdcsl || 0
  2278. }}
  2279. </text>
  2280. <text x="505" y="310" fill="#ffffff" font-size="8">
  2281. 个,装机容量
  2282. </text>
  2283. <text x="555" y="310" fill="#05bb4c" font-size="8">
  2284. {{
  2285. homeSuspensionWindowsData[getmapName("山东")]
  2286. ?.sdgsfdzjrl || 0
  2287. }}
  2288. </text>
  2289. <text x="575" y="310" fill="#919697" font-size="8">MW</text>
  2290. <text x="475" y="322" fill="#ffffff" font-size="8">光伏</text>
  2291. <text x="495" y="322" fill="#05bb4c" font-size="8">
  2292. {{
  2293. homeSuspensionWindowsData[getmapName("山东")]
  2294. ?.sdgsgfcsl || 0
  2295. }}
  2296. </text>
  2297. <text x="505" y="322" fill="#ffffff" font-size="8">
  2298. 个,装机容量
  2299. </text>
  2300. <text x="555" y="322" fill="#05bb4c" font-size="8">
  2301. {{
  2302. homeSuspensionWindowsData[getmapName("山东")]
  2303. ?.sdgsgfzjrl || 0
  2304. }}
  2305. </text>
  2306. <text x="575" y="322" fill="#919697" font-size="8">MW</text>
  2307. </g>
  2308. <g v-else>
  2309. <rect
  2310. x="470"
  2311. y="227"
  2312. width="130"
  2313. height="55"
  2314. fill="#000000"
  2315. stroke="#46C55A35"
  2316. opacity="0.8"
  2317. />
  2318. <g
  2319. v-show="
  2320. homeSuspensionWindowsData[getmapName('山东')]
  2321. ?.industryState
  2322. "
  2323. >
  2324. <text
  2325. x="475"
  2326. y="238"
  2327. fill="#ffffff"
  2328. font-size="8"
  2329. font-weight="bold"
  2330. >
  2331. 清洁能源产业
  2332. </text>
  2333. <text x="475" y="250" fill="#ffffff" font-size="8">
  2334. 总装机容量
  2335. </text>
  2336. <text x="525" y="250" fill="#05bb4c" font-size="8">
  2337. {{
  2338. homeSuspensionWindowsData[getmapName("山东")]
  2339. ?.sdcyzzjrl || 0
  2340. }}
  2341. </text>
  2342. <text x="545" y="250" fill="#919697" font-size="8">MW</text>
  2343. <text x="475" y="262" fill="#919697" font-size="8">
  2344. 风场
  2345. </text>
  2346. <text x="495" y="262" fill="#05bb4c" font-size="8">
  2347. {{
  2348. homeSuspensionWindowsData[getmapName("山东")]
  2349. ?.sdcyfdcsl || 0
  2350. }}
  2351. </text>
  2352. <text x="505" y="262" fill="#ffffff" font-size="8">
  2353. 个,装机容量
  2354. </text>
  2355. <text x="555" y="262" fill="#05bb4c" font-size="8">
  2356. {{
  2357. homeSuspensionWindowsData[getmapName("山东")]
  2358. ?.sdcyfdzjrl || 0
  2359. }}
  2360. </text>
  2361. <text x="575" y="262" fill="#919697" font-size="8">MW</text>
  2362. <text x="475" y="274" fill="#ffffff" font-size="8">
  2363. 光伏
  2364. </text>
  2365. <text x="495" y="274" fill="#05bb4c" font-size="8">
  2366. {{
  2367. homeSuspensionWindowsData[getmapName("山东")]
  2368. ?.sdcygfcsl || 0
  2369. }}
  2370. </text>
  2371. <text x="505" y="274" fill="#ffffff" font-size="8">
  2372. 个,装机容量
  2373. </text>
  2374. <text x="555" y="274" fill="#05bb4c" font-size="8">
  2375. {{
  2376. homeSuspensionWindowsData[getmapName("山东")]
  2377. ?.sdcygfzjrl || 0
  2378. }}
  2379. </text>
  2380. <text x="575" y="274" fill="#919697" font-size="8">MW</text>
  2381. </g>
  2382. <g
  2383. v-show="
  2384. homeSuspensionWindowsData[getmapName('山东')]
  2385. ?.companyState
  2386. "
  2387. >
  2388. <text
  2389. x="475"
  2390. y="238"
  2391. fill="#ffffff"
  2392. font-size="8"
  2393. font-weight="bold"
  2394. >
  2395. 清洁能源公司
  2396. </text>
  2397. <text x="475" y="250" fill="#ffffff" font-size="8">
  2398. 总装机容量
  2399. </text>
  2400. <text x="525" y="250" fill="#05bb4c" font-size="8">
  2401. {{
  2402. homeSuspensionWindowsData[getmapName("山东")]
  2403. ?.sdgszzjrl || 0
  2404. }}
  2405. </text>
  2406. <text x="545" y="250" fill="#919697" font-size="8">MW</text>
  2407. <text x="475" y="262" fill="#ffffff" font-size="8">
  2408. 风场
  2409. </text>
  2410. <text x="495" y="262" fill="#05bb4c" font-size="8">
  2411. {{
  2412. homeSuspensionWindowsData[getmapName("山东")]
  2413. ?.sdgsfdcsl || 0
  2414. }}
  2415. </text>
  2416. <text x="505" y="262" fill="#ffffff" font-size="8">
  2417. 个,装机容量
  2418. </text>
  2419. <text x="555" y="262" fill="#05bb4c" font-size="8">
  2420. {{
  2421. homeSuspensionWindowsData[getmapName("山东")]
  2422. ?.sdgsfdzjrl || 0
  2423. }}
  2424. </text>
  2425. <text x="575" y="262" fill="#919697" font-size="8">MW</text>
  2426. <text x="475" y="274" fill="#ffffff" font-size="8">
  2427. 光伏
  2428. </text>
  2429. <text x="495" y="274" fill="#05bb4c" font-size="8">
  2430. {{
  2431. homeSuspensionWindowsData[getmapName("山东")]
  2432. ?.sdgsgfcsl || 0
  2433. }}
  2434. </text>
  2435. <text x="505" y="274" fill="#ffffff" font-size="8">
  2436. 个,装机容量
  2437. </text>
  2438. <text x="555" y="274" fill="#05bb4c" font-size="8">
  2439. {{
  2440. homeSuspensionWindowsData[getmapName("山东")]
  2441. ?.sdgsgfzjrl || 0
  2442. }}
  2443. </text>
  2444. <text x="575" y="274" fill="#919697" font-size="8">MW</text>
  2445. </g>
  2446. </g>
  2447. </g>
  2448. </g>
  2449. </g>
  2450. <!-- 陕西 -->
  2451. <g v-if="showPoint && $store.state.themeName === 'dark'">
  2452. <g
  2453. v-if="showType === 'all' || showType === 'fc'"
  2454. class="item-label"
  2455. @click.stop="clickIncident('陕西')"
  2456. @mouseover="mouseoverIncident('陕西')"
  2457. @mouseout="mouseoutIncident('陕西')"
  2458. >
  2459. <use
  2460. xlink:href="#nx-map-circle-1"
  2461. x="370"
  2462. y="160"
  2463. width="100"
  2464. height="100"
  2465. />
  2466. <text class="mapKey" x="385" y="232" fill="#fff" font-size="8">
  2467. 陕西
  2468. </text>
  2469. <g v-show="mapDataContentState === '陕西'">
  2470. <g
  2471. v-if="
  2472. homeSuspensionWindowsData[getmapName('陕西')]
  2473. ?.industryState &&
  2474. homeSuspensionWindowsData[getmapName('陕西')]?.companyState
  2475. "
  2476. >
  2477. <rect
  2478. x="250"
  2479. y="220"
  2480. width="130"
  2481. height="105"
  2482. fill="#000000"
  2483. stroke="#46C55A35"
  2484. opacity="0.8"
  2485. />
  2486. <text
  2487. x="255"
  2488. y="231"
  2489. fill="#919697"
  2490. font-size="8"
  2491. font-weight="bold"
  2492. >
  2493. 清洁能源产业
  2494. </text>
  2495. <text x="255" y="243" fill="#919697" font-size="8">
  2496. 总装机容量
  2497. </text>
  2498. <text x="305" y="243" fill="#05bb4c" font-size="8">
  2499. {{
  2500. homeSuspensionWindowsData[getmapName("陕西")]
  2501. ?.xscyzzjrl || 0
  2502. }}
  2503. </text>
  2504. <text x="325" y="243" fill="#919697" font-size="8">MW</text>
  2505. <text x="255" y="255" fill="#919697" font-size="8">风场</text>
  2506. <text x="275" y="255" fill="#05bb4c" font-size="8">
  2507. {{
  2508. homeSuspensionWindowsData[getmapName("陕西")]
  2509. ?.xscyfdcsl || 0
  2510. }}
  2511. </text>
  2512. <text x="285" y="255" fill="#919697" font-size="8">
  2513. 个,装机容量
  2514. </text>
  2515. <text x="335" y="255" fill="#05bb4c" font-size="8">
  2516. {{
  2517. homeSuspensionWindowsData[getmapName("陕西")]
  2518. ?.xscyfdzjrl || 0
  2519. }}
  2520. </text>
  2521. <text x="355" y="255" fill="#919697" font-size="8">MW</text>
  2522. <text x="255" y="267" fill="#919697" font-size="8">光伏</text>
  2523. <text x="275" y="267" fill="#05bb4c" font-size="8">
  2524. {{
  2525. homeSuspensionWindowsData[getmapName("陕西")]
  2526. ?.xscygfcsl || 0
  2527. }}
  2528. </text>
  2529. <text x="285" y="267" fill="#919697" font-size="8">
  2530. 个,装机容量
  2531. </text>
  2532. <text x="335" y="267" fill="#05bb4c" font-size="8">
  2533. {{
  2534. homeSuspensionWindowsData[getmapName("陕西")]
  2535. ?.xscygfzjrl || 0
  2536. }}
  2537. </text>
  2538. <text x="355" y="267" fill="#919697" font-size="8">MW</text>
  2539. <text
  2540. x="255"
  2541. y="279"
  2542. fill="#919697"
  2543. font-size="8"
  2544. font-weight="bold"
  2545. >
  2546. 清洁能源公司
  2547. </text>
  2548. <text x="255" y="291" fill="#919697" font-size="8">
  2549. 总装机容量
  2550. </text>
  2551. <text x="305" y="291" fill="#05bb4c" font-size="8">
  2552. {{
  2553. homeSuspensionWindowsData[getmapName("陕西")]
  2554. ?.xsgszzjrl || 0
  2555. }}
  2556. </text>
  2557. <text x="325" y="291" fill="#919697" font-size="8">MW</text>
  2558. <text x="255" y="303" fill="#919697" font-size="8">风场</text>
  2559. <text x="275" y="303" fill="#05bb4c" font-size="8">
  2560. {{
  2561. homeSuspensionWindowsData[getmapName("陕西")]
  2562. ?.xsgsfdcsl || 0
  2563. }}
  2564. </text>
  2565. <text x="285" y="303" fill="#919697" font-size="8">
  2566. 个,装机容量
  2567. </text>
  2568. <text x="335" y="303" fill="#05bb4c" font-size="8">
  2569. {{
  2570. homeSuspensionWindowsData[getmapName("陕西")]
  2571. ?.xsgsfdzjrl || 0
  2572. }}
  2573. </text>
  2574. <text x="355" y="303" fill="#919697" font-size="8">MW</text>
  2575. <text x="255" y="315" fill="#919697" font-size="8">光伏</text>
  2576. <text x="275" y="315" fill="#05bb4c" font-size="8">
  2577. {{
  2578. homeSuspensionWindowsData[getmapName("陕西")]
  2579. ?.xsgsgfcsl || 0
  2580. }}
  2581. </text>
  2582. <text x="285" y="315" fill="#919697" font-size="8">
  2583. 个,装机容量
  2584. </text>
  2585. <text x="335" y="315" fill="#05bb4c" font-size="8">
  2586. {{
  2587. homeSuspensionWindowsData[getmapName("陕西")]
  2588. ?.xsgsgfzjrl || 0
  2589. }}
  2590. </text>
  2591. <text x="355" y="315" fill="#919697" font-size="8">MW</text>
  2592. </g>
  2593. <g v-else>
  2594. <rect
  2595. x="250"
  2596. y="220"
  2597. width="130"
  2598. height="55"
  2599. fill="#000000"
  2600. stroke="#46C55A35"
  2601. opacity="0.8"
  2602. />
  2603. <g
  2604. v-show="
  2605. homeSuspensionWindowsData[getmapName('陕西')]
  2606. ?.industryState
  2607. "
  2608. >
  2609. <text
  2610. x="255"
  2611. y="231"
  2612. fill="#919697"
  2613. font-size="8"
  2614. font-weight="bold"
  2615. >
  2616. 清洁能源产业
  2617. </text>
  2618. <text x="255" y="243" fill="#919697" font-size="8">
  2619. 总装机容量
  2620. </text>
  2621. <text x="305" y="243" fill="#05bb4c" font-size="8">
  2622. {{
  2623. homeSuspensionWindowsData[getmapName("陕西")]
  2624. ?.xscyzzjrl || 0
  2625. }}
  2626. </text>
  2627. <text x="325" y="243" fill="#919697" font-size="8">MW</text>
  2628. <text x="255" y="255" fill="#919697" font-size="8">
  2629. 风场
  2630. </text>
  2631. <text x="275" y="255" fill="#05bb4c" font-size="8">
  2632. {{
  2633. homeSuspensionWindowsData[getmapName("陕西")]
  2634. ?.xscyfdcsl || 0
  2635. }}
  2636. </text>
  2637. <text x="285" y="255" fill="#919697" font-size="8">
  2638. 个,装机容量
  2639. </text>
  2640. <text x="335" y="255" fill="#05bb4c" font-size="8">
  2641. {{
  2642. homeSuspensionWindowsData[getmapName("陕西")]
  2643. ?.xscyfdzjrl || 0
  2644. }}
  2645. </text>
  2646. <text x="355" y="255" fill="#919697" font-size="8">MW</text>
  2647. <text x="255" y="267" fill="#919697" font-size="8">
  2648. 光伏
  2649. </text>
  2650. <text x="275" y="267" fill="#05bb4c" font-size="8">
  2651. {{
  2652. homeSuspensionWindowsData[getmapName("陕西")]
  2653. ?.xscygfcsl || 0
  2654. }}
  2655. </text>
  2656. <text x="285" y="267" fill="#919697" font-size="8">
  2657. 个,装机容量
  2658. </text>
  2659. <text x="335" y="267" fill="#05bb4c" font-size="8">
  2660. {{
  2661. homeSuspensionWindowsData[getmapName("陕西")]
  2662. ?.xscygfzjrl || 0
  2663. }}
  2664. </text>
  2665. <text x="355" y="267" fill="#919697" font-size="8">MW</text>
  2666. </g>
  2667. <g
  2668. v-show="
  2669. homeSuspensionWindowsData[getmapName('陕西')]
  2670. ?.companyState
  2671. "
  2672. >
  2673. <text
  2674. x="255"
  2675. y="231"
  2676. fill="#919697"
  2677. font-size="8"
  2678. font-weight="bold"
  2679. >
  2680. 清洁能源公司
  2681. </text>
  2682. <text x="255" y="243" fill="#919697" font-size="8">
  2683. 总装机容量
  2684. </text>
  2685. <text x="305" y="243" fill="#05bb4c" font-size="8">
  2686. {{
  2687. homeSuspensionWindowsData[getmapName("陕西")]
  2688. ?.xsgszzjrl || 0
  2689. }}
  2690. </text>
  2691. <text x="325" y="243" fill="#919697" font-size="8">MW</text>
  2692. <text x="255" y="255" fill="#919697" font-size="8">
  2693. 风场
  2694. </text>
  2695. <text x="275" y="255" fill="#05bb4c" font-size="8">
  2696. {{
  2697. homeSuspensionWindowsData[getmapName("陕西")]
  2698. ?.xsgsfdcsl || 0
  2699. }}
  2700. </text>
  2701. <text x="285" y="255" fill="#919697" font-size="8">
  2702. 个,装机容量
  2703. </text>
  2704. <text x="335" y="255" fill="#05bb4c" font-size="8">
  2705. {{
  2706. homeSuspensionWindowsData[getmapName("陕西")]
  2707. ?.xsgsfdzjrl || 0
  2708. }}
  2709. </text>
  2710. <text x="355" y="255" fill="#919697" font-size="8">MW</text>
  2711. <text x="255" y="267" fill="#919697" font-size="8">
  2712. 光伏
  2713. </text>
  2714. <text x="275" y="267" fill="#05bb4c" font-size="8">
  2715. {{
  2716. homeSuspensionWindowsData[getmapName("陕西")]
  2717. ?.xsgsgfcsl || 0
  2718. }}
  2719. </text>
  2720. <text x="285" y="267" fill="#919697" font-size="8">
  2721. 个,装机容量
  2722. </text>
  2723. <text x="335" y="267" fill="#05bb4c" font-size="8">
  2724. {{
  2725. homeSuspensionWindowsData[getmapName("陕西")]
  2726. ?.xsgsgfzjrl || 0
  2727. }}
  2728. </text>
  2729. <text x="355" y="267" fill="#919697" font-size="8">MW</text>
  2730. </g>
  2731. </g>
  2732. </g>
  2733. </g>
  2734. </g>
  2735. <g v-if="showPoint && $store.state.themeName === 'light'">
  2736. <g
  2737. v-if="showType === 'all' || showType === 'fc'"
  2738. class="item-label"
  2739. @click.stop="clickIncident('陕西')"
  2740. @mouseover="mouseoverIncident('陕西')"
  2741. @mouseout="mouseoutIncident('陕西')"
  2742. >
  2743. <use
  2744. xlink:href="#nx-map-circle-1"
  2745. x="415"
  2746. y="150"
  2747. width="100"
  2748. height="100"
  2749. />
  2750. <text class="mapKey" x="432" y="223" fill="#fff" font-size="8">
  2751. 陕西
  2752. </text>
  2753. <g v-show="mapDataContentState === '陕西'">
  2754. <g
  2755. v-if="
  2756. homeSuspensionWindowsData[getmapName('陕西')]
  2757. ?.industryState &&
  2758. homeSuspensionWindowsData[getmapName('陕西')]?.companyState
  2759. "
  2760. >
  2761. <rect
  2762. x="300"
  2763. y="200"
  2764. width="130"
  2765. height="105"
  2766. fill="#000000"
  2767. stroke="#46C55A35"
  2768. opacity="0.8"
  2769. />
  2770. <text
  2771. x="305"
  2772. y="211"
  2773. fill="#ffffff"
  2774. font-size="8"
  2775. font-weight="bold"
  2776. >
  2777. 清洁能源产业
  2778. </text>
  2779. <text x="305" y="223" fill="#ffffff" font-size="8">
  2780. 总装机容量
  2781. </text>
  2782. <text x="355" y="223" fill="#05bb4c" font-size="8">
  2783. {{
  2784. homeSuspensionWindowsData[getmapName("陕西")]
  2785. ?.xscyzzjrl || 0
  2786. }}
  2787. </text>
  2788. <text x="375" y="223" fill="#919697" font-size="8">MW</text>
  2789. <text x="305" y="235" fill="#ffffff" font-size="8">风场</text>
  2790. <text x="325" y="235" fill="#05bb4c" font-size="8">
  2791. {{
  2792. homeSuspensionWindowsData[getmapName("陕西")]
  2793. ?.xscyfdcsl || 0
  2794. }}
  2795. </text>
  2796. <text x="335" y="235" fill="#ffffff" font-size="8">
  2797. 个,装机容量
  2798. </text>
  2799. <text x="385" y="235" fill="#05bb4c" font-size="8">
  2800. {{
  2801. homeSuspensionWindowsData[getmapName("陕西")]
  2802. ?.xscyfdzjrl || 0
  2803. }}
  2804. </text>
  2805. <text x="405" y="235" fill="#919697" font-size="8">MW</text>
  2806. <text x="305" y="247" fill="#ffffff" font-size="8">光伏</text>
  2807. <text x="325" y="247" fill="#05bb4c" font-size="8">
  2808. {{
  2809. homeSuspensionWindowsData[getmapName("陕西")]
  2810. ?.xscygfcsl || 0
  2811. }}
  2812. </text>
  2813. <text x="335" y="247" fill="#ffffff" font-size="8">
  2814. 个,装机容量
  2815. </text>
  2816. <text x="385" y="247" fill="#05bb4c" font-size="8">
  2817. {{
  2818. homeSuspensionWindowsData[getmapName("陕西")]
  2819. ?.xscygfzjrl || 0
  2820. }}
  2821. </text>
  2822. <text x="405" y="247" fill="#919697" font-size="8">MW</text>
  2823. <text
  2824. x="305"
  2825. y="259"
  2826. fill="#ffffff"
  2827. font-size="8"
  2828. font-weight="bold"
  2829. >
  2830. 清洁能源公司
  2831. </text>
  2832. <text x="305" y="271" fill="#ffffff" font-size="8">
  2833. 总装机容量
  2834. </text>
  2835. <text x="355" y="271" fill="#05bb4c" font-size="8">
  2836. {{
  2837. homeSuspensionWindowsData[getmapName("陕西")]
  2838. ?.xsgszzjrl || 0
  2839. }}
  2840. </text>
  2841. <text x="375" y="271" fill="#919697" font-size="8">MW</text>
  2842. <text x="305" y="283" fill="#ffffff" font-size="8">风场</text>
  2843. <text x="325" y="283" fill="#05bb4c" font-size="8">
  2844. {{
  2845. homeSuspensionWindowsData[getmapName("陕西")]
  2846. ?.xsgsfdcsl || 0
  2847. }}
  2848. </text>
  2849. <text x="335" y="283" fill="#ffffff" font-size="8">
  2850. 个,装机容量
  2851. </text>
  2852. <text x="385" y="283" fill="#05bb4c" font-size="8">
  2853. {{
  2854. homeSuspensionWindowsData[getmapName("陕西")]
  2855. ?.xsgsfdzjrl || 0
  2856. }}
  2857. </text>
  2858. <text x="405" y="283" fill="#919697" font-size="8">MW</text>
  2859. <text x="305" y="295" fill="#ffffff" font-size="8">光伏</text>
  2860. <text x="325" y="295" fill="#05bb4c" font-size="8">
  2861. {{
  2862. homeSuspensionWindowsData[getmapName("陕西")]
  2863. ?.xsgsgfcsl || 0
  2864. }}
  2865. </text>
  2866. <text x="335" y="295" fill="#ffffff" font-size="8">
  2867. 个,装机容量
  2868. </text>
  2869. <text x="385" y="295" fill="#05bb4c" font-size="8">
  2870. {{
  2871. homeSuspensionWindowsData[getmapName("陕西")]
  2872. ?.xsgsgfzjrl || 0
  2873. }}
  2874. </text>
  2875. <text x="405" y="295" fill="#919697" font-size="8">MW</text>
  2876. </g>
  2877. <g v-else>
  2878. <rect
  2879. x="300"
  2880. y="200"
  2881. width="130"
  2882. height="55"
  2883. fill="#000000"
  2884. stroke="#46C55A35"
  2885. opacity="0.8"
  2886. />
  2887. <g
  2888. v-show="
  2889. homeSuspensionWindowsData[getmapName('陕西')]
  2890. ?.industryState
  2891. "
  2892. >
  2893. <text
  2894. x="305"
  2895. y="211"
  2896. fill="#ffffff"
  2897. font-size="8"
  2898. font-weight="bold"
  2899. >
  2900. 清洁能源产业
  2901. </text>
  2902. <text x="305" y="223" fill="#ffffff" font-size="8">
  2903. 总装机容量
  2904. </text>
  2905. <text x="355" y="223" fill="#05bb4c" font-size="8">
  2906. {{
  2907. homeSuspensionWindowsData[getmapName("陕西")]
  2908. ?.xscyzzjrl || 0
  2909. }}
  2910. </text>
  2911. <text x="375" y="223" fill="#919697" font-size="8">MW</text>
  2912. <text x="305" y="235" fill="#ffffff" font-size="8">
  2913. 风场
  2914. </text>
  2915. <text x="325" y="235" fill="#05bb4c" font-size="8">
  2916. {{
  2917. homeSuspensionWindowsData[getmapName("陕西")]
  2918. ?.xscyfdcsl || 0
  2919. }}
  2920. </text>
  2921. <text x="335" y="235" fill="#ffffff" font-size="8">
  2922. 个,装机容量
  2923. </text>
  2924. <text x="385" y="235" fill="#05bb4c" font-size="8">
  2925. {{
  2926. homeSuspensionWindowsData[getmapName("陕西")]
  2927. ?.xscyfdzjrl || 0
  2928. }}
  2929. </text>
  2930. <text x="405" y="235" fill="#919697" font-size="8">MW</text>
  2931. <text x="305" y="247" fill="#ffffff" font-size="8">
  2932. 光伏
  2933. </text>
  2934. <text x="325" y="247" fill="#05bb4c" font-size="8">
  2935. {{
  2936. homeSuspensionWindowsData[getmapName("陕西")]
  2937. ?.xscygfcsl || 0
  2938. }}
  2939. </text>
  2940. <text x="335" y="247" fill="#ffffff" font-size="8">
  2941. 个,装机容量
  2942. </text>
  2943. <text x="385" y="247" fill="#05bb4c" font-size="8">
  2944. {{
  2945. homeSuspensionWindowsData[getmapName("陕西")]
  2946. ?.xscygfzjrl || 0
  2947. }}
  2948. </text>
  2949. <text x="405" y="247" fill="#919697" font-size="8">MW</text>
  2950. </g>
  2951. <g
  2952. v-show="
  2953. homeSuspensionWindowsData[getmapName('陕西')]
  2954. ?.companyState
  2955. "
  2956. >
  2957. <text
  2958. x="305"
  2959. y="211"
  2960. fill="#ffffff"
  2961. font-size="8"
  2962. font-weight="bold"
  2963. >
  2964. 清洁能源公司
  2965. </text>
  2966. <text x="305" y="223" fill="#ffffff" font-size="8">
  2967. 总装机容量
  2968. </text>
  2969. <text x="355" y="223" fill="#05bb4c" font-size="8">
  2970. {{
  2971. homeSuspensionWindowsData[getmapName("陕西")]
  2972. ?.xsgszzjrl || 0
  2973. }}
  2974. </text>
  2975. <text x="375" y="223" fill="#919697" font-size="8">MW</text>
  2976. <text x="305" y="235" fill="#ffffff" font-size="8">
  2977. 风场
  2978. </text>
  2979. <text x="325" y="235" fill="#05bb4c" font-size="8">
  2980. {{
  2981. homeSuspensionWindowsData[getmapName("陕西")]
  2982. ?.xsgsfdcsl || 0
  2983. }}
  2984. </text>
  2985. <text x="335" y="235" fill="#ffffff" font-size="8">
  2986. 个,装机容量
  2987. </text>
  2988. <text x="385" y="235" fill="#05bb4c" font-size="8">
  2989. {{
  2990. homeSuspensionWindowsData[getmapName("陕西")]
  2991. ?.xsgsfdzjrl || 0
  2992. }}
  2993. </text>
  2994. <text x="405" y="235" fill="#919697" font-size="8">MW</text>
  2995. <text x="305" y="247" fill="#ffffff" font-size="8">
  2996. 光伏
  2997. </text>
  2998. <text x="325" y="247" fill="#05bb4c" font-size="8">
  2999. {{
  3000. homeSuspensionWindowsData[getmapName("陕西")]
  3001. ?.xsgsgfcsl || 0
  3002. }}
  3003. </text>
  3004. <text x="335" y="247" fill="#ffffff" font-size="8">
  3005. 个,装机容量
  3006. </text>
  3007. <text x="385" y="247" fill="#05bb4c" font-size="8">
  3008. {{
  3009. homeSuspensionWindowsData[getmapName("陕西")]
  3010. ?.xsgsgfzjrl || 0
  3011. }}
  3012. </text>
  3013. <text x="405" y="247" fill="#919697" font-size="8">MW</text>
  3014. </g>
  3015. </g>
  3016. </g>
  3017. </g>
  3018. </g>
  3019. <!-- 内蒙 -->
  3020. <g v-if="showPoint && $store.state.themeName === 'dark'">
  3021. <g
  3022. v-if="showType === 'all' || showType === 'fc'"
  3023. class="item-label"
  3024. @click.stop="clickIncident('内蒙')"
  3025. @mouseover="mouseoverIncident('内蒙')"
  3026. @mouseout="mouseoutIncident('内蒙')"
  3027. >
  3028. <use
  3029. xlink:href="#nx-map-circle-1"
  3030. x="390"
  3031. y="93"
  3032. width="100"
  3033. height="100"
  3034. />
  3035. <text class="mapKey" x="400" y="167" fill="#fff" font-size="8">
  3036. 内蒙
  3037. </text>
  3038. <g v-show="mapDataContentState === '内蒙'">
  3039. <g
  3040. v-if="
  3041. homeSuspensionWindowsData[getmapName('内蒙')]
  3042. ?.industryState &&
  3043. homeSuspensionWindowsData[getmapName('内蒙')]?.companyState
  3044. "
  3045. >
  3046. <rect
  3047. x="265"
  3048. y="120"
  3049. width="130"
  3050. height="105"
  3051. fill="#000000"
  3052. stroke="#46C55A35"
  3053. opacity="0.8"
  3054. />
  3055. <text
  3056. x="270"
  3057. y="131"
  3058. fill="#919697"
  3059. font-size="8"
  3060. font-weight="bold"
  3061. >
  3062. 清洁能源产业
  3063. </text>
  3064. <text x="270" y="143" fill="#919697" font-size="8">
  3065. 总装机容量
  3066. </text>
  3067. <text x="320" y="143" fill="#05bb4c" font-size="8">
  3068. {{
  3069. homeSuspensionWindowsData[getmapName("内蒙")]
  3070. ?.nmcyzzjrl || 0
  3071. }}
  3072. </text>
  3073. <text x="340" y="143" fill="#919697" font-size="8">MW</text>
  3074. <text x="270" y="155" fill="#919697" font-size="8">风场</text>
  3075. <text x="290" y="155" fill="#05bb4c" font-size="8">
  3076. {{
  3077. homeSuspensionWindowsData[getmapName("内蒙")]
  3078. ?.nmcyfdcsl || 0
  3079. }}
  3080. </text>
  3081. <text x="300" y="155" fill="#919697" font-size="8">
  3082. 个,装机容量
  3083. </text>
  3084. <text x="350" y="155" fill="#05bb4c" font-size="8">
  3085. {{
  3086. homeSuspensionWindowsData[getmapName("内蒙")]
  3087. ?.nmcyfdzjrl || 0
  3088. }}
  3089. </text>
  3090. <text x="370" y="155" fill="#919697" font-size="8">MW</text>
  3091. <text x="270" y="167" fill="#919697" font-size="8">光伏</text>
  3092. <text x="290" y="167" fill="#05bb4c" font-size="8">
  3093. {{
  3094. homeSuspensionWindowsData[getmapName("内蒙")]
  3095. ?.nmcygfcsl || 0
  3096. }}
  3097. </text>
  3098. <text x="300" y="167" fill="#919697" font-size="8">
  3099. 个,装机容量
  3100. </text>
  3101. <text x="350" y="167" fill="#05bb4c" font-size="8">
  3102. {{
  3103. homeSuspensionWindowsData[getmapName("内蒙")]
  3104. ?.nmcygfzjrl || 0
  3105. }}
  3106. </text>
  3107. <text x="370" y="167" fill="#919697" font-size="8">MW</text>
  3108. <text
  3109. x="270"
  3110. y="179"
  3111. fill="#919697"
  3112. font-size="8"
  3113. font-weight="bold"
  3114. >
  3115. 清洁能源公司
  3116. </text>
  3117. <text x="270" y="191" fill="#919697" font-size="8">
  3118. 总装机容量
  3119. </text>
  3120. <text x="320" y="191" fill="#05bb4c" font-size="8">
  3121. {{
  3122. homeSuspensionWindowsData[getmapName("内蒙")]
  3123. ?.nmgszzjrl || 0
  3124. }}
  3125. </text>
  3126. <text x="340" y="191" fill="#919697" font-size="8">MW</text>
  3127. <text x="270" y="203" fill="#919697" font-size="8">风场</text>
  3128. <text x="290" y="203" fill="#05bb4c" font-size="8">
  3129. {{
  3130. homeSuspensionWindowsData[getmapName("内蒙")]
  3131. ?.nmgsfdcsl || 0
  3132. }}
  3133. </text>
  3134. <text x="300" y="203" fill="#919697" font-size="8">
  3135. 个,装机容量
  3136. </text>
  3137. <text x="350" y="203" fill="#05bb4c" font-size="8">
  3138. {{
  3139. homeSuspensionWindowsData[getmapName("内蒙")]
  3140. ?.nmgsfdzjrl || 0
  3141. }}
  3142. </text>
  3143. <text x="370" y="203" fill="#919697" font-size="8">MW</text>
  3144. <text x="270" y="215" fill="#919697" font-size="8">光伏</text>
  3145. <text x="290" y="215" fill="#05bb4c" font-size="8">
  3146. {{
  3147. homeSuspensionWindowsData[getmapName("内蒙")]
  3148. ?.nmgsgfcsl || 0
  3149. }}
  3150. </text>
  3151. <text x="300" y="215" fill="#919697" font-size="8">
  3152. 个,装机容量
  3153. </text>
  3154. <text x="350" y="215" fill="#05bb4c" font-size="8">
  3155. {{
  3156. homeSuspensionWindowsData[getmapName("内蒙")]
  3157. ?.nmgsgfzjrl || 0
  3158. }}
  3159. </text>
  3160. <text x="370" y="215" fill="#919697" font-size="8">MW</text>
  3161. </g>
  3162. <g v-else>
  3163. <rect
  3164. x="275"
  3165. y="120"
  3166. width="130"
  3167. height="105"
  3168. fill="#000000"
  3169. stroke="#46C55A35"
  3170. opacity="0.8"
  3171. />
  3172. <g
  3173. v-show="
  3174. homeSuspensionWindowsData[getmapName('内蒙')]
  3175. ?.industryState
  3176. "
  3177. >
  3178. <text
  3179. x="280"
  3180. y="131"
  3181. fill="#919697"
  3182. font-size="8"
  3183. font-weight="bold"
  3184. >
  3185. 清洁能源产业
  3186. </text>
  3187. <text x="280" y="143" fill="#919697" font-size="8">
  3188. 总装机容量
  3189. </text>
  3190. <text x="330" y="143" fill="#05bb4c" font-size="8">
  3191. {{
  3192. homeSuspensionWindowsData[getmapName("内蒙")]
  3193. ?.nmcyzzjrl || 0
  3194. }}
  3195. </text>
  3196. <text x="350" y="143" fill="#919697" font-size="8">MW</text>
  3197. <text x="280" y="155" fill="#919697" font-size="8">
  3198. 风场
  3199. </text>
  3200. <text x="300" y="155" fill="#05bb4c" font-size="8">
  3201. {{
  3202. homeSuspensionWindowsData[getmapName("内蒙")]
  3203. ?.nmcyfdcsl || 0
  3204. }}
  3205. </text>
  3206. <text x="310" y="155" fill="#919697" font-size="8">
  3207. 个,装机容量
  3208. </text>
  3209. <text x="360" y="155" fill="#05bb4c" font-size="8">
  3210. {{
  3211. homeSuspensionWindowsData[getmapName("内蒙")]
  3212. ?.nmcyfdzjrl || 0
  3213. }}
  3214. </text>
  3215. <text x="380" y="155" fill="#919697" font-size="8">MW</text>
  3216. <text x="280" y="167" fill="#919697" font-size="8">
  3217. 光伏
  3218. </text>
  3219. <text x="300" y="167" fill="#05bb4c" font-size="8">
  3220. {{
  3221. homeSuspensionWindowsData[getmapName("内蒙")]
  3222. ?.nmcygfcsl || 0
  3223. }}
  3224. </text>
  3225. <text x="310" y="167" fill="#919697" font-size="8">
  3226. 个,装机容量
  3227. </text>
  3228. <text x="360" y="167" fill="#05bb4c" font-size="8">
  3229. {{
  3230. homeSuspensionWindowsData[getmapName("内蒙")]
  3231. ?.nmcygfzjrl || 0
  3232. }}
  3233. </text>
  3234. <text x="380" y="167" fill="#919697" font-size="8">MW</text>
  3235. </g>
  3236. <g
  3237. v-show="
  3238. homeSuspensionWindowsData[getmapName('内蒙')]
  3239. ?.companyState
  3240. "
  3241. >
  3242. <text
  3243. x="280"
  3244. y="131"
  3245. fill="#919697"
  3246. font-size="8"
  3247. font-weight="bold"
  3248. >
  3249. 清洁能源公司
  3250. </text>
  3251. <text x="280" y="143" fill="#919697" font-size="8">
  3252. 总装机容量
  3253. </text>
  3254. <text x="330" y="143" fill="#05bb4c" font-size="8">
  3255. {{
  3256. homeSuspensionWindowsData[getmapName("内蒙")]
  3257. ?.nmgszzjrl || 0
  3258. }}
  3259. </text>
  3260. <text x="340" y="143" fill="#919697" font-size="8">MW</text>
  3261. <text x="280" y="155" fill="#919697" font-size="8">
  3262. 风场
  3263. </text>
  3264. <text x="300" y="155" fill="#05bb4c" font-size="8">
  3265. {{
  3266. homeSuspensionWindowsData[getmapName("内蒙")]
  3267. ?.nmgsfdcsl || 0
  3268. }}
  3269. </text>
  3270. <text x="310" y="155" fill="#919697" font-size="8">
  3271. 个,装机容量
  3272. </text>
  3273. <text x="360" y="155" fill="#05bb4c" font-size="8">
  3274. {{
  3275. homeSuspensionWindowsData[getmapName("内蒙")]
  3276. ?.nmgsfdzjrl || 0
  3277. }}
  3278. </text>
  3279. <text x="380" y="155" fill="#919697" font-size="8">MW</text>
  3280. <text x="280" y="167" fill="#919697" font-size="8">
  3281. 光伏
  3282. </text>
  3283. <text x="300" y="167" fill="#05bb4c" font-size="8">
  3284. {{
  3285. homeSuspensionWindowsData[getmapName("内蒙")]
  3286. ?.nmgsgfcsl || 0
  3287. }}
  3288. </text>
  3289. <text x="310" y="167" fill="#919697" font-size="8">
  3290. 个,装机容量
  3291. </text>
  3292. <text x="360" y="167" fill="#05bb4c" font-size="8">
  3293. {{
  3294. homeSuspensionWindowsData[getmapName("内蒙")]
  3295. ?.nmgsgfzjrl || 0
  3296. }}
  3297. </text>
  3298. <text x="380" y="167" fill="#919697" font-size="8">MW</text>
  3299. </g>
  3300. </g>
  3301. </g>
  3302. </g>
  3303. </g>
  3304. <g v-if="showPoint && $store.state.themeName === 'light'">
  3305. <g
  3306. v-if="showType === 'all' || showType === 'fc'"
  3307. class="item-label"
  3308. @click.stop="clickIncident('内蒙')"
  3309. @mouseover="mouseoverIncident('内蒙')"
  3310. @mouseout="mouseoutIncident('内蒙')"
  3311. >
  3312. <use
  3313. xlink:href="#nx-map-circle-1"
  3314. x="435"
  3315. y="83"
  3316. width="100"
  3317. height="100"
  3318. />
  3319. <text
  3320. class="mapKey"
  3321. x="440"
  3322. y="159"
  3323. fill="#919 697"
  3324. font-size="8"
  3325. >
  3326. 内蒙
  3327. </text>
  3328. <g v-show="mapDataContentState === '内蒙'">
  3329. <g
  3330. v-if="
  3331. homeSuspensionWindowsData[getmapName('内蒙')]
  3332. ?.industryState &&
  3333. homeSuspensionWindowsData[getmapName('内蒙')]?.companyState
  3334. "
  3335. >
  3336. <rect
  3337. x="310"
  3338. y="100"
  3339. width="130"
  3340. height="105"
  3341. fill="#000000"
  3342. stroke="#46C55A35"
  3343. opacity="0.8"
  3344. />
  3345. <text
  3346. x="315"
  3347. y="111"
  3348. fill="#ffffff"
  3349. font-size="8"
  3350. font-weight="bold"
  3351. >
  3352. 清洁能源产业
  3353. </text>
  3354. <text x="315" y="123" fill="#ffffff" font-size="8">
  3355. 总装机容量
  3356. </text>
  3357. <text x="365" y="123" fill="#05bb4c" font-size="8">
  3358. {{
  3359. homeSuspensionWindowsData[getmapName("内蒙")]
  3360. ?.nmcyzzjrl || 0
  3361. }}
  3362. </text>
  3363. <text x="385" y="123" fill="#919697" font-size="8">MW</text>
  3364. <text x="315" y="135" fill="#ffffff" font-size="8">风场</text>
  3365. <text x="335" y="135" fill="#05bb4c" font-size="8">
  3366. {{
  3367. homeSuspensionWindowsData[getmapName("内蒙")]
  3368. ?.nmcyfdcsl || 0
  3369. }}
  3370. </text>
  3371. <text x="345" y="135" fill="#ffffff" font-size="8">
  3372. 个,装机容量
  3373. </text>
  3374. <text x="395" y="135" fill="#05bb4c" font-size="8">
  3375. {{
  3376. homeSuspensionWindowsData[getmapName("内蒙")]
  3377. ?.nmcyfdzjrl || 0
  3378. }}
  3379. </text>
  3380. <text x="415" y="135" fill="#919697" font-size="8">MW</text>
  3381. <text x="315" y="147" fill="#ffffff" font-size="8">光伏</text>
  3382. <text x="335" y="147" fill="#05bb4c" font-size="8">
  3383. {{
  3384. homeSuspensionWindowsData[getmapName("内蒙")]
  3385. ?.nmcygfcsl || 0
  3386. }}
  3387. </text>
  3388. <text x="345" y="147" fill="#ffffff" font-size="8">
  3389. 个,装机容量
  3390. </text>
  3391. <text x="395" y="147" fill="#05bb4c" font-size="8">
  3392. {{
  3393. homeSuspensionWindowsData[getmapName("内蒙")]
  3394. ?.nmcygfzjrl || 0
  3395. }}
  3396. </text>
  3397. <text x="415" y="147" fill="#919697" font-size="8">MW</text>
  3398. <text
  3399. x="315"
  3400. y="159"
  3401. fill="#ffffff"
  3402. font-size="8"
  3403. font-weight="bold"
  3404. >
  3405. 清洁能源公司
  3406. </text>
  3407. <text x="315" y="171" fill="#ffffff" font-size="8">
  3408. 总装机容量
  3409. </text>
  3410. <text x="365" y="171" fill="#05bb4c" font-size="8">
  3411. {{
  3412. homeSuspensionWindowsData[getmapName("内蒙")]
  3413. ?.nmgszzjrl || 0
  3414. }}
  3415. </text>
  3416. <text x="385" y="171" fill="#919697" font-size="8">MW</text>
  3417. <text x="315" y="183" fill="#ffffff" font-size="8">风场</text>
  3418. <text x="335" y="183" fill="#05bb4c" font-size="8">
  3419. {{
  3420. homeSuspensionWindowsData[getmapName("内蒙")]
  3421. ?.nmgsfdcsl || 0
  3422. }}
  3423. </text>
  3424. <text x="345" y="183" fill="#ffffff" font-size="8">
  3425. 个,装机容量
  3426. </text>
  3427. <text x="395" y="183" fill="#05bb4c" font-size="8">
  3428. {{
  3429. homeSuspensionWindowsData[getmapName("内蒙")]
  3430. ?.nmgsfdzjrl || 0
  3431. }}
  3432. </text>
  3433. <text x="415" y="183" fill="#919697" font-size="8">MW</text>
  3434. <text x="315" y="195" fill="#ffffff" font-size="8">光伏</text>
  3435. <text x="335" y="195" fill="#05bb4c" font-size="8">
  3436. {{
  3437. homeSuspensionWindowsData[getmapName("内蒙")]
  3438. ?.nmgsgfcsl || 0
  3439. }}
  3440. </text>
  3441. <text x="345" y="195" fill="#ffffff" font-size="8">
  3442. 个,装机容量
  3443. </text>
  3444. <text x="395" y="195" fill="#05bb4c" font-size="8">
  3445. {{
  3446. homeSuspensionWindowsData[getmapName("内蒙")]
  3447. ?.nmgsgfzjrl || 0
  3448. }}
  3449. </text>
  3450. <text x="415" y="195" fill="#919697" font-size="8">MW</text>
  3451. </g>
  3452. <g v-else>
  3453. <rect
  3454. x="310"
  3455. y="100"
  3456. width="130"
  3457. height="55"
  3458. fill="#000000"
  3459. stroke="#46C55A35"
  3460. opacity="0.8"
  3461. />
  3462. <g
  3463. v-show="
  3464. homeSuspensionWindowsData[getmapName('内蒙')]
  3465. ?.industryState
  3466. "
  3467. >
  3468. <text
  3469. x="315"
  3470. y="111"
  3471. fill="#ffffff"
  3472. font-size="8"
  3473. font-weight="bold"
  3474. >
  3475. 清洁能源产业
  3476. </text>
  3477. <text x="315" y="123" fill="#ffffff" font-size="8">
  3478. 总装机容量
  3479. </text>
  3480. <text x="365" y="123" fill="#05bb4c" font-size="8">
  3481. {{
  3482. homeSuspensionWindowsData[getmapName("内蒙")]
  3483. ?.nmcyzzjrl || 0
  3484. }}
  3485. </text>
  3486. <text x="385" y="123" fill="#919697" font-size="8">MW</text>
  3487. <text x="315" y="135" fill="#ffffff" font-size="8">
  3488. 风场
  3489. </text>
  3490. <text x="335" y="135" fill="#05bb4c" font-size="8">
  3491. {{
  3492. homeSuspensionWindowsData[getmapName("内蒙")]
  3493. ?.nmcyfdcsl || 0
  3494. }}
  3495. </text>
  3496. <text x="345" y="135" fill="#ffffff" font-size="8">
  3497. 个,装机容量
  3498. </text>
  3499. <text x="395" y="135" fill="#05bb4c" font-size="8">
  3500. {{
  3501. homeSuspensionWindowsData[getmapName("内蒙")]
  3502. ?.nmcyfdzjrl || 0
  3503. }}
  3504. </text>
  3505. <text x="415" y="135" fill="#919697" font-size="8">MW</text>
  3506. <text x="315" y="147" fill="#ffffff" font-size="8">
  3507. 光伏
  3508. </text>
  3509. <text x="335" y="147" fill="#05bb4c" font-size="8">
  3510. {{
  3511. homeSuspensionWindowsData[getmapName("内蒙")]
  3512. ?.nmcygfcsl || 0
  3513. }}
  3514. </text>
  3515. <text x="345" y="147" fill="#ffffff" font-size="8">
  3516. 个,装机容量
  3517. </text>
  3518. <text x="395" y="147" fill="#05bb4c" font-size="8">
  3519. {{
  3520. homeSuspensionWindowsData[getmapName("内蒙")]
  3521. ?.nmcygfzjrl || 0
  3522. }}
  3523. </text>
  3524. <text x="415" y="147" fill="#919697" font-size="8">MW</text>
  3525. </g>
  3526. <g
  3527. v-show="
  3528. homeSuspensionWindowsData[getmapName('内蒙')]
  3529. ?.companyState
  3530. "
  3531. >
  3532. <text
  3533. x="315"
  3534. y="111"
  3535. fill="#ffffff"
  3536. font-size="8"
  3537. font-weight="bold"
  3538. >
  3539. 清洁能源公司
  3540. </text>
  3541. <text x="315" y="123" fill="#ffffff" font-size="8">
  3542. 总装机容量
  3543. </text>
  3544. <text x="365" y="123" fill="#05bb4c" font-size="8">
  3545. {{
  3546. homeSuspensionWindowsData[getmapName("内蒙")]
  3547. ?.nmgszzjrl || 0
  3548. }}
  3549. </text>
  3550. <text x="385" y="123" fill="#919697" font-size="8">MW</text>
  3551. <text x="315" y="135" fill="#ffffff" font-size="8">
  3552. 风场
  3553. </text>
  3554. <text x="335" y="135" fill="#05bb4c" font-size="8">
  3555. {{
  3556. homeSuspensionWindowsData[getmapName("内蒙")]
  3557. ?.nmgsfdcsl || 0
  3558. }}
  3559. </text>
  3560. <text x="345" y="135" fill="#ffffff" font-size="8">
  3561. 个,装机容量
  3562. </text>
  3563. <text x="395" y="135" fill="#05bb4c" font-size="8">
  3564. {{
  3565. homeSuspensionWindowsData[getmapName("内蒙")]
  3566. ?.nmgsfdzjrl || 0
  3567. }}
  3568. </text>
  3569. <text x="415" y="135" fill="#919697" font-size="8">MW</text>
  3570. <text x="315" y="147" fill="#ffffff" font-size="8">
  3571. 光伏
  3572. </text>
  3573. <text x="335" y="147" fill="#05bb4c" font-size="8">
  3574. {{
  3575. homeSuspensionWindowsData[getmapName("内蒙")]
  3576. ?.nmgsgfcsl || 0
  3577. }}
  3578. </text>
  3579. <text x="345" y="147" fill="#ffffff" font-size="8">
  3580. 个,装机容量
  3581. </text>
  3582. <text x="395" y="147" fill="#05bb4c" font-size="8">
  3583. {{
  3584. homeSuspensionWindowsData[getmapName("内蒙")]
  3585. ?.nmgsgfzjrl || 0
  3586. }}
  3587. </text>
  3588. <text x="415" y="147" fill="#919697" font-size="8">MW</text>
  3589. </g>
  3590. </g>
  3591. </g>
  3592. </g>
  3593. </g>
  3594. <!-- 山西 -->
  3595. <g v-if="showPoint && $store.state.themeName === 'dark'">
  3596. <g
  3597. class="item-label"
  3598. @click="clickLabel('SXJ_RGN', '清洁能源', 3)"
  3599. @mouseover="mouseoverIncident('山西')"
  3600. @mouseout="mouseoutIncident('山西')"
  3601. >
  3602. <use xlink:href="#nx-map-circle-1" x="395" y="130" />
  3603. <text class="mapKey" x="410" y="203" fill="#fff" font-size="8">
  3604. 山西
  3605. </text>
  3606. <g v-show="mapDataContentState === '山西'">
  3607. <g
  3608. v-if="
  3609. homeSuspensionWindowsData[getmapName('山西')]
  3610. ?.industryState &&
  3611. homeSuspensionWindowsData[getmapName('山西')]?.companyState
  3612. "
  3613. >
  3614. <rect
  3615. x="250"
  3616. y="115"
  3617. width="150"
  3618. height="105"
  3619. fill="#000000"
  3620. stroke="#46C55A35"
  3621. opacity="0.8"
  3622. />
  3623. <text
  3624. x="255"
  3625. y="126"
  3626. fill="#919697"
  3627. font-size="8"
  3628. font-weight="bold"
  3629. >
  3630. 清洁能源产业
  3631. </text>
  3632. <text x="255" y="138" fill="#919697" font-size="8">
  3633. 总装机容量
  3634. </text>
  3635. <text x="305" y="138" fill="#05bb4c" font-size="8">
  3636. {{
  3637. homeSuspensionWindowsData[getmapName("山西")]
  3638. ?.sxcyzzjrl || 0
  3639. }}
  3640. </text>
  3641. <text x="345" y="138" fill="#919697" font-size="8">MW</text>
  3642. <text x="255" y="150" fill="#919697" font-size="8">风场</text>
  3643. <text x="275" y="150" fill="#05bb4c" font-size="8">
  3644. {{
  3645. homeSuspensionWindowsData[getmapName("山西")]
  3646. ?.sxcyfdcsl || 0
  3647. }}
  3648. </text>
  3649. <text x="285" y="150" fill="#919697" font-size="8">
  3650. 个,装机容量
  3651. </text>
  3652. <text x="335" y="150" fill="#05bb4c" font-size="8">
  3653. {{
  3654. homeSuspensionWindowsData[getmapName("山西")]
  3655. ?.sxcyfdzjrl || 0
  3656. }}
  3657. </text>
  3658. <text x="375" y="150" fill="#919697" font-size="8">MW</text>
  3659. <text x="255" y="162" fill="#919697" font-size="8">光伏</text>
  3660. <text x="275" y="162" fill="#05bb4c" font-size="8">
  3661. {{
  3662. homeSuspensionWindowsData[getmapName("山西")]
  3663. ?.sxcygfcsl || 0
  3664. }}
  3665. </text>
  3666. <text x="285" y="162" fill="#919697" font-size="8">
  3667. 个,装机容量
  3668. </text>
  3669. <text x="335" y="162" fill="#05bb4c" font-size="8">
  3670. {{
  3671. homeSuspensionWindowsData[getmapName("山西")]
  3672. ?.sxcygfzjrl || 0
  3673. }}
  3674. </text>
  3675. <text x="375" y="162" fill="#919697" font-size="8">MW</text>
  3676. <text
  3677. x="255"
  3678. y="174"
  3679. fill="#919697"
  3680. font-size="8"
  3681. font-weight="bold"
  3682. >
  3683. 清洁能源公司
  3684. </text>
  3685. <text x="255" y="186" fill="#919697" font-size="8">
  3686. 总装机容量
  3687. </text>
  3688. <text x="305" y="186" fill="#05bb4c" font-size="8">
  3689. {{
  3690. homeSuspensionWindowsData[getmapName("山西")]
  3691. ?.sxgszzjrl || 0
  3692. }}
  3693. </text>
  3694. <text x="345" y="186" fill="#919697" font-size="8">MW</text>
  3695. <text x="255" y="198" fill="#919697" font-size="8">风场</text>
  3696. <text x="275" y="198" fill="#05bb4c" font-size="8">
  3697. {{
  3698. homeSuspensionWindowsData[getmapName("山西")]
  3699. ?.sxgsfdcsl || 0
  3700. }}
  3701. </text>
  3702. <text x="285" y="198" fill="#919697" font-size="8">
  3703. 个,装机容量
  3704. </text>
  3705. <text x="335" y="198" fill="#05bb4c" font-size="8">
  3706. {{
  3707. homeSuspensionWindowsData[getmapName("山西")]
  3708. ?.sxgsfdzjrl || 0
  3709. }}
  3710. </text>
  3711. <text x="375" y="198" fill="#919697" font-size="8">MW</text>
  3712. <text x="255" y="210" fill="#919697" font-size="8">光伏</text>
  3713. <text x="275" y="210" fill="#05bb4c" font-size="8">
  3714. {{
  3715. homeSuspensionWindowsData[getmapName("山西")]
  3716. ?.sxgsgfcsl || 0
  3717. }}
  3718. </text>
  3719. <text x="285" y="210" fill="#919697" font-size="8">
  3720. 个,装机容量
  3721. </text>
  3722. <text x="335" y="210" fill="#05bb4c" font-size="8">
  3723. {{
  3724. homeSuspensionWindowsData[getmapName("山西")]
  3725. ?.sxgsgfzjrl || 0
  3726. }}
  3727. </text>
  3728. <text x="375" y="210" fill="#919697" font-size="8">MW</text>
  3729. </g>
  3730. <g v-else>
  3731. <rect
  3732. x="250"
  3733. y="165"
  3734. width="150"
  3735. height="55"
  3736. fill="#000000"
  3737. stroke="#46C55A35"
  3738. opacity="0.8"
  3739. />
  3740. <g
  3741. v-show="
  3742. homeSuspensionWindowsData[getmapName('山西')]
  3743. ?.industryState
  3744. "
  3745. >
  3746. <text
  3747. x="255"
  3748. y="176"
  3749. fill="#919697"
  3750. font-size="8"
  3751. font-weight="bold"
  3752. >
  3753. 清洁能源产业
  3754. </text>
  3755. <text x="255" y="188" fill="#919697" font-size="8">
  3756. 总装机容量
  3757. </text>
  3758. <text x="305" y="188" fill="#05bb4c" font-size="8">
  3759. {{
  3760. homeSuspensionWindowsData[getmapName("山西")]
  3761. ?.sxcyzzjrl || 0
  3762. }}
  3763. </text>
  3764. <text x="345" y="188" fill="#919697" font-size="8">MW</text>
  3765. <text x="255" y="200" fill="#919697" font-size="8">
  3766. 风场
  3767. </text>
  3768. <text x="275" y="200" fill="#05bb4c" font-size="8">
  3769. {{
  3770. homeSuspensionWindowsData[getmapName("山西")]
  3771. ?.sxcyfdcsl || 0
  3772. }}
  3773. </text>
  3774. <text x="285" y="200" fill="#919697" font-size="8">
  3775. 个,装机容量
  3776. </text>
  3777. <text x="335" y="200" fill="#05bb4c" font-size="8">
  3778. {{
  3779. homeSuspensionWindowsData[getmapName("山西")]
  3780. ?.sxcyfdzjrl || 0
  3781. }}
  3782. </text>
  3783. <text x="375" y="200" fill="#919697" font-size="8">MW</text>
  3784. <text x="255" y="212" fill="#919697" font-size="8">
  3785. 光伏
  3786. </text>
  3787. <text x="275" y="212" fill="#05bb4c" font-size="8">
  3788. {{
  3789. homeSuspensionWindowsData[getmapName("山西")]
  3790. ?.sxcygfcsl || 0
  3791. }}
  3792. </text>
  3793. <text x="285" y="212" fill="#919697" font-size="8">
  3794. 个,装机容量
  3795. </text>
  3796. <text x="335" y="212" fill="#05bb4c" font-size="8">
  3797. {{
  3798. homeSuspensionWindowsData[getmapName("山西")]
  3799. ?.sxcygfzjrl || 0
  3800. }}
  3801. </text>
  3802. <text x="375" y="212" fill="#919697" font-size="8">MW</text>
  3803. </g>
  3804. <g
  3805. v-show="
  3806. homeSuspensionWindowsData[getmapName('山西')]
  3807. ?.companyState
  3808. "
  3809. >
  3810. <text
  3811. x="255"
  3812. y="176"
  3813. fill="#919697"
  3814. font-size="8"
  3815. font-weight="bold"
  3816. >
  3817. 清洁能源公司
  3818. </text>
  3819. <text x="255" y="188" fill="#919697" font-size="8">
  3820. 总装机容量
  3821. </text>
  3822. <text x="305" y="188" fill="#05bb4c" font-size="8">
  3823. {{
  3824. homeSuspensionWindowsData[getmapName("山西")]
  3825. ?.sxgszzjrl || 0
  3826. }}
  3827. </text>
  3828. <text x="345" y="188" fill="#919697" font-size="8">MW</text>
  3829. <text x="255" y="200" fill="#919697" font-size="8">
  3830. 风场
  3831. </text>
  3832. <text x="275" y="200" fill="#05bb4c" font-size="8">
  3833. {{
  3834. homeSuspensionWindowsData[getmapName("山西")]
  3835. ?.sxgsfdcsl || 0
  3836. }}
  3837. </text>
  3838. <text x="285" y="200" fill="#919697" font-size="8">
  3839. 个,装机容量
  3840. </text>
  3841. <text x="335" y="200" fill="#05bb4c" font-size="8">
  3842. {{
  3843. homeSuspensionWindowsData[getmapName("山西")]
  3844. ?.sxgsfdzjrl || 0
  3845. }}
  3846. </text>
  3847. <text x="375" y="200" fill="#919697" font-size="8">MW</text>
  3848. <text x="255" y="212" fill="#919697" font-size="8">
  3849. 光伏
  3850. </text>
  3851. <text x="275" y="212" fill="#05bb4c" font-size="8">
  3852. {{
  3853. homeSuspensionWindowsData[getmapName("山西")]
  3854. ?.sxgsgfcsl || 0
  3855. }}
  3856. </text>
  3857. <text x="285" y="212" fill="#919697" font-size="8">
  3858. 个,装机容量
  3859. </text>
  3860. <text x="335" y="212" fill="#05bb4c" font-size="8">
  3861. {{
  3862. homeSuspensionWindowsData[getmapName("山西")]
  3863. ?.sxgsgfzjrl || 0
  3864. }}
  3865. </text>
  3866. <text x="375" y="212" fill="#919697" font-size="8">MW</text>
  3867. </g>
  3868. </g>
  3869. </g>
  3870. </g>
  3871. </g>
  3872. <g v-if="showPoint && $store.state.themeName === 'light'">
  3873. <g
  3874. class="item-label"
  3875. @click.stop="clickLabel('SXJ_RGN', '清洁能源')"
  3876. @mouseover="mouseoverIncident('山西')"
  3877. @mouseout="mouseoutIncident('山西')"
  3878. >
  3879. <use xlink:href="#nx-map-circle-1" x="440" y="120" />
  3880. <text class="mapKey" x="445" y="195" fill="#919697" font-size="8">
  3881. 山西
  3882. </text>
  3883. <g v-show="mapDataContentState === '山西'">
  3884. <g
  3885. v-if="
  3886. homeSuspensionWindowsData[getmapName('山西')]
  3887. ?.industryState &&
  3888. homeSuspensionWindowsData[getmapName('山西')]?.companyState
  3889. "
  3890. >
  3891. <rect
  3892. x="285"
  3893. y="105"
  3894. width="150"
  3895. height="105"
  3896. fill="#000000"
  3897. stroke="#46C55A35"
  3898. opacity="0.8"
  3899. />
  3900. <text
  3901. x="290"
  3902. y="116"
  3903. fill="#ffffff"
  3904. font-size="8"
  3905. font-weight="bold"
  3906. >
  3907. 清洁能源产业
  3908. </text>
  3909. <text x="290" y="128" fill="#ffffff" font-size="8">
  3910. 总装机容量
  3911. </text>
  3912. <text x="340" y="128" fill="#05bb4c" font-size="8">
  3913. {{
  3914. homeSuspensionWindowsData[getmapName("山西")]
  3915. ?.sxcyzzjrl || 0
  3916. }}
  3917. </text>
  3918. <text x="380" y="128" fill="#919697" font-size="8">MW</text>
  3919. <text x="290" y="140" fill="#ffffff" font-size="8">风场</text>
  3920. <text x="310" y="140" fill="#05bb4c" font-size="8">
  3921. {{
  3922. homeSuspensionWindowsData[getmapName("山西")]
  3923. ?.sxcyfdcsl || 0
  3924. }}
  3925. </text>
  3926. <text x="320" y="140" fill="#ffffff" font-size="8">
  3927. 个,装机容量
  3928. </text>
  3929. <text x="370" y="140" fill="#05bb4c" font-size="8">
  3930. {{
  3931. homeSuspensionWindowsData[getmapName("山西")]
  3932. ?.sxcyfdzjrl || 0
  3933. }}
  3934. </text>
  3935. <text x="410" y="140" fill="#919697" font-size="8">MW</text>
  3936. <text x="290" y="152" fill="#ffffff" font-size="8">光伏</text>
  3937. <text x="310" y="152" fill="#05bb4c" font-size="8">
  3938. {{
  3939. homeSuspensionWindowsData[getmapName("山西")]
  3940. ?.sxcyfdcsl || 0
  3941. }}
  3942. </text>
  3943. <text x="320" y="152" fill="#ffffff" font-size="8">
  3944. 个,装机容量
  3945. </text>
  3946. <text x="370" y="152" fill="#05bb4c" font-size="8">
  3947. {{
  3948. homeSuspensionWindowsData[getmapName("山西")]
  3949. ?.sxcygfzjrl || 0
  3950. }}
  3951. </text>
  3952. <text x="410" y="152" fill="#919697" font-size="8">MW</text>
  3953. <text x="290" y="164" fill="#ffffff" font-size="8">
  3954. 清洁能源公司
  3955. </text>
  3956. <text x="290" y="176" fill="#ffffff" font-size="8">
  3957. 总装机容量
  3958. </text>
  3959. <text x="340" y="176" fill="#05bb4c" font-size="8">
  3960. {{
  3961. homeSuspensionWindowsData[getmapName("山西")]
  3962. ?.sxgszzjrl || 0
  3963. }}
  3964. </text>
  3965. <text x="380" y="176" fill="#919697" font-size="8">MW</text>
  3966. <text x="290" y="188" fill="#ffffff" font-size="8">风场</text>
  3967. <text x="310" y="188" fill="#05bb4c" font-size="8">
  3968. {{
  3969. homeSuspensionWindowsData[getmapName("山西")]
  3970. ?.sxgsfdcsl || 0
  3971. }}
  3972. </text>
  3973. <text x="320" y="188" fill="#ffffff" font-size="8">
  3974. 个,装机容量
  3975. </text>
  3976. <text x="370" y="188" fill="#05bb4c" font-size="8">
  3977. {{
  3978. homeSuspensionWindowsData[getmapName("山西")]
  3979. ?.sxgsfdzjrl || 0
  3980. }}
  3981. </text>
  3982. <text x="410" y="188" fill="#919697" font-size="8">MW</text>
  3983. <text x="290" y="200" fill="#ffffff" font-size="8">光伏</text>
  3984. <text x="310" y="200" fill="#05bb4c" font-size="8">
  3985. {{
  3986. homeSuspensionWindowsData[getmapName("山西")]
  3987. ?.sxgsgfcsl || 0
  3988. }}
  3989. </text>
  3990. <text x="320" y="200" fill="#ffffff" font-size="8">
  3991. 个,装机容量
  3992. </text>
  3993. <text x="370" y="200" fill="#05bb4c" font-size="8">
  3994. {{
  3995. homeSuspensionWindowsData[getmapName("山西")]
  3996. ?.sxgsgfzjrl || 0
  3997. }}
  3998. </text>
  3999. <text x="410" y="200" fill="#919697" font-size="8">MW</text>
  4000. </g>
  4001. <g v-else>
  4002. <rect
  4003. x="285"
  4004. y="155"
  4005. width="150"
  4006. height="55"
  4007. fill="#000000"
  4008. stroke="#46C55A35"
  4009. opacity="0.8"
  4010. />
  4011. <g
  4012. v-show="
  4013. homeSuspensionWindowsData[getmapName('山西')]
  4014. ?.industryState
  4015. "
  4016. >
  4017. <text
  4018. x="290"
  4019. y="166"
  4020. fill="#ffffff"
  4021. font-size="8"
  4022. font-weight="bold"
  4023. >
  4024. 清洁能源产业
  4025. </text>
  4026. <text x="290" y="178" fill="#ffffff" font-size="8">
  4027. 总装机容量
  4028. </text>
  4029. <text x="340" y="178" fill="#05bb4c" font-size="8">
  4030. {{
  4031. homeSuspensionWindowsData[getmapName("山西")]
  4032. ?.sxcyzzjrl || 0
  4033. }}
  4034. </text>
  4035. <text x="380" y="178" fill="#919697" font-size="8">MW</text>
  4036. <text x="290" y="190" fill="#ffffff" font-size="8">
  4037. 风场
  4038. </text>
  4039. <text x="310" y="190" fill="#05bb4c" font-size="8">
  4040. {{
  4041. homeSuspensionWindowsData[getmapName("山西")]
  4042. ?.sxcyfdcsl || 0
  4043. }}
  4044. </text>
  4045. <text x="320" y="190" fill="#ffffff" font-size="8">
  4046. 个,装机容量
  4047. </text>
  4048. <text x="370" y="190" fill="#05bb4c" font-size="8">
  4049. {{
  4050. homeSuspensionWindowsData[getmapName("山西")]
  4051. ?.sxcyfdzjrl || 0
  4052. }}
  4053. </text>
  4054. <text x="410" y="190" fill="#919697" font-size="8">MW</text>
  4055. <text x="290" y="202" fill="#ffffff" font-size="8">
  4056. 光伏
  4057. </text>
  4058. <text x="310" y="202" fill="#05bb4c" font-size="8">
  4059. {{
  4060. homeSuspensionWindowsData[getmapName("山西")]
  4061. ?.sxcyfdcsl || 0
  4062. }}
  4063. </text>
  4064. <text x="320" y="202" fill="#ffffff" font-size="8">
  4065. 个,装机容量
  4066. </text>
  4067. <text x="370" y="202" fill="#05bb4c" font-size="8">
  4068. {{
  4069. homeSuspensionWindowsData[getmapName("山西")]
  4070. ?.sxcygfzjrl || 0
  4071. }}
  4072. </text>
  4073. <text x="410" y="202" fill="#919697" font-size="8">MW</text>
  4074. </g>
  4075. <g
  4076. v-show="
  4077. homeSuspensionWindowsData[getmapName('山西')]
  4078. ?.industryState
  4079. "
  4080. >
  4081. <text
  4082. x="290"
  4083. y="166"
  4084. fill="#ffffff"
  4085. font-size="8"
  4086. font-weight="bold"
  4087. >
  4088. 清洁能源公司
  4089. </text>
  4090. <text x="290" y="178" fill="#ffffff" font-size="8">
  4091. 总装机容量
  4092. </text>
  4093. <text x="340" y="178" fill="#05bb4c" font-size="8">
  4094. {{
  4095. homeSuspensionWindowsData[getmapName("山西")]
  4096. ?.sxgszzjrl || 0
  4097. }}
  4098. </text>
  4099. <text x="380" y="178" fill="#919697" font-size="8">MW</text>
  4100. <text x="290" y="190" fill="#ffffff" font-size="8">
  4101. 风场
  4102. </text>
  4103. <text x="310" y="190" fill="#05bb4c" font-size="8">
  4104. {{
  4105. homeSuspensionWindowsData[getmapName("山西")]
  4106. ?.sxgsfdcsl || 0
  4107. }}
  4108. </text>
  4109. <text x="320" y="190" fill="#ffffff" font-size="8">
  4110. 个,装机容量
  4111. </text>
  4112. <text x="370" y="190" fill="#05bb4c" font-size="8">
  4113. {{
  4114. homeSuspensionWindowsData[getmapName("山西")]
  4115. ?.sxgsfdzjrl || 0
  4116. }}
  4117. </text>
  4118. <text x="410" y="190" fill="#919697" font-size="8">MW</text>
  4119. <text x="290" y="202" fill="#ffffff" font-size="8">
  4120. 光伏
  4121. </text>
  4122. <text x="310" y="202" fill="#05bb4c" font-size="8">
  4123. {{
  4124. homeSuspensionWindowsData[getmapName("山西")]
  4125. ?.sxgsgfcsl || 0
  4126. }}
  4127. </text>
  4128. <text x="320" y="202" fill="#ffffff" font-size="8">
  4129. 个,装机容量
  4130. </text>
  4131. <text x="370" y="202" fill="#05bb4c" font-size="8">
  4132. {{
  4133. homeSuspensionWindowsData[getmapName("山西")]
  4134. ?.sxgsgfzjrl || 0
  4135. }}
  4136. </text>
  4137. <text x="410" y="202" fill="#919697" font-size="8">MW</text>
  4138. </g>
  4139. </g>
  4140. </g>
  4141. </g>
  4142. </g>
  4143. </g>
  4144. </g>
  4145. </svg>
  4146. </div>
  4147. </template>
  4148. <script>
  4149. export default {
  4150. // 名称
  4151. name: "SvgMapNX",
  4152. // 使用组件
  4153. components: {},
  4154. // 传入参数
  4155. props: {
  4156. show: {
  4157. type: String,
  4158. default: "all",
  4159. },
  4160. data: {
  4161. type: Object,
  4162. default: () => {},
  4163. },
  4164. homeSuspensionWindowsData: {
  4165. type: Object,
  4166. default: () => {},
  4167. },
  4168. mapList: {
  4169. type: Array,
  4170. default: () => [],
  4171. },
  4172. },
  4173. // 自定义事件
  4174. emits: ["clickLabel"],
  4175. // 数据
  4176. data() {
  4177. return {
  4178. mapDataContentState: "",
  4179. // hb_state: false,
  4180. // xj_state: false,
  4181. // xz_state: false,
  4182. // sd_state: false,
  4183. // cn_state: false,
  4184. // wlcb_state: false,
  4185. // sx_state: false,
  4186. popup: [
  4187. false,
  4188. false,
  4189. false,
  4190. false,
  4191. false,
  4192. false,
  4193. false,
  4194. false,
  4195. false,
  4196. false,
  4197. ],
  4198. effectsY: [[65, 1]],
  4199. sd: 1950,
  4200. o: 0,
  4201. showType: "",
  4202. sourceMap: {},
  4203. xtMap: {},
  4204. c1: false,
  4205. c2: false,
  4206. r: 0,
  4207. deg: 0,
  4208. showPoint: false,
  4209. svgTop: 0,
  4210. svgLeft: 0,
  4211. svgWidth: "100%",
  4212. svgHeight: "100%",
  4213. };
  4214. },
  4215. // 函数
  4216. methods: {
  4217. getmapName(name) {
  4218. let province = this.mapList.find((item) => name == item.text);
  4219. return province.code;
  4220. },
  4221. clickIncident(data) {
  4222. },
  4223. mouseoverIncident(data) {
  4224. this.mapDataContentState = data;
  4225. },
  4226. mouseoutIncident(data) {
  4227. this.mapDataContentState = "";
  4228. },
  4229. clickLabel(wpId, planBtnName, penetrateType) {
  4230. this.$emit("clickLabel", wpId, planBtnName, penetrateType);
  4231. },
  4232. popupHide: function () {
  4233. for (let i = 0; i < this.popup.length; i++) {
  4234. this.popup[i] = false;
  4235. }
  4236. },
  4237. mouseover: function (index) {
  4238. this.popupHide();
  4239. this.popup[index] = true;
  4240. },
  4241. mouseout: function () {
  4242. this.popupHide();
  4243. },
  4244. },
  4245. // 生命周期钩子
  4246. beforeCreate() {
  4247. // 创建前
  4248. },
  4249. created() {
  4250. // 创建后
  4251. setTimeout(() => {
  4252. this.c1 = true;
  4253. setTimeout(() => {
  4254. this.c2 = true;
  4255. }, 500);
  4256. }, 2000);
  4257. },
  4258. mounted() {
  4259. // 渲染后
  4260. this.svgHeight = (this.$el.scrollHeight + 200).toFixed(0);
  4261. this.svgWidth = ((this.svgHeight / 359) * 745.3).toFixed(0); // 745.3 459
  4262. this.svgTop = `calc(50% - ${this.svgHeight / 2 - 20}px)`;
  4263. this.svgLeft = `calc(50% - ${this.svgWidth / 1.82}px)`;
  4264. // this.svgLeft = `calc(50% - ${this.svgWidth / 1.91}px)`;
  4265. this.showType = this.show;
  4266. this.sourceMap = this.data;
  4267. this.deg = 60;
  4268. let eAnimation = setInterval(() => {
  4269. // 走光
  4270. this.sd = this.sd - 9;
  4271. if (this.sd <= 0) {
  4272. clearInterval(eAnimation);
  4273. let ys = 65;
  4274. let ye = 80;
  4275. let y = ys;
  4276. let upAnimation = setInterval(() => {
  4277. // 转场起
  4278. y += 3;
  4279. let op = 1 - 1 * ((y - ys) / (ye - ys));
  4280. this.effectsY.push([y, op - 0.2]);
  4281. this.o = 1 - op;
  4282. if (y >= ye) {
  4283. clearInterval(upAnimation);
  4284. this.o = 1;
  4285. setTimeout(() => {
  4286. // 转场落
  4287. let downAnimation = setInterval(() => {
  4288. this.effectsY.shift();
  4289. if (this.effectsY.length == 0) {
  4290. clearInterval(downAnimation);
  4291. }
  4292. }, 50);
  4293. }, 400);
  4294. let degAnimation = setInterval(() => {
  4295. this.deg -= 5;
  4296. if (this.deg <= 0) {
  4297. this.deg = 0;
  4298. this.showPoint = true;
  4299. clearInterval(degAnimation);
  4300. }
  4301. }, 60);
  4302. let divergenceAnimation = setInterval(() => {
  4303. this.r += 5;
  4304. if (this.r >= 800) {
  4305. this.r = 0;
  4306. clearInterval(divergenceAnimation);
  4307. }
  4308. }, 10);
  4309. }
  4310. }, 35);
  4311. }
  4312. }, 1);
  4313. },
  4314. watch: {
  4315. show(res) {
  4316. this.showType = res;
  4317. },
  4318. data(res) {
  4319. this.sourceMap = res;
  4320. },
  4321. },
  4322. };
  4323. </script>
  4324. <style lang="less" scoped>
  4325. .svg-map-nx {
  4326. position: relative;
  4327. width: 100%;
  4328. height: 100%;
  4329. svg {
  4330. position: absolute;
  4331. left: 0;
  4332. z-index: 1;
  4333. }
  4334. .item-label {
  4335. cursor: pointer;
  4336. }
  4337. #nx-map-circle-1 {
  4338. transform-origin: 50% 20%;
  4339. transform: rotateX(38deg);
  4340. }
  4341. .nx-map-up-circle {
  4342. animation: nxMapUpCircle 4s linear;
  4343. }
  4344. @keyframes nxMapUpCircle {
  4345. 0% {
  4346. r: 0;
  4347. }
  4348. 10% {
  4349. r: 1;
  4350. }
  4351. 99% {
  4352. r: 1;
  4353. }
  4354. 100% {
  4355. r: 0;
  4356. }
  4357. }
  4358. .nx-map-line {
  4359. stroke-dasharray: 60, 100;
  4360. animation: nxMapLine 4s linear;
  4361. }
  4362. @keyframes nxMapLine {
  4363. 0% {
  4364. stroke-dashoffset: 60;
  4365. }
  4366. 10% {
  4367. stroke-dashoffset: 60;
  4368. }
  4369. 20% {
  4370. stroke-dashoffset: 0;
  4371. }
  4372. 99% {
  4373. stroke-dashoffset: 0;
  4374. }
  4375. 100% {
  4376. stroke-dashoffset: 60;
  4377. }
  4378. }
  4379. .nx-map-down-circle-1 {
  4380. animation: nxMapDownCircle1 4s linear;
  4381. }
  4382. @keyframes nxMapDownCircle1 {
  4383. 0% {
  4384. r: 0;
  4385. }
  4386. 20% {
  4387. r: 0;
  4388. }
  4389. 30% {
  4390. r: 1;
  4391. }
  4392. 50% {
  4393. r: 1;
  4394. }
  4395. 99% {
  4396. r: 1;
  4397. }
  4398. 100% {
  4399. r: 1;
  4400. }
  4401. }
  4402. .nx-map-down-circle-2 {
  4403. animation: nxMapDownCircle2 4s linear;
  4404. }
  4405. @keyframes nxMapDownCircle2 {
  4406. 0% {
  4407. r: 0;
  4408. }
  4409. 20% {
  4410. r: 0;
  4411. }
  4412. 40% {
  4413. r: 2;
  4414. }
  4415. 50% {
  4416. r: 2;
  4417. }
  4418. 99% {
  4419. r: 2;
  4420. }
  4421. 100% {
  4422. r: 2;
  4423. }
  4424. }
  4425. .nx-map-down-circle-3 {
  4426. animation: nxMapDownCircle3 4s linear;
  4427. }
  4428. @keyframes nxMapDownCircle3 {
  4429. 0% {
  4430. r: 0;
  4431. }
  4432. 20% {
  4433. r: 0;
  4434. }
  4435. 50% {
  4436. r: 3;
  4437. }
  4438. 99% {
  4439. r: 3;
  4440. }
  4441. 100% {
  4442. r: 0;
  4443. }
  4444. }
  4445. .nx-map-down-circle-loop {
  4446. animation: nxMapDownCircleLoop 2s linear infinite;
  4447. }
  4448. @keyframes nxMapDownCircleLoop {
  4449. 0% {
  4450. r: 0;
  4451. opacity: 1;
  4452. }
  4453. 80% {
  4454. r: 8;
  4455. opacity: 0.8;
  4456. }
  4457. 100% {
  4458. r: 12;
  4459. opacity: 0;
  4460. }
  4461. }
  4462. /* #91ffcc #16FFAA */
  4463. .effects-svg-path {
  4464. stroke-dasharray: 1950, 2000;
  4465. }
  4466. .esp-1 {
  4467. stroke: #05bb4c;
  4468. stroke-width: 3;
  4469. }
  4470. .esp-6 {
  4471. stroke: #05bb4c;
  4472. stroke-width: 9;
  4473. filter: blur(20px);
  4474. }
  4475. .esp-c {
  4476. stroke: #05bb4c;
  4477. stroke-width: 20;
  4478. filter: blur(40px);
  4479. }
  4480. .svg-circle-divergence {
  4481. position: fixed;
  4482. z-index: -1;
  4483. top: 0;
  4484. left: 0;
  4485. }
  4486. }
  4487. </style>