svg-map-nx.vue 194 KB

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