map.vue 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922
  1. <template>
  2. <div class="map">
  3. <HeaderNav
  4. ref="header"
  5. :wpId="wpId"
  6. :currents="currents"
  7. @firstRender="firstRender"
  8. @typeFlag="typeFlag"
  9. :isShows="false"
  10. />
  11. <!-- 山西左侧信息 -->
  12. <div
  13. v-if="currentTitle != '全国'"
  14. class="sx-left-box"
  15. :style="{ zIndex: dialogShow ? 6 : 5 }"
  16. >
  17. <div class="security-days safe_power">
  18. <div class="text">安全天数:</div>
  19. <div class="num">
  20. <span class="font-num">{{
  21. StationinformationData?.qt?.aqts
  22. ? StationinformationData.qt?.aqts
  23. : "0"
  24. }}</span>
  25. <span class="unit">天</span>
  26. </div>
  27. <div class="security">
  28. <div v-if="wpId.includes('FDC') || wpId.includes('GDC')" class="text">
  29. {{ currentTitle }}资产统计:
  30. </div>
  31. <div v-else-if="tabShow == 0" class="text">资产统计:</div>
  32. <div v-else-if="tabShow == -1" class="text">风电资产统计:</div>
  33. <div v-else-if="tabShow == -2" class="text">光伏资产统计:</div>
  34. <div class="num">
  35. <span class="font-num">
  36. {{
  37. wpId.includes("FDC") || wpId.includes("GDC")
  38. ? (
  39. StationinformationData?.station[wpId]?.zjrl / 1000
  40. ).toFixed(2)
  41. : activeTab == 0
  42. ? StationinformationData?.qt?.zzjrl
  43. : activeTab == -1
  44. ? StationinformationData?.qt?.fdzzjrl
  45. : StationinformationData?.qt?.gfzzjrl
  46. }}
  47. </span>
  48. <span class="unit-t">MW</span>
  49. </div>
  50. <div class="lineBox">
  51. <div class="fd-rl" v-if="tabShow == 0">
  52. <span class="text">风电</span>
  53. <span class="font-num">
  54. {{
  55. wpId.includes("FDC")
  56. ? (
  57. StationinformationData?.station[wpId]?.zjrl / 1000
  58. ).toFixed(2)
  59. : StationinformationData?.qt?.fdzzjrl
  60. }}
  61. </span>
  62. <span class="unit">MW</span>
  63. </div>
  64. <div class="gf-rl" v-if="tabShow == 0">
  65. <span class="text">光伏</span>
  66. <span class="font-num">{{
  67. wpId.includes("GDC")
  68. ? (
  69. StationinformationData?.station[wpId]?.zjrl / 1000
  70. ).toFixed(2)
  71. : StationinformationData?.qt?.gfzzjrl
  72. }}</span>
  73. <span class="unit">MW</span>
  74. </div>
  75. </div>
  76. </div>
  77. </div>
  78. <div
  79. class="qjny-info safe_power"
  80. @mouseenter="switchShow = true"
  81. @mouseleave="switchShow = false"
  82. :style="{ width: tabShow == 0 ? '406px' : 'calc(170px + 20px)' }"
  83. >
  84. <ul>
  85. <li v-show="tabShow == -1 || tabShow == 0">
  86. <div class="imgs">
  87. <img src="@/assets/home/fc_1.png" alt="" />
  88. </div>
  89. <p class="qty_tit">
  90. 风场数量
  91. <sapn class="qty_value">
  92. {{
  93. wpId.includes("FDC")
  94. ? 1
  95. : StationinformationData?.cblpoint.qjny_fcts
  96. }}</sapn
  97. >
  98. <span class="qty_u">个</span>
  99. </p>
  100. <div class="qty_content">
  101. <p class="qty_imag">
  102. 风机台数
  103. <span class="qty_val">
  104. {{
  105. wpId.includes("FDC")
  106. ? StationinformationData?.station[wpId]?.zjts
  107. : StationinformationData?.cblpoint.qjny_fj_ts
  108. }} </span
  109. ><span class="qty_unit">台</span>
  110. </p>
  111. <p class="qty_imag">
  112. 陆地风机
  113. <span class="qty_val">
  114. {{
  115. wpId.includes("FDC")
  116. ? StationinformationData?.station[wpId]?.zjts
  117. : StationinformationData?.cblpoint.qjny_fj_ts
  118. }} </span
  119. ><span class="qty_unit">台</span>
  120. </p>
  121. <p class="qty_imag">
  122. 海上风机
  123. <span class="qty_val">
  124. {{
  125. wpId.includes("FDC")
  126. ? StationinformationData?.station[wpId]?.hszjts
  127. : StationinformationData?.cblpoint.qjny_hsfj_ts
  128. }} </span
  129. ><span class="qty_unit">台</span>
  130. </p>
  131. </div>
  132. </li>
  133. <li class="line" v-show="tabShow == 0"></li>
  134. <li v-show="tabShow == 0 || tabShow == -2">
  135. <div class="imgs">
  136. <img src="@/assets/home/gf_1.png" alt="" />
  137. </div>
  138. <p class="qty_tit">
  139. 光伏数量
  140. <sapn class="qty_value" id="pv">{{
  141. wpId.includes("GDC")
  142. ? 1
  143. : StationinformationData?.cblpoint.qjny_gfts
  144. }}</sapn>
  145. <span class="qty_u">个</span>
  146. </p>
  147. <div class="qty_content">
  148. <p class="qty_imag">
  149. 逆变器
  150. <span class="qty_val">
  151. {{
  152. wpId.includes("GDC")
  153. ? StationinformationData?.station[wpId]?.jzzjts +
  154. StationinformationData?.station[wpId]?.zczjts
  155. : StationinformationData?.cblpoint.qjny_gf_jzts +
  156. StationinformationData?.cblpoint.qjny_gf_zcts
  157. }}
  158. </span>
  159. <span class="qty_unit">台</span>
  160. </p>
  161. <p class="qty_imag">
  162. 集中式<span class="qty_val">
  163. {{
  164. wpId.includes("GDC")
  165. ? StationinformationData?.station[wpId]?.jzzjts
  166. : StationinformationData?.cblpoint.qjny_gf_jzts
  167. }} </span
  168. ><span class="qty_unit">台</span>
  169. </p>
  170. <p class="qty_imag">
  171. 组串式<span class="qty_val">
  172. {{
  173. wpId.includes("GDC")
  174. ? StationinformationData?.station[wpId]?.zczjts
  175. : StationinformationData?.cblpoint.qjny_gf_zcts
  176. }} </span
  177. ><span class="qty_unit">台</span>
  178. </p>
  179. </div>
  180. </li>
  181. </ul>
  182. <div class="switch-jrqk" v-show="switchShow">
  183. <div><img src="@/assets/imgs/arrows.png" /> 接入情况</div>
  184. <ul>
  185. <li v-show="tabShow == -1 || tabShow == 0">
  186. <div class="imgs">
  187. <img src="@/assets/home/fc_1.png" alt="" />
  188. </div>
  189. <p class="qty_tit">
  190. 风场数量
  191. <sapn class="qty_value">
  192. {{
  193. wpId.includes("FDC")
  194. ? 1
  195. : StationinformationData?.cblpoint?.jr_fcts
  196. }}</sapn
  197. >
  198. <span class="qty_u">个</span>
  199. </p>
  200. <div class="qty_content">
  201. <p class="qty_imag">
  202. 风机台数<span class="qty_val">
  203. {{
  204. wpId.includes("FDC")
  205. ? StationinformationData?.station[wpId]?.zjts
  206. : StationinformationData?.cblpoint?.jr_fj_ts
  207. }} </span
  208. ><span class="qty_unit">台</span>
  209. </p>
  210. <p class="qty_imag">
  211. 陆地风机<span class="qty_val">
  212. {{
  213. wpId.includes("FDC")
  214. ? StationinformationData?.station[wpId]?.zjts
  215. : StationinformationData?.cblpoint?.jr_fj_ts
  216. }} </span
  217. ><span class="qty_unit">台</span>
  218. </p>
  219. <p class="qty_imag">
  220. 海上风机<span class="qty_val">
  221. {{
  222. wpId.includes("FDC")
  223. ? StationinformationData?.station[wpId]?.hszjts
  224. : StationinformationData?.cblpoint?.qjny_hsfj_ts
  225. }} </span
  226. ><span class="qty_unit">台</span>
  227. </p>
  228. </div>
  229. </li>
  230. <li class="line" v-if="tabShow == 0"></li>
  231. <li v-show="tabShow == 0 || tabShow == -2">
  232. <div class="imgs">
  233. <img src="@/assets/home/gf_1.png" alt="" />
  234. </div>
  235. <p class="qty_tit">
  236. 光伏数量
  237. <sapn class="qty_value" id="pv">
  238. {{
  239. wpId.includes("GDC")
  240. ? 1
  241. : StationinformationData?.cblpoint?.jr_gfts
  242. }}</sapn
  243. >
  244. <span class="qty_u">个</span>
  245. </p>
  246. <div class="qty_content">
  247. <p class="qty_imag">
  248. 逆变器<span class="qty_val">
  249. {{
  250. wpId.includes("GDC")
  251. ? StationinformationData?.station[wpId]?.jzzjts +
  252. StationinformationData?.station[wpId]?.zczjts
  253. : StationinformationData?.cblpoint.jr_gf_jzts +
  254. StationinformationData?.cblpoint.jr_gf_zcts
  255. }}
  256. </span>
  257. <span class="qty_unit">台</span>
  258. </p>
  259. <p class="qty_imag">
  260. 集中式<span class="qty_val">
  261. {{
  262. wpId.includes("GDC")
  263. ? StationinformationData?.station[wpId]?.jzzjts
  264. : StationinformationData?.cblpoint?.jr_gf_jzts
  265. }} </span
  266. ><span class="qty_unit">台</span>
  267. </p>
  268. <p class="qty_imag">
  269. 组串式<span class="qty_val">
  270. {{
  271. wpId.includes("GDC")
  272. ? StationinformationData?.station[wpId]?.zczjts
  273. : StationinformationData?.cblpoint?.jr_gf_zcts
  274. }} </span
  275. ><span class="qty_unit">台</span>
  276. </p>
  277. </div>
  278. </li>
  279. </ul>
  280. </div>
  281. </div>
  282. <div class="ecoName safe_power">
  283. <p class="ecoTitle">社会贡献<span>万吨/月</span></p>
  284. <ul>
  285. <li class="eco_count">
  286. <div class="svg-icon svg-icon-green">
  287. <svg-icon class="" svgid="svg-煤" />
  288. </div>
  289. <p class="eco_val text-ellipsis">
  290. {{ (StationinformationData?.qt.jym).toFixed(2) }}
  291. </p>
  292. <p class="eco_name">煤</p>
  293. </li>
  294. <li class="eco_count">
  295. <div class="svg-icon svg-icon-green">
  296. <svg-icon class="" svgid="svg-水" />
  297. </div>
  298. <p class="eco_val text-ellipsis">
  299. {{ (StationinformationData?.qt.jys).toFixed(2) }}
  300. </p>
  301. <p class="eco_name">水</p>
  302. </li>
  303. <li class="eco_count">
  304. <div class="kind">
  305. <div class="svg-icon svg-icon-green">
  306. <svg-icon svgid="svg-co2" />
  307. </div>
  308. </div>
  309. <p class="eco_val text-ellipsis">
  310. {{ (StationinformationData?.qt.co2).toFixed(2) }}
  311. </p>
  312. <p class="eco_name">二氧化碳</p>
  313. </li>
  314. <li class="eco_count">
  315. <div class="kind">
  316. <div class="svg-icon svg-icon-green">
  317. <svg-icon svgid="svg-so2" />
  318. </div>
  319. </div>
  320. <p class="eco_val text-ellipsis">
  321. {{ (StationinformationData?.qt.so2).toFixed(2) }}
  322. </p>
  323. <p class="eco_name">二氧化硫</p>
  324. </li>
  325. </ul>
  326. </div>
  327. <div
  328. class="my_echarts safe_power"
  329. v-if="penetrateType == 3"
  330. @dblclick="handleShowCharts(currentTitle)"
  331. >
  332. <power-echarts
  333. :CurveValues="CurveValues"
  334. width="680px"
  335. height="220px"
  336. :unit="'MW'"
  337. :ratio="1000"
  338. :id="'cut-power'"
  339. :orient="'horizontal'"
  340. />
  341. </div>
  342. </div>
  343. <el-dialog
  344. class="dialogs"
  345. width="80%"
  346. top="100px"
  347. v-model="dialogShow"
  348. :show-close="true"
  349. destroy-on-close
  350. >
  351. <template #title>
  352. <div class="dialog-title">
  353. <div class="title">{{ showName }}</div>
  354. </div>
  355. </template>
  356. <div class="dialog-body" style="height: 600px">
  357. <img class="dialog-img" src="@assets/imgs/dialog.png" />
  358. <power-echarts
  359. :id="'show-chart'"
  360. :showTitle="false"
  361. :CurveValues="showCharts"
  362. width="100%"
  363. height="560px"
  364. :unit="'MW'"
  365. :orient="'horizontal'"
  366. />
  367. </div>
  368. </el-dialog>
  369. <!-- 全国左侧信息 -->
  370. <div class="leftBox" v-if="currentTitle == '全国'">
  371. <div
  372. :class="
  373. $store.state.themeName === 'light' ? 'new-home-light' : 'new-home'
  374. "
  375. >
  376. <div class="security-day">
  377. <div v-if="activeTab == 0" class="text">总装机容量:</div>
  378. <div v-if="activeTab == -1" class="text">
  379. 风电总装机容量:
  380. </div>
  381. <div v-if="activeTab == -2" class="text">
  382. 光伏总装机容量:
  383. </div>
  384. <div class="num">
  385. <span class="font-num" v-if="activeTab == 0">{{
  386. StationinformationData?.qt?.zzjrl
  387. }}</span>
  388. <span class="font-num" v-if="activeTab == -1">{{
  389. StationinformationData?.qt?.fdzzjrl
  390. }}</span>
  391. <span class="font-num" v-if="activeTab == -2">{{
  392. StationinformationData?.qt?.gfzzjrl
  393. }}</span>
  394. <span class="unit">MW</span>
  395. </div>
  396. <div class="security">
  397. <div class="lineBox">
  398. <div v-if="activeTab == 0">
  399. <span>风电</span>
  400. <span class="num font-num">{{
  401. StationinformationData?.qt?.fdzzjrl
  402. }}</span>
  403. <span class="unit">MW</span>
  404. </div>
  405. <div v-if="activeTab == 0">
  406. <span>光伏</span>
  407. <span class="num font-num">{{
  408. StationinformationData?.qt?.gfzzjrl
  409. }}</span>
  410. <span class="unit">MW</span>
  411. </div>
  412. </div>
  413. <div class="text">安全天数:</div>
  414. <div class="num">
  415. <span class="font-num">{{
  416. StationinformationData?.qt?.aqts || 0
  417. }}</span>
  418. <span class="unit-t">天</span>
  419. </div>
  420. </div>
  421. </div>
  422. <div
  423. class="energy-system-box box1"
  424. :class="activeTab == -1 || activeTab == -2 ? 'piggy-tab-width' : ''"
  425. >
  426. <div class="energy-system-content clearfix">
  427. <div class="title">
  428. <span class="title-name">公司</span>
  429. <span class="title-all-title">总装机容量 :</span>
  430. <span class="title-all-content" v-if="activeTab == 0">{{
  431. Number(StationinformationData?.cblpoint?.qjny_zzjrl) || 0
  432. }}</span>
  433. <span class="title-all-content" v-if="activeTab == -1">{{
  434. StationinformationData?.cblpoint?.qjny_fd_zjrl || 0
  435. }}</span>
  436. <span class="title-all-content" v-if="activeTab == -2">{{
  437. StationinformationData?.cblpoint?.qjny_gf_zjrl || 0
  438. }}</span>
  439. <span class="title-all-unit">MW</span>
  440. </div>
  441. <div
  442. class="left-content float-left"
  443. :class="activeTab == -1 ? 'piggy-bank' : ''"
  444. v-if="activeTab == -1 || activeTab == 0"
  445. >
  446. <div class="img-num clearfix">
  447. <div class="img float-left">
  448. <img src="@/assets/home/fc_1.png" alt="" />
  449. </div>
  450. <div class="num float-left">
  451. <span>风电场数量</span> <br />
  452. <span>{{ StationinformationData?.cblpoint?.qjny_fcts }}</span>
  453. <span>个</span>
  454. </div>
  455. </div>
  456. <div class="capacity">
  457. <div class="item">
  458. <el-row align="middle">
  459. <el-col :span="8"><span>装机容量</span></el-col>
  460. <el-col :span="9"
  461. ><span>{{
  462. StationinformationData?.cblpoint?.qjny_fd_zjrl
  463. }}</span></el-col
  464. >
  465. <el-col :span="7"><span>MW</span></el-col>
  466. </el-row>
  467. </div>
  468. <!-- <div class="item">
  469. <el-row>
  470. <el-col :span="8"><span>风机台数</span></el-col>
  471. <el-col :span="9"
  472. ><span>{{
  473. StationinformationData?.cblpoint?.qjny_fj_ts
  474. }}</span></el-col
  475. >
  476. <el-col :span="7"><span>台</span></el-col>
  477. </el-row>
  478. </div> -->
  479. </div>
  480. </div>
  481. <div
  482. class="right-content float-left"
  483. :class="activeTab == -2 ? 'piggy-bank' : ''"
  484. v-if="activeTab == -2 || activeTab == 0"
  485. >
  486. <div class="img-num clearfix">
  487. <div class="img float-left">
  488. <img src="@/assets/home/gf_1.png" alt="" />
  489. </div>
  490. <div class="num float-left">
  491. <span>光伏电站数量</span> <br />
  492. <span>{{ StationinformationData?.cblpoint?.qjny_gfts }}</span>
  493. <span>个</span>
  494. </div>
  495. </div>
  496. <div class="capacity">
  497. <div class="item">
  498. <el-row>
  499. <el-col :span="8"><span>装机容量</span></el-col>
  500. <el-col :span="9"
  501. ><span>{{
  502. StationinformationData?.cblpoint?.qjny_gf_zjrl
  503. }}</span></el-col
  504. >
  505. <el-col :span="7"><span>MW</span></el-col>
  506. </el-row>
  507. </div>
  508. <!-- <div class="item">
  509. <el-row>
  510. <el-col :span="8"><span>集中式</span></el-col>
  511. <el-col :span="9"
  512. ><span>{{
  513. StationinformationData?.cblpoint?.qjny_gf_jzts
  514. }}</span></el-col
  515. >
  516. <el-col :span="7"><span>台</span></el-col>
  517. </el-row>
  518. </div>
  519. <div class="item">
  520. <el-row>
  521. <el-col :span="8"><span>组串式</span></el-col>
  522. <el-col :span="9"
  523. ><span>{{
  524. StationinformationData?.cblpoint?.qjny_gf_zcts
  525. }}</span></el-col
  526. >
  527. <el-col :span="7"><span>台</span></el-col>
  528. </el-row>
  529. </div> -->
  530. </div>
  531. </div>
  532. </div>
  533. </div>
  534. <div
  535. class="energy-system-box box2"
  536. :class="activeTab == -1 || activeTab == -2 ? 'piggy-tab-width' : ''"
  537. >
  538. <div class="energy-system-content clearfix">
  539. <div class="title">
  540. <span class="title-name">系统接入情况</span>
  541. <span class="title-all-title">总装机容量 :</span>
  542. <span class="title-all-content" v-if="activeTab == 0">{{
  543. Number(StationinformationData?.cblpoint?.jr_zzjrl) || 0
  544. }}</span>
  545. <span class="title-all-content" v-if="activeTab == -1">{{
  546. StationinformationData?.cblpoint?.jr_fd_zjrl || 0
  547. }}</span>
  548. <span class="title-all-content" v-if="activeTab == -2">{{
  549. StationinformationData?.cblpoint?.jr_gf_zjrl || 0
  550. }}</span>
  551. <span class="title-all-unit">MW</span>
  552. </div>
  553. <div
  554. class="left-content float-left"
  555. :class="activeTab == -1 ? 'piggy-bank' : ''"
  556. v-if="activeTab == -1 || activeTab == 0"
  557. >
  558. <div class="img-num clearfix">
  559. <div>
  560. <div class="img float-left">
  561. <img src="../../../assets/home/fc_1.png" alt="" />
  562. </div>
  563. <div class="num float-left">
  564. <span>风电场数量</span> <br />
  565. <span>{{ StationinformationData?.cblpoint?.jr_fcts }}</span>
  566. <span>个</span>
  567. </div>
  568. </div>
  569. </div>
  570. <div class="capacity">
  571. <div class="item">
  572. <el-row>
  573. <el-col :span="8"><span>装机容量</span></el-col>
  574. <el-col :span="9"
  575. ><span>{{
  576. StationinformationData?.cblpoint?.jr_fd_zjrl
  577. }}</span></el-col
  578. >
  579. <el-col :span="7"><span>MW</span></el-col>
  580. </el-row>
  581. </div>
  582. <div class="item">
  583. <el-row>
  584. <el-col :span="8"><span>风机台数</span></el-col>
  585. <el-col :span="9"
  586. ><span>{{
  587. StationinformationData?.cblpoint?.jr_fj_ts
  588. }}</span></el-col
  589. >
  590. <el-col :span="7"><span>台</span></el-col>
  591. </el-row>
  592. </div>
  593. </div>
  594. </div>
  595. <div
  596. class="right-content float-left"
  597. :class="activeTab == -2 ? 'piggy-bank' : ''"
  598. v-if="activeTab == -2 || activeTab == 0"
  599. >
  600. <div class="img-num clearfix">
  601. <div class="img float-left">
  602. <img src="../../../assets/home/gf_1.png" alt="" />
  603. </div>
  604. <div class="num float-left">
  605. <span>光伏电站数量</span> <br />
  606. <span>{{ StationinformationData?.cblpoint?.jr_gfts }}</span>
  607. <span>个</span>
  608. </div>
  609. </div>
  610. <div class="capacity">
  611. <div class="item">
  612. <el-row>
  613. <el-col :span="8"><span>装机容量</span></el-col>
  614. <el-col :span="9"
  615. ><span>{{
  616. StationinformationData?.cblpoint?.jr_gf_zjrl || 0
  617. }}</span></el-col
  618. >
  619. <el-col :span="7"><span>MW</span></el-col>
  620. </el-row>
  621. </div>
  622. <div class="item">
  623. <el-row>
  624. <el-col :span="8"><span>集中式</span></el-col>
  625. <el-col :span="9"
  626. ><span>{{
  627. StationinformationData?.cblpoint?.jr_gf_jzts || 0
  628. }}</span></el-col
  629. >
  630. <el-col :span="7"><span>台</span></el-col>
  631. </el-row>
  632. </div>
  633. <div class="item">
  634. <el-row>
  635. <el-col :span="8"><span>组串式</span></el-col>
  636. <el-col :span="9"
  637. ><span>{{
  638. StationinformationData?.cblpoint?.jr_gf_zcts || 0
  639. }}</span></el-col
  640. >
  641. <el-col :span="7"><span>台</span></el-col>
  642. </el-row>
  643. </div>
  644. </div>
  645. </div>
  646. </div>
  647. </div>
  648. <div class="energy-system-box box3">
  649. <div class="model-bg">
  650. <div class="titles">
  651. <div class="name">节能减排</div>
  652. <div class="unit">(单位: 万吨)</div>
  653. </div>
  654. <div class="save">
  655. <div class="save-item">
  656. <div
  657. class="jnjp-icon svg-icon svg-icon-green"
  658. style="width:20px,height:20px"
  659. >
  660. <svg-icon class="" svgid="svg-煤" />
  661. </div>
  662. <div class="save-value">
  663. {{
  664. Number(Number(StationinformationData?.qt?.jym)).toFixed(2)
  665. }}
  666. </div>
  667. <div class="save-name">煤</div>
  668. </div>
  669. <div class="save-item">
  670. <div class="jnjp-icon svg-icon svg-icon-green">
  671. <svg-icon class="" svgid="svg-水" />
  672. </div>
  673. <div class="save-value">
  674. {{
  675. Number(Number(StationinformationData?.qt?.jys)).toFixed(2)
  676. }}
  677. </div>
  678. <div class="save-name">水</div>
  679. </div>
  680. <div class="save-item">
  681. <div class="kind">
  682. <div class="jnjp-icon1 svg-icon svg-icon-green">
  683. <svg-icon class="" svgid="svg-co2" />
  684. </div>
  685. </div>
  686. <div class="save-value">
  687. {{
  688. Number(Number(StationinformationData?.qt?.co2)).toFixed(2)
  689. }}
  690. </div>
  691. <div class="save-name">二氧化碳</div>
  692. </div>
  693. <div class="save-item">
  694. <div class="kind">
  695. <div class="jnjp-icon1 svg-icon svg-icon-green">
  696. <svg-icon class="" svgid="svg-so2" />
  697. </div>
  698. </div>
  699. <div class="save-value">
  700. {{
  701. Number(Number(StationinformationData?.qt?.so2)).toFixed(2)
  702. }}
  703. </div>
  704. <div class="save-name">二氧化硫</div>
  705. </div>
  706. </div>
  707. </div>
  708. </div>
  709. </div>
  710. </div>
  711. <!-- 展示当前场站名称 -->
  712. <div
  713. class="name-box"
  714. :style="{ zIndex: dialogShow || dialogVisible || dialogElectric ? 2 : 7 }"
  715. v-if="currentTitle != '全国'"
  716. >
  717. <div class="name-box-title">
  718. {{ currentTitle }}
  719. </div>
  720. </div>
  721. <!-- 返回按钮 -->
  722. <div
  723. class="return"
  724. :style="{ zIndex: dialogShow || dialogVisible || dialogElectric ? 2 : 7 }"
  725. @click="
  726. backMap(
  727. stationList[currents - 1]?.wpId,
  728. stationList[currents - 1]?.name
  729. )
  730. "
  731. v-show="currents != 0"
  732. >
  733. <span class="svg-icon svg-icon-sm">
  734. <svg-icon :svgid="'svg-arrow-dpwn-1'" />
  735. </span>
  736. 返回
  737. </div>
  738. <!-- 地图 -->
  739. <div class="map-img">
  740. <!-- 全国 -->
  741. <SvgMapNX
  742. v-if="currentTitle == '全国'"
  743. :homeSuspensionWindowsData="homeSuspensionWindowsData"
  744. :mapList="mapList"
  745. :show="showType"
  746. :data="StationinformationData"
  747. @clickLabel="clickLabel"
  748. >
  749. </SvgMapNX>
  750. <!-- 山西 -->
  751. <SX
  752. v-if="currentTitle != '全国'"
  753. :showType="showType"
  754. :companyid="companyid"
  755. :data="StationinformationData"
  756. @clickLabel="clickLabel"
  757. >
  758. </SX>
  759. </div>
  760. <!-- 全国右侧信息 -->
  761. <div
  762. class="right"
  763. v-if="currentTitle == '全国'"
  764. :class="activeTab == -1 || activeTab == -2 ? 'top-distance' : ''"
  765. >
  766. <el-dialog
  767. class="dialogs"
  768. width="80%"
  769. top="100px"
  770. v-model="dialogElectric"
  771. :show-close="true"
  772. >
  773. <template #title>
  774. <div class="dialog-title">
  775. <div class="title">{{ showName }}</div>
  776. </div>
  777. </template>
  778. <div class="dialog-body" style="height: 500px">
  779. <img class="dialog-img" src="@assets/imgs/dialog.png" />
  780. <div class="date">
  781. <div
  782. class="day"
  783. :class="electronType === 'day' ? 'active' : ''"
  784. @click="handleElectricDetail('day', '日发电量', type)"
  785. >
  786. </div>
  787. <div
  788. class="mouth"
  789. :class="electronType === 'month' ? 'active' : ''"
  790. @click="handleElectricDetail('month', '月发电量', type)"
  791. >
  792. </div>
  793. <div
  794. class="year"
  795. :class="electronType === 'year' ? 'active' : ''"
  796. @click="handleElectricDetail('year', '年发电量', type)"
  797. >
  798. </div>
  799. </div>
  800. <BarCharts
  801. :list="barList"
  802. width="100%"
  803. height="500px"
  804. :ratio="10000"
  805. :showLegend="true"
  806. :top="30"
  807. :units="units"
  808. :interval="electronType === 'day' ? 1 : 0"
  809. :showkey="showkey"
  810. :showName="showName"
  811. :color="colors"
  812. >
  813. </BarCharts>
  814. </div>
  815. </el-dialog>
  816. <Row type="flex" style="margin-bottom: 30px">
  817. <Col :span="24">
  818. <div class="model-bg-new">
  819. <div class="titles">
  820. <div class="name">
  821. {{ activeTab == 0 ? "实时负荷" : "关键指标" }}
  822. </div>
  823. <!-- <div class="unit">(单位: MW)</div> -->
  824. </div>
  825. <power-review-home
  826. :data="powerDataHome"
  827. :id="wpIds"
  828. :type="activeTab"
  829. @chartClick="showPowerChart"
  830. />
  831. </div>
  832. <!-- @chartClick="showPowerChart" -->
  833. </Col>
  834. </Row>
  835. <!-- 风电场 -->
  836. <Row
  837. type="flex"
  838. style="margin-bottom: 30px"
  839. v-if="activeTab == -1 || activeTab == 0"
  840. >
  841. <Col :span="24">
  842. <div class="model-bg-new-right">
  843. <div class="infos">
  844. <div class="titles">
  845. <div class="amount">
  846. <div class="icon fengji-icon svg-icon svg-icon-white"></div>
  847. <img
  848. class="amount-image"
  849. src="@/assets/png/wind.png"
  850. alt=""
  851. />
  852. <div class="amount-nums">
  853. <text class="num-item">{{
  854. Math.floor(StationinformationData?.cblpoint?.jr_fj_ts)
  855. }}</text>
  856. </div>
  857. </div>
  858. <div
  859. v-if="
  860. !(
  861. wpId.includes('FDC') ||
  862. wpId.includes('GC') ||
  863. wpId.includes('GDC')
  864. )
  865. "
  866. class="info-nums"
  867. >
  868. 风电场<text class="nums">{{
  869. Math.floor(StationinformationData?.cblpoint?.jr_fcts)
  870. }}</text>
  871. </div>
  872. </div>
  873. <div class="types">
  874. <div class="type-model">
  875. <div class="type-name" style="color: #1d99ff">待机</div>
  876. <div class="type-num">
  877. {{ Math.floor(StationinformationData?.mxztmap?.fd_djnum) || 0 }}
  878. </div>
  879. </div>
  880. <div class="type-model">
  881. <div class="type-name" style="color: #05bb4c">运行</div>
  882. <div class="type-num">
  883. {{ Math.floor(StationinformationData?.mxztmap?.fd_yxnum) || 0 }}
  884. </div>
  885. </div>
  886. <div class="type-model">
  887. <div class="type-name" style="color: #ba3237">故障</div>
  888. <div class="type-num">
  889. {{ Math.floor(StationinformationData?.mxztmap?.fd_gznum) || 0 }}
  890. </div>
  891. </div>
  892. <div class="type-model">
  893. <div class="type-name" style="color: #e17e23">检修</div>
  894. <div class="type-num">
  895. {{ Math.floor(StationinformationData?.mxztmap?.fd_jxnum) || 0 }}
  896. </div>
  897. </div>
  898. <div class="type-model">
  899. <div class="type-name" style="color: #c531c7">限电</div>
  900. <div class="type-num">
  901. {{ Math.floor(StationinformationData?.mxztmap?.fd_xdnum) || 0 }}
  902. </div>
  903. </div>
  904. <div class="type-model">
  905. <div class="type-name" style="color: #fff">受累</div>
  906. <div class="type-num">
  907. {{ Math.floor(StationinformationData?.mxztmap?.fd_slnum) || 0 }}
  908. </div>
  909. </div>
  910. <div class="type-model">
  911. <div class="type-name" style="color: #606769">离线</div>
  912. <div class="type-num">
  913. {{ Math.floor(StationinformationData?.mxztmap?.fd_lxnum) || 0 }}
  914. </div>
  915. </div>
  916. </div>
  917. <div class="tabSwitchover">
  918. <div class="unit"><span>(单位: 万kWh)</span></div>
  919. </div>
  920. <div
  921. v-for="(item, index) in ForecastPowerNewHome_fc"
  922. :key="index"
  923. >
  924. <div class="power-charts">
  925. <div class="power-name">{{ item[0].name }}</div>
  926. <div class="power-item">
  927. <div class="power-value">
  928. <span
  929. :style="
  930. item[0].color === 1
  931. ? 'background-color:#4B55AE'
  932. : 'background-color:#05BB4C'
  933. "
  934. ></span>
  935. <span>{{ item[0].total }}</span>
  936. </div>
  937. <list-bar-chart-2-home
  938. :list="item"
  939. height="55px"
  940. width="250px"
  941. @click="
  942. handleElectricDetail(item[0].id, item[0].name, 'fc')
  943. "
  944. />
  945. </div>
  946. </div>
  947. </div>
  948. </div>
  949. </div>
  950. </Col>
  951. </Row>
  952. <!-- 光电站 -->
  953. <Row type="flex" v-if="activeTab == -2 || activeTab == 0">
  954. <Col :span="24">
  955. <div class="model-bg-new-right">
  956. <div class="infos">
  957. <div class="titles">
  958. <div class="amount">
  959. <div class="icon fengji-icon svg-icon svg-icon-white"></div>
  960. <img
  961. class="amount-image"
  962. src="@/assets/png/sy-sun.png"
  963. alt=""
  964. />
  965. <div class="amount-nums">
  966. <text class="num-item">{{
  967. Number(
  968. StationinformationData?.cblpoint?.jr_gf_jzts +
  969. StationinformationData?.cblpoint?.jr_gf_zcts
  970. ) || 0
  971. }}</text>
  972. </div>
  973. </div>
  974. <div class="info-nums">
  975. 电站<text class="nums">{{
  976. StationinformationData?.cblpoint?.jr_gfts
  977. }}</text>
  978. </div>
  979. </div>
  980. <div class="types">
  981. <div class="type-model">
  982. <div class="type-name" style="color: #1d99ff">待机</div>
  983. <div class="type-num">
  984. {{ Math.floor(StationinformationData?.mxztmap?.gf_djnum) || 0 }}
  985. </div>
  986. </div>
  987. <div class="type-model">
  988. <div class="type-name" style="color: #05bb4c">运行</div>
  989. <div class="type-num">
  990. {{ Math.floor(StationinformationData?.mxztmap?.gf_yxnum) || 0 }}
  991. </div>
  992. </div>
  993. <div class="type-model">
  994. <div class="type-name" style="color: #ba3237">故障</div>
  995. <div class="type-num">
  996. {{ Math.floor(StationinformationData?.mxztmap?.gf_gznum) || 0 }}
  997. </div>
  998. </div>
  999. <div class="type-model">
  1000. <div class="type-name" style="color: #e17e23">检修</div>
  1001. <div class="type-num">
  1002. {{ Math.floor(StationinformationData?.mxztmap?.gf_jxnum) || 0 }}
  1003. </div>
  1004. </div>
  1005. <div class="type-model">
  1006. <div class="type-name" style="color: #c531c7">限电</div>
  1007. <div class="type-num">
  1008. {{ Math.floor(StationinformationData?.mxztmap?.gf_xdnum) || 0 }}
  1009. </div>
  1010. </div>
  1011. <div class="type-model">
  1012. <div class="type-name" style="color: #fff">受累</div>
  1013. <div class="type-num">
  1014. {{ Math.floor(StationinformationData?.mxztmap?.gf_slnum) || 0 }}
  1015. </div>
  1016. </div>
  1017. <div class="type-model">
  1018. <div class="type-name" style="color: #606769">离线</div>
  1019. <div class="type-num">
  1020. {{ Math.floor(StationinformationData?.mxztmap?.gf_lxnum) || 0 }}
  1021. </div>
  1022. </div>
  1023. </div>
  1024. <div class="tabSwitchover">
  1025. <div class="unit"><span>(单位: 万kWh)</span></div>
  1026. </div>
  1027. <div
  1028. v-for="(item, index) in ForecastPowerNewHome_gf"
  1029. :key="index"
  1030. >
  1031. <div class="power-charts">
  1032. <div class="power-name">{{ item[0].name }}</div>
  1033. <div class="power-item">
  1034. <div class="power-value">
  1035. <span
  1036. :style="
  1037. index % 2 === 0
  1038. ? 'background-color:#4B55AE'
  1039. : 'background-color:#05BB4C'
  1040. "
  1041. ></span>
  1042. <span>{{ item[0].total }}</span>
  1043. </div>
  1044. <list-bar-chart-2-home
  1045. :list="item"
  1046. height="55px"
  1047. width="250px"
  1048. @click="
  1049. handleElectricDetail(item[0].id, item[0].name, 'gf')
  1050. "
  1051. />
  1052. </div>
  1053. </div>
  1054. </div>
  1055. </div>
  1056. </div>
  1057. </Col>
  1058. </Row>
  1059. </div>
  1060. <!-- 全国实时负荷/关键指标弹窗 -->
  1061. <el-dialog
  1062. class="dialogs"
  1063. width="80%"
  1064. top="120px"
  1065. v-model="dialogGroupRealname"
  1066. :show-close="true"
  1067. destroy-on-close
  1068. >
  1069. <template #title>
  1070. <div class="dialog-title">
  1071. <div class="title">
  1072. {{ currentTitle != "全国" ? currentTitle : "" }}{{ showName }}
  1073. </div>
  1074. </div>
  1075. </template>
  1076. <div class="dialog-body" style="height: 500px">
  1077. <img class="dialog-img" src="@assets/imgs/dialog.png" />
  1078. <windChartCom
  1079. :windCurveValues="groupList"
  1080. :unit="unit"
  1081. :CurveTitle="chartName"
  1082. width="100%"
  1083. height="480px"
  1084. chartId="windChar"
  1085. />
  1086. </div>
  1087. </el-dialog>
  1088. <div class="sx-right-box" v-if="currentTitle != '全国'">
  1089. <!-- 山西右侧信息 -->
  1090. <div class="card wind_card">
  1091. <power-review-home
  1092. :data="powerDataHome"
  1093. :id="wpIds"
  1094. @chartClick="showPowerChart"
  1095. />
  1096. </div>
  1097. <div class="card electric_card">
  1098. <el-header>
  1099. <span class="title"></span>
  1100. <soan class="unit">(单位:万kWh)</soan>
  1101. </el-header>
  1102. <el-row class="fdl-wrapper">
  1103. <div
  1104. class="power-div"
  1105. v-for="(item, index) in tabShow == 0
  1106. ? ForecastPowerNewHome_qy
  1107. : tabShow == -1
  1108. ? ForecastPowerNewHome_fc
  1109. : ForecastPowerNewHome_gf"
  1110. :key="index"
  1111. >
  1112. <div class="power-charts">
  1113. <div class="power-name">{{ item[0].name }}</div>
  1114. <div class="power-item">
  1115. <div class="power-value">
  1116. <span
  1117. :style="
  1118. item[0].color === 1
  1119. ? 'background-color:#4B55AE'
  1120. : 'background-color:#05BB4C'
  1121. "
  1122. ></span>
  1123. <span>{{ item[0].total }}</span>
  1124. </div>
  1125. <list-bar-chart-2-home
  1126. :list="item"
  1127. height="55px"
  1128. width="250px"
  1129. @click="handleElectricDetail(item[0].id, item[0].name)"
  1130. />
  1131. </div>
  1132. </div>
  1133. </div>
  1134. </el-row>
  1135. <el-row class="summarize">
  1136. <div
  1137. class="summarize-left"
  1138. @click="handleUsingDetail('month', '月利用小时')"
  1139. >
  1140. <p>月利用小时</p>
  1141. <p>
  1142. <span>
  1143. {{ StationinformationData?.qt?.ylyxs?.toFixed(2) }}
  1144. </span>
  1145. <span>小时</span>
  1146. </p>
  1147. </div>
  1148. <div class="line"></div>
  1149. <div
  1150. class="summarize-right"
  1151. @click="handleUsingDetail('year', '年利用小时')"
  1152. >
  1153. <p>年利用小时</p>
  1154. <p>
  1155. <span>{{ StationinformationData?.qt?.nlyxs?.toFixed(2) }}</span>
  1156. <span>小时</span>
  1157. </p>
  1158. </div>
  1159. </el-row>
  1160. </div>
  1161. <div class="card station_card">
  1162. <el-row class="card_header" v-if="tabShow == 0 || tabShow == -1">
  1163. <el-col :span="12">
  1164. <img
  1165. src="@/assets/imgs/windmill.png"
  1166. style="display: inline-block"
  1167. />
  1168. <span>{{
  1169. wpId.includes("FDC")
  1170. ? StationinformationData?.station[wpId]?.zjts
  1171. : StationinformationData?.cblpoint?.jr_fj_ts
  1172. }}</span
  1173. >台
  1174. </el-col>
  1175. <el-col :span="12">
  1176. 场站<span>{{
  1177. wpId.includes("FDC")
  1178. ? 1
  1179. : StationinformationData?.cblpoint?.jr_fcts
  1180. }}</span
  1181. >个
  1182. </el-col>
  1183. </el-row>
  1184. <windLightDetial
  1185. v-if="tabShow == -1"
  1186. :dataDetial="StationinformationData?.sbztmap?.fd"
  1187. ></windLightDetial>
  1188. <windlightSimple
  1189. v-if="tabShow == 0"
  1190. :dataSimple="StationinformationData?.sbztmap?.fd"
  1191. />
  1192. <el-row class="card_header" v-if="tabShow == 0 || tabShow == -2">
  1193. <el-col :span="12">
  1194. <img src="@/assets/imgs/gfmill.png" style="display: inline-block" />
  1195. <span>{{
  1196. wpId.includes("GDC")
  1197. ? StationinformationData?.station[wpId]?.jzzjts +
  1198. StationinformationData?.station[wpId]?.zczjts
  1199. : StationinformationData?.cblpoint?.jr_gf_zcts +
  1200. StationinformationData?.cblpoint?.jr_gf_jzts
  1201. }}</span
  1202. >台
  1203. </el-col>
  1204. <el-col :span="12">
  1205. 场站<span>{{
  1206. wpId.includes("GDC")
  1207. ? 1
  1208. : StationinformationData?.cblpoint?.jr_gfts
  1209. }}</span
  1210. >个
  1211. </el-col>
  1212. </el-row>
  1213. <windLightDetial
  1214. v-if="tabShow == -2"
  1215. :dataDetial="StationinformationData?.sbztmap?.gf"
  1216. ></windLightDetial>
  1217. <windlightSimple
  1218. v-if="tabShow == 0"
  1219. :dataSimple="StationinformationData?.sbztmap?.gf"
  1220. />
  1221. </div>
  1222. <!-- 发电量,利用小时弹窗 -->
  1223. <el-dialog
  1224. class="dialogs"
  1225. width="80%"
  1226. top="120px"
  1227. v-model="dialogElectric"
  1228. :show-close="true"
  1229. destroy-on-close
  1230. >
  1231. <template #title>
  1232. <div class="dialog-title">
  1233. <div class="title">{{ currentTitle }}{{ showName }}</div>
  1234. </div>
  1235. </template>
  1236. <div class="dialog-body" style="height: 500px">
  1237. <img class="dialog-img" src="@assets/imgs/dialog.png" />
  1238. <div class="date" v-if="showkey === 'electric'">
  1239. <div
  1240. class="day"
  1241. :class="electronType === 'day' ? 'active' : ''"
  1242. @click="handleElectricDetail('day', '日发电量')"
  1243. >
  1244. </div>
  1245. <div
  1246. class="mouth"
  1247. :class="electronType === 'month' ? 'active' : ''"
  1248. @click="handleElectricDetail('month', '月发电量')"
  1249. >
  1250. </div>
  1251. <div
  1252. class="year"
  1253. :class="electronType === 'year' ? 'active' : ''"
  1254. @click="handleElectricDetail('year', '年发电量')"
  1255. >
  1256. </div>
  1257. </div>
  1258. <div class="date" v-if="showkey === 'using'">
  1259. <div
  1260. class="day"
  1261. :class="electronType === 'month' ? 'active' : ''"
  1262. @click="handleUsingDetail('month', '月利用小时')"
  1263. >
  1264. </div>
  1265. <div
  1266. class="year"
  1267. :class="electronType === 'year' ? 'active' : ''"
  1268. @click="handleUsingDetail('year', '年利用小时')"
  1269. >
  1270. </div>
  1271. </div>
  1272. <BarCharts
  1273. :list="barList"
  1274. height="500px"
  1275. :ratio="10000"
  1276. :showLegend="true"
  1277. :top="30"
  1278. :units="showkey === 'electric' ? '万kWh' : '小时'"
  1279. :interval="electronType === 'day' ? 1 : 0"
  1280. :showkey="showkey"
  1281. :showName="showName"
  1282. :color="colors"
  1283. >
  1284. </BarCharts>
  1285. </div>
  1286. </el-dialog>
  1287. </div>
  1288. </div>
  1289. </template>
  1290. <script>
  1291. import Row from "@/components/coms/grid/row.vue";
  1292. import Col from "@/components/coms/grid/col.vue";
  1293. import PowerReviewHome from "./power-review-home.vue";
  1294. import ListBarChart2Home from "@/components/chart/bar/list-bar-chart2-home.vue";
  1295. //全国地图总览
  1296. import SvgMapNX from "./map/svg-map-nx.vue";
  1297. // 山西
  1298. import SX from "./map/SX.vue";
  1299. import PowerEcharts from "@/components/chart/powerEcharts.vue";
  1300. import HeaderNav from "@/components//headerNav/index.vue";
  1301. import SvgIcon from "../../../components/coms/icon/svg-icon.vue";
  1302. import windLightDetial from "./windLightDetial.vue";
  1303. import windlightSimple from "./windlightSimple.vue";
  1304. import {
  1305. FindRealtimeInfo,
  1306. FindUtilizationhours,
  1307. FindPlanproject,
  1308. FindBasicDataInfo,
  1309. FindPowerInfo,
  1310. FindProjectplan,
  1311. } from "@/api/home/home.js";
  1312. import dayjs from "dayjs";
  1313. import windChartCom from "./windChartCom.vue";
  1314. import BarCharts from "@/views/Home/components/barCharts.vue";
  1315. export default {
  1316. // 名称
  1317. name: "Map",
  1318. // 使用组件
  1319. components: {
  1320. SvgMapNX,
  1321. SX,
  1322. Row,
  1323. Col,
  1324. PowerReviewHome,
  1325. ListBarChart2Home,
  1326. SvgIcon,
  1327. HeaderNav,
  1328. PowerEcharts,
  1329. windLightDetial,
  1330. windlightSimple,
  1331. windChartCom,
  1332. BarCharts,
  1333. },
  1334. mounted() {},
  1335. // 数据
  1336. data() {
  1337. return {
  1338. activeTab: 0, //当前tab
  1339. barList: [
  1340. {
  1341. name: "",
  1342. value: [],
  1343. },
  1344. ], //发电量利用小时柱状图
  1345. currentTitle: "全国", //当前地图名称
  1346. currents: 0, //当前层级
  1347. CurveValues: {
  1348. value: [
  1349. {
  1350. title: "",
  1351. value: [],
  1352. },
  1353. ],
  1354. }, //24小时功率曲线
  1355. companyid: "",
  1356. companyname: "",
  1357. chartsData: [], //实时负荷曲线
  1358. colors: ["#1c99ff", "#05BB4C"],
  1359. dialogVisible: false, //实时负荷弹窗开关
  1360. dialogElectric: false, //发电量、利用小时弹窗开关
  1361. electronType: "day", //日月年切换值
  1362. flag: false, //判断场站id
  1363. ForecastPowerNewHome_fc: [], //全国的风电发电量列表
  1364. ForecastPowerNewHome_gf: [], //全国的光伏发电量列表
  1365. ForecastPowerNewHome_qy: [], //区域发电量列表
  1366. fdlList: [], //山西区域实时负荷列表
  1367. homeSuspensionWindowsData: [], //全国区域所有地区数据
  1368. historyWpId: "", //历史场站id
  1369. mapList: [
  1370. { text: "山西", code: "sxqyxx" },
  1371. { text: "内蒙", code: "nmqyxx" },
  1372. { text: "新疆", code: "xjqyxx" },
  1373. { text: "河北", code: "hbqyxx" },
  1374. { text: "陕西", code: "xsqyxx" },
  1375. { text: "山东", code: "sdqyxx" },
  1376. { text: "西藏", code: "xzqyxx" },
  1377. ],
  1378. penetrateType: 0, //24小时功率曲线开关
  1379. powerDataHome: {},
  1380. qyPower: {},
  1381. ratio: 1,
  1382. showType: "all",
  1383. stationList: [
  1384. {
  1385. name: "全部",
  1386. wpId: "KGDL_FGS",
  1387. },
  1388. {
  1389. name: "山西",
  1390. wpId: "SXJ_RGN",
  1391. },
  1392. ],
  1393. switchShow: false, //接入情况弹窗
  1394. showName: "",
  1395. chartName: "",
  1396. StationinformationData: [],
  1397. showkey: "",
  1398. dialogGroupRealname: false, //全国实时负荷弹窗开关
  1399. groupList: [], //全国实时负荷弹窗数据
  1400. type: "fc", //发电量展示类型
  1401. tabShow: 0,
  1402. timmer: null, // 计时器
  1403. timmer2: null,
  1404. units: ["万kWh"],
  1405. unit: "", //实时负荷弹窗单位
  1406. wpId: "KGDL_FGS",
  1407. wpIds: "KGDL_FGS0",
  1408. dialogShow: false,
  1409. showCharts: {
  1410. value: [
  1411. {
  1412. title: "",
  1413. value: [],
  1414. },
  1415. ],
  1416. },
  1417. };
  1418. },
  1419. emits: {
  1420. onEnter: null,
  1421. onBack: null,
  1422. },
  1423. // 函数
  1424. methods: {
  1425. //放大24小时功率曲线
  1426. handleShowCharts(title) {
  1427. // console.log(title);
  1428. this.showCharts = this.CurveValues;
  1429. this.showName = `${title}24小时功率预测曲线`;
  1430. this.dialogShow = true;
  1431. },
  1432. // 点击地图展示类型
  1433. mapClick(wpId, activeTab) {
  1434. clearInterval(this.timmer);
  1435. clearInterval(this.timmer2);
  1436. this.timmer = null;
  1437. this.timmer2 = null;
  1438. this.activeTab = activeTab;
  1439. this.wpId = wpId;
  1440. this.wpIds =
  1441. wpId.includes("FDC") || wpId.includes("GDC") ? wpId : wpId + activeTab;
  1442. this.requestData();
  1443. this.findProjectPlan();
  1444. this.timmer = setInterval(() => {
  1445. this.requestData();
  1446. }, 5000);
  1447. this.timmer2 = setInterval(() => {
  1448. this.findProjectPlan(); //发电量
  1449. if (this.penetrateType == 3) {
  1450. this.getData(this.wpIds); //24小时功率曲线
  1451. }
  1452. }, 15 * 60 * 1000);
  1453. },
  1454. mapClicks(wpId, activeTab) {
  1455. this.historyWpId = wpId;
  1456. this.mapClick(wpId, activeTab);
  1457. },
  1458. mapClickBack(wpId, activeTab) {
  1459. this.historyWpId = wpId;
  1460. this.activeTab = activeTab;
  1461. this.mapClick(this.historyWpId, activeTab);
  1462. },
  1463. currentActiveTab(penetrateType) {
  1464. this.penetrateType = penetrateType;
  1465. if (penetrateType === 3) {
  1466. this.getData(this.wpIds);
  1467. }
  1468. },
  1469. // 请求服务
  1470. requestData() {
  1471. FindBasicDataInfo({ wpId: this.wpIds }).then(({ data }) => {
  1472. this.StationinformationData = data;
  1473. if (Object.keys(data).length) {
  1474. let mapInfos = [];
  1475. this.mapList.forEach((item) => {
  1476. for (var key in data.sytc) {
  1477. if (item.code == key) {
  1478. data.sytc[key].name = item.text;
  1479. mapInfos.push({ ...data.sytc[key] });
  1480. }
  1481. }
  1482. });
  1483. mapInfos.forEach((element) => {
  1484. element.industryState = true;
  1485. element.companyState = true;
  1486. if (element.name == "山西") {
  1487. if (!Object.hasOwn(element, "sxgszzjrl")) {
  1488. element.companyState = false;
  1489. }
  1490. if (!Object.hasOwn(element, "sxcyzzjrl")) {
  1491. element.industryState = false;
  1492. }
  1493. this.homeSuspensionWindowsData.sxqyxx = { ...element };
  1494. } else if (element.name == "新疆") {
  1495. if (!Object.hasOwn(element, "xjgszzjrl")) {
  1496. element.companyState = false;
  1497. }
  1498. if (!Object.hasOwn(element, "xjcyzzjrl")) {
  1499. element.industryState = false;
  1500. }
  1501. this.homeSuspensionWindowsData.xjqyxx = { ...element };
  1502. } else if (element.name == "内蒙") {
  1503. if (!Object.hasOwn(element, "nmgszzjrl")) {
  1504. element.companyState = false;
  1505. }
  1506. if (!Object.hasOwn(element, "nmcyzzjrl")) {
  1507. element.industryState = false;
  1508. }
  1509. this.homeSuspensionWindowsData.nmqyxx = { ...element };
  1510. } else if (element.name == "西藏") {
  1511. if (!Object.hasOwn(element, "xzgszzjrl")) {
  1512. element.companyState = false;
  1513. }
  1514. if (!Object.hasOwn(element, "xzcyzzjrl")) {
  1515. element.industryState = false;
  1516. }
  1517. this.homeSuspensionWindowsData.xzqyxx = { ...element };
  1518. } else if (element.name == "山东") {
  1519. if (!Object.hasOwn(element, "sdgszzjrl")) {
  1520. element.companyState = false;
  1521. }
  1522. if (!Object.hasOwn(element, "sdcyzzjrl")) {
  1523. element.industryState = false;
  1524. }
  1525. this.homeSuspensionWindowsData.sdqyxx = { ...element };
  1526. } else if (element.name == "陕西") {
  1527. if (!Object.hasOwn(element, "xsgszzjrl")) {
  1528. element.companyState = false;
  1529. }
  1530. if (!Object.hasOwn(element, "xscyzzjrl")) {
  1531. element.industryState = false;
  1532. }
  1533. this.homeSuspensionWindowsData.xsqyxx = { ...element };
  1534. } else if (element.name == "河北") {
  1535. if (!Object.hasOwn(element, "hbgszzjrl")) {
  1536. element.companyState = false;
  1537. }
  1538. if (!Object.hasOwn(element, "hbcyzzjrl")) {
  1539. element.industryState = false;
  1540. }
  1541. this.homeSuspensionWindowsData.hbqyxx = { ...element };
  1542. }
  1543. });
  1544. if (this.tabShow == -1) {
  1545. this.powerDataHome = [
  1546. {
  1547. title: "实时风速",
  1548. value: (data?.qt?.ssfs).toFixed(2),
  1549. dialogTitle: "实时风速",
  1550. max: 3000,
  1551. unit: "m/s",
  1552. },
  1553. {
  1554. title: "实际功率",
  1555. value: (data?.qt?.fdsjgl).toFixed(2),
  1556. dialogTitle: "实际功率",
  1557. max: 3000,
  1558. unit: "MW",
  1559. },
  1560. {
  1561. title: "风能利用率",
  1562. value: (data?.qt?.fnlyl).toFixed(2),
  1563. dialogTitle: "风能利用率",
  1564. max: 100,
  1565. unit: "%",
  1566. },
  1567. ];
  1568. } else if (this.tabShow == 0) {
  1569. if (this.currentTitle != "全国") {
  1570. if (this.currentTitle.includes("风电场")) {
  1571. this.powerDataHome = [
  1572. {
  1573. title: "实时风速",
  1574. value: (data?.qt?.ssfs).toFixed(2),
  1575. dialogTitle: "实时风速",
  1576. max: 3000,
  1577. unit: "m/s",
  1578. },
  1579. {
  1580. title: "实际功率",
  1581. value: (data?.qt?.fdsjgl).toFixed(2),
  1582. dialogTitle: "实际功率",
  1583. max: 3000,
  1584. unit: "MW",
  1585. },
  1586. {
  1587. title: "风能利用率",
  1588. value: (data?.qt?.fnlyl).toFixed(2),
  1589. dialogTitle: "风能利用率",
  1590. max: 100,
  1591. unit: "%",
  1592. },
  1593. ];
  1594. } else if (this.currentTitle.includes("电站")) {
  1595. this.powerDataHome = [
  1596. {
  1597. title: "光照强度",
  1598. value: (data?.qt?.gzzs).toFixed(2),
  1599. dialogTitle: "光照强度",
  1600. max: 3000,
  1601. unit: "W/m²",
  1602. },
  1603. {
  1604. title: "实际功率",
  1605. value: (data?.qt?.sjgl).toFixed(2),
  1606. dialogTitle: "实际功率",
  1607. max: 3000,
  1608. unit: "MW",
  1609. },
  1610. {
  1611. title: "光能利用率",
  1612. value: (data?.qt?.fnlyl).toFixed(2),
  1613. dialogTitle: "光能利用率",
  1614. max: 100,
  1615. unit: "%",
  1616. },
  1617. ];
  1618. } else {
  1619. this.powerDataHome = [
  1620. {
  1621. title: "实时风速",
  1622. value: (data?.qt?.ssfs).toFixed(2),
  1623. dialogTitle: "实时风速",
  1624. max: 3000,
  1625. unit: "m/s",
  1626. },
  1627. {
  1628. title: "光照强度",
  1629. value: (data?.qt?.gzzs).toFixed(2),
  1630. dialogTitle: "光照强度",
  1631. max: 3000,
  1632. unit: "W/m²",
  1633. },
  1634. {
  1635. title: "实际功率",
  1636. value: (data?.qt?.sjgl).toFixed(2),
  1637. dialogTitle: "实际功率",
  1638. max: 3000,
  1639. unit: "MW",
  1640. },
  1641. ];
  1642. }
  1643. } else {
  1644. this.powerDataHome = [
  1645. {
  1646. title: "清洁能源",
  1647. value: (data?.qt?.sjgl).toFixed(2),
  1648. dialogTitle: "清洁能源实时功率详情",
  1649. max: 3000,
  1650. unit: "MW",
  1651. },
  1652. {
  1653. title: "风电",
  1654. value: (data?.qt?.fdsjgl).toFixed(2),
  1655. dialogTitle: "风电实时功率详情",
  1656. max: 3000,
  1657. unit: "MW",
  1658. },
  1659. {
  1660. title: "光伏",
  1661. value: (data?.qt?.gfsjgl).toFixed(2),
  1662. dialogTitle: "光伏实时功率详情",
  1663. max: 3000,
  1664. unit: "MW",
  1665. },
  1666. ];
  1667. }
  1668. } else if (this.tabShow == -2) {
  1669. this.powerDataHome = [
  1670. {
  1671. title: "光照强度",
  1672. value: (data?.qt?.gzzs).toFixed(2),
  1673. dialogTitle: "光照强度",
  1674. max: 3000,
  1675. unit: "W/m²",
  1676. },
  1677. {
  1678. title: "实际功率",
  1679. value: (data?.qt?.sjgl).toFixed(2),
  1680. dialogTitle: "实际功率",
  1681. max: 3000,
  1682. unit: "MW",
  1683. },
  1684. {
  1685. title: "光能利用率",
  1686. value: (data?.qt?.fnlyl).toFixed(2),
  1687. dialogTitle: "光能利用率",
  1688. max: 100,
  1689. unit: "%",
  1690. },
  1691. ];
  1692. }
  1693. let sbztmap = {
  1694. fd: {},
  1695. gf: {},
  1696. };
  1697. for (var key in data.mxztmap) {
  1698. let a = key.substring(3, key.length);
  1699. if (key.includes("gf_")) {
  1700. sbztmap.gf[a] = data.mxztmap[key];
  1701. } else if (key.includes("fd_")) {
  1702. sbztmap.fd[a] = data.mxztmap[key];
  1703. }
  1704. }
  1705. this.StationinformationData.sbztmap = sbztmap;
  1706. }
  1707. });
  1708. },
  1709. // 发电量
  1710. findProjectPlan() {
  1711. FindProjectplan({ wpId: this.wpIds }).then(({ data }) => {
  1712. this.qyPower = data.proplanmap;
  1713. this.ForecastPowerNewHome_fc = [
  1714. [
  1715. {
  1716. name: "日发电量",
  1717. id: "day",
  1718. value: data?.proplanmap
  1719. ? data?.proplanmap?.fd_r_sjdl < 0
  1720. ? 0
  1721. : (data?.proplanmap?.fd_r_sjdl / 10000).toFixed(2)
  1722. : 0,
  1723. color: 1,
  1724. total: data?.proplanmap
  1725. ? data?.proplanmap?.fd_r_jhdl < 0
  1726. ? 0
  1727. : data?.proplanmap?.fd_r_jhdl
  1728. : 0,
  1729. },
  1730. ],
  1731. [
  1732. {
  1733. name: "月发电量",
  1734. id: "month",
  1735. value: data?.proplanmap
  1736. ? data?.proplanmap?.fd_y_sjdl < 0
  1737. ? 0
  1738. : (data?.proplanmap?.fd_y_sjdl / 10000).toFixed(2)
  1739. : 0,
  1740. color: 1,
  1741. total: data?.proplanmap
  1742. ? data?.proplanmap?.fd_y_jhdl < 0
  1743. ? 0
  1744. : data?.proplanmap?.fd_y_jhdl
  1745. : 0,
  1746. },
  1747. ],
  1748. [
  1749. {
  1750. name: "年发电量",
  1751. id: "year",
  1752. value: data?.proplanmap
  1753. ? data?.proplanmap?.fd_n_sjdl < 0
  1754. ? 0
  1755. : (data?.proplanmap?.fd_n_sjdl / 10000).toFixed(2)
  1756. : 0,
  1757. color: 0,
  1758. total: data?.proplanmap
  1759. ? data?.proplanmap?.fd_n_jhdl < 0
  1760. ? 0
  1761. : data?.proplanmap?.fd_n_jhdl
  1762. : 0,
  1763. },
  1764. ],
  1765. ];
  1766. this.ForecastPowerNewHome_gf = [
  1767. [
  1768. {
  1769. name: "日发电量",
  1770. id: "day",
  1771. value: data?.proplanmap
  1772. ? data?.proplanmap?.gf_r_sjdl < 0
  1773. ? 0
  1774. : (data?.proplanmap?.gf_r_sjdl / 10000).toFixed(2)
  1775. : 0,
  1776. color: 1,
  1777. total: data?.proplanmap
  1778. ? data?.proplanmap?.gf_r_jhdl < 0
  1779. ? 0
  1780. : data?.proplanmap?.gf_r_jhdl
  1781. : 0,
  1782. },
  1783. ],
  1784. [
  1785. {
  1786. name: "月发电量",
  1787. id: "month",
  1788. value: data?.proplanmap
  1789. ? data?.proplanmap?.gf_y_sjdl < 0
  1790. ? 0
  1791. : (data?.proplanmap?.gf_y_sjdl / 10000).toFixed(2)
  1792. : 0,
  1793. color: 1,
  1794. total: data?.proplanmap
  1795. ? data?.proplanmap?.gf_y_jhdl < 0
  1796. ? 0
  1797. : data?.proplanmap?.gf_y_jhdl
  1798. : 0,
  1799. },
  1800. ],
  1801. [
  1802. {
  1803. name: "年发电量",
  1804. id: "year",
  1805. value: data?.proplanmap
  1806. ? data?.proplanmap?.gf_n_sjdl < 0
  1807. ? 0
  1808. : (data?.proplanmap?.gf_n_sjdl / 10000).toFixed(2)
  1809. : 0,
  1810. color: 0,
  1811. total: data?.proplanmap
  1812. ? data?.proplanmap?.gf_n_jhdl < 0
  1813. ? 0
  1814. : data?.proplanmap?.gf_n_jhdl
  1815. : 0,
  1816. },
  1817. ],
  1818. ];
  1819. this.ForecastPowerNewHome_qy = [
  1820. [
  1821. {
  1822. name: "日发电量",
  1823. id: "day",
  1824. value: data?.proplanmap
  1825. ? data?.proplanmap?.qy_r_sjdl < 0
  1826. ? 0
  1827. : (data?.proplanmap?.qy_r_sjdl / 10000).toFixed(2)
  1828. : 0,
  1829. color: 1,
  1830. total: data?.proplanmap
  1831. ? data?.proplanmap?.qy_r_jhdl < 0
  1832. ? 0
  1833. : data?.proplanmap?.qy_r_jhdl
  1834. : 0,
  1835. },
  1836. ],
  1837. [
  1838. {
  1839. name: "月发电量",
  1840. id: "month",
  1841. value: data?.proplanmap
  1842. ? data?.proplanmap?.qy_y_sjdl < 0
  1843. ? 0
  1844. : (data?.proplanmap?.qy_y_sjdl / 10000).toFixed(2)
  1845. : 0,
  1846. color: 1,
  1847. total: data?.proplanmap
  1848. ? data?.proplanmap?.qy_y_jhdl < 0
  1849. ? 0
  1850. : data?.proplanmap?.qy_y_jhdl
  1851. : 0,
  1852. },
  1853. ],
  1854. [
  1855. {
  1856. name: "年发电量",
  1857. id: "year",
  1858. value: data?.proplanmap
  1859. ? data?.proplanmap?.qy_n_sjdl < 0
  1860. ? 0
  1861. : (data?.proplanmap?.qy_n_sjdl / 10000).toFixed(2)
  1862. : 0,
  1863. color: 0,
  1864. total: data?.proplanmap
  1865. ? data?.proplanmap?.qy_n_jhdl < 0
  1866. ? 0
  1867. : data?.proplanmap?.qy_n_jhdl
  1868. : 0,
  1869. },
  1870. ],
  1871. ];
  1872. });
  1873. },
  1874. // 获取场站24小时功率图
  1875. getData(wpId) {
  1876. FindPowerInfo({ id: wpId }).then((res) => {
  1877. if (res.data) {
  1878. let Powertrend = {
  1879. // 图表所用单位
  1880. units: ["(万KWh)", ""],
  1881. value: [
  1882. {
  1883. title: "预测功率",
  1884. smooth: true, // 使用单位
  1885. value: [],
  1886. },
  1887. {
  1888. title: "理论功率",
  1889. smooth: true, // 使用单位
  1890. value: [],
  1891. },
  1892. {
  1893. title: "实际功率",
  1894. smooth: true, // 使用单位
  1895. value: [],
  1896. },
  1897. ],
  1898. };
  1899. Powertrend.value[0].value = res.data.map((item) => {
  1900. return {
  1901. dateTime: dayjs()
  1902. .startOf("date")
  1903. .add(item.hours, "hour")
  1904. .format("YYYY-MM-DD HH:mm:ss"),
  1905. value: item.bzgl,
  1906. };
  1907. });
  1908. Powertrend.value[1].value = res.data.map((item) => {
  1909. return {
  1910. dateTime: dayjs()
  1911. .startOf("date")
  1912. .add(item.hours, "hour")
  1913. .format("YYYY-MM-DD HH:mm:ss"),
  1914. value: item.llgl,
  1915. };
  1916. });
  1917. Powertrend.value[2].value = res.data.map((item) => {
  1918. return {
  1919. dateTime: dayjs()
  1920. .startOf("date")
  1921. .add(item.hours, "hour")
  1922. .format("YYYY-MM-DD HH:mm:ss"),
  1923. value: item.sjgl,
  1924. };
  1925. });
  1926. this.CurveValues = Powertrend.value;
  1927. }
  1928. });
  1929. },
  1930. firstRender(activeTab, showType, wpId, name) {
  1931. this.activeTab = activeTab;
  1932. this.tabShow = activeTab;
  1933. this.showType = showType;
  1934. //当wpId是FDC/GDC时,此时点击全部、风电、光伏按钮,展示山西地图及对应的公司信息
  1935. let fcId = wpId;
  1936. if ((wpId.includes("FDC") || wpId.includes("GDC")) && this.flag) {
  1937. if (name != "山西") {
  1938. fcId = this.historyWpId;
  1939. } else {
  1940. fcId = "SXJ_RGN";
  1941. }
  1942. this.flag = true;
  1943. this.penetrateType = 3;
  1944. this.currents = 1;
  1945. }
  1946. this.companyid = fcId;
  1947. this.companyname = name;
  1948. this.currentTitle = name || "全国";
  1949. this.mapClicks(fcId, activeTab);
  1950. this.currentActiveTab(this.penetrateType);
  1951. },
  1952. backMap(wpId, planBtnName) {
  1953. this.penetrateType = this.currents == 0 ? 0 : 3;
  1954. this.currents--;
  1955. this.currentTitle =
  1956. this.currents == 0
  1957. ? "全国"
  1958. : this.companyname
  1959. ? this.companyname
  1960. : planBtnName;
  1961. let wpIds =
  1962. this.currents == 0
  1963. ? "KGDL_FGS"
  1964. : this.companyname
  1965. ? this.companyid
  1966. : wpId;
  1967. this.tabShow = this.activeTab;
  1968. this.mapClickBack(wpIds, this.activeTab);
  1969. this.currentActiveTab(this.penetrateType);
  1970. },
  1971. clickLabel(wpId, planBtnName, penetrateType) {
  1972. this.penetrateType = penetrateType;
  1973. this.currents++;
  1974. if (this.currents > 1) {
  1975. this.currents = 2;
  1976. }
  1977. this.wpId =
  1978. wpId.includes("FDC") || wpId.includes("GDC")
  1979. ? wpId
  1980. : this.companyname
  1981. ? this.companyid
  1982. : wpId;
  1983. this.currentTitle =
  1984. wpId.includes("FDC") || wpId.includes("GDC")
  1985. ? planBtnName
  1986. : this.companyname
  1987. ? this.companyname
  1988. : planBtnName;
  1989. this.mapClick(this.wpId, this.activeTab);
  1990. if (wpId.includes("FDC") || wpId.includes("GDC")) {
  1991. this.tabShow = wpId.includes("FDC")
  1992. ? -1
  1993. : wpId.includes("GDC")
  1994. ? -2
  1995. : 0;
  1996. } else {
  1997. this.tabShow = this.activeTab;
  1998. }
  1999. this.flag = wpId.includes("FDC") || wpId.includes("GDC") ? true : false;
  2000. this.currentActiveTab(penetrateType);
  2001. },
  2002. // 全国实时负荷点击弹窗
  2003. showPowerChart({ dialogTitle, data, chartName = "", unit }) {
  2004. this.dialogGroupRealname = true;
  2005. this.unit = unit;
  2006. this.showName = dialogTitle;
  2007. this.chartName = chartName ? chartName : dialogTitle;
  2008. this.groupList = data;
  2009. },
  2010. // 区域实时负荷点击弹窗
  2011. handleClick(uniformCode, title, unit) {
  2012. let key = "";
  2013. switch (uniformCode) {
  2014. case "SSPJFS":
  2015. key = "ssfs";
  2016. break;
  2017. case "SSZLLGL":
  2018. key = "llgl";
  2019. break;
  2020. case "SSZGL":
  2021. key = "sjgl";
  2022. break;
  2023. case "FNLYL":
  2024. key = "fnlyl";
  2025. break;
  2026. case "RPJGZD":
  2027. key = "gzzs";
  2028. break;
  2029. }
  2030. FindRealtimeInfo({
  2031. uniformCode,
  2032. wpId:
  2033. this.wpId +
  2034. (this.wpId.includes("FDC") || this.wpId.includes("GDC")
  2035. ? ""
  2036. : this.activeTab),
  2037. }).then(({ data }) => {
  2038. this.dialogVisible = true;
  2039. this.chartsData = data.map((item) => {
  2040. return {
  2041. dateTime: dayjs()
  2042. .startOf("date")
  2043. .add(item.hours, "hour")
  2044. .format("MM-DD HH:mm"),
  2045. value: item[key],
  2046. };
  2047. });
  2048. this.unit = unit;
  2049. this.showName = title;
  2050. });
  2051. },
  2052. handleUsingDetail(timetype, title) {
  2053. let format = timetype == "month" ? "YYYY-MM" : "YYYY";
  2054. this.showkey = "using";
  2055. this.electronType = timetype;
  2056. FindPlanproject({
  2057. wpId:
  2058. this.wpId +
  2059. (this.wpId.includes("FDC") || this.wpId.includes("GDC")
  2060. ? ""
  2061. : this.activeTab),
  2062. timetype,
  2063. }).then(({ data }) => {
  2064. this.dialogElectric = true;
  2065. let barList = data.map((item) => {
  2066. if (timetype == "month") {
  2067. return {
  2068. dateTime: dayjs()
  2069. .startOf("year")
  2070. .add(item.hours - 1, "month")
  2071. .format("YYYY-MM"),
  2072. value: item["lyxs"],
  2073. };
  2074. } else {
  2075. return {
  2076. dateTime: dayjs()
  2077. .startOf(timetype)
  2078. .subtract(item.hours, timetype)
  2079. .format(format),
  2080. value: item["lyxs"],
  2081. };
  2082. }
  2083. });
  2084. if (timetype == "month") {
  2085. this.barList = [
  2086. {
  2087. name: title,
  2088. yAxisIndex: 0,
  2089. value: barList,
  2090. },
  2091. ];
  2092. } else {
  2093. this.barList = [
  2094. {
  2095. name: title,
  2096. yAxisIndex: 0,
  2097. value: barList.reverse(),
  2098. },
  2099. ];
  2100. }
  2101. this.barList = [
  2102. {
  2103. name: title,
  2104. yAxisIndex: 0,
  2105. value: barList,
  2106. },
  2107. ];
  2108. this.showName = title;
  2109. });
  2110. },
  2111. handleElectricDetail(timetype, title, type) {
  2112. let wpId = "";
  2113. if (type) {
  2114. this.type = type;
  2115. type == "fc" ? (wpId = this.wpId + "-1") : (wpId = this.wpId + "-2");
  2116. } else {
  2117. wpId =
  2118. this.wpId +
  2119. (this.wpId.includes("FDC") || this.wpId.includes("GDC")
  2120. ? ""
  2121. : this.activeTab);
  2122. }
  2123. this.dialogElectric = true;
  2124. let format =
  2125. timetype == "day" ? "MM-DD" : timetype == "month" ? "YYYY-MM" : "YYYY";
  2126. this.showkey = "electric";
  2127. this.electronType = timetype;
  2128. FindPlanproject({
  2129. wpId,
  2130. timetype,
  2131. }).then(({ data }) => {
  2132. this.dialogElectric = true;
  2133. let sjdlList = data.map((item) => {
  2134. if (timetype == "month") {
  2135. return {
  2136. dateTime: dayjs()
  2137. .startOf("year")
  2138. .add(item.hours - 1, "month")
  2139. .format("YYYY-MM"),
  2140. value: item.sjdl.toFixed(2),
  2141. };
  2142. } else if (timetype == "year") {
  2143. return {
  2144. dateTime: dayjs()
  2145. .startOf(timetype)
  2146. .subtract(item.hours, timetype)
  2147. .format(format),
  2148. value: item.sjdl.toFixed(2),
  2149. };
  2150. } else {
  2151. return {
  2152. dateTime: dayjs()
  2153. .startOf("month")
  2154. .add(item.hours - 1, "day")
  2155. .format("MM-DD"),
  2156. value: item.sjdl.toFixed(2),
  2157. };
  2158. }
  2159. });
  2160. let jhdlList = data.map((item) => {
  2161. if (timetype == "month") {
  2162. return {
  2163. dateTime: dayjs()
  2164. .startOf("year")
  2165. .add(item.hours - 1, "month")
  2166. .format("YYYY-MM"),
  2167. value: item.jhdl.toFixed(2),
  2168. };
  2169. } else if (timetype == "year") {
  2170. return {
  2171. dateTime: dayjs()
  2172. .startOf(timetype)
  2173. .subtract(item.hours, timetype)
  2174. .format(format),
  2175. value: item.jhdl.toFixed(2),
  2176. };
  2177. } else {
  2178. return {
  2179. dateTime: dayjs()
  2180. .startOf("month")
  2181. .add(item.hours - 1, "day")
  2182. .format("MM-DD"),
  2183. value: item.jhdl.toFixed(2),
  2184. };
  2185. }
  2186. });
  2187. this.barList = [
  2188. {
  2189. name: "实际电量",
  2190. value:
  2191. timetype == "day" || timetype == "month"
  2192. ? sjdlList
  2193. : sjdlList.reverse(),
  2194. },
  2195. {
  2196. name: "计划电量",
  2197. value:
  2198. timetype == "day" || timetype == "month"
  2199. ? jhdlList
  2200. : jhdlList.reverse(),
  2201. },
  2202. ];
  2203. this.showName = title;
  2204. });
  2205. },
  2206. },
  2207. unmounted() {
  2208. clearInterval(this.timmer);
  2209. clearInterval(this.timmer2);
  2210. this.timmer = null;
  2211. this.timmer2 = null;
  2212. },
  2213. watch: {
  2214. qyPower(val) {
  2215. if (Object.keys(val).length) {
  2216. let data = val;
  2217. this.fdlList = [
  2218. [
  2219. {
  2220. title: "日发电量",
  2221. id: "day",
  2222. value:
  2223. this.tabShow == 0
  2224. ? data.qy_r_sjdl
  2225. : this.tabShow == -1
  2226. ? data.fd_r_sjdl
  2227. : data.gf_r_sjdl,
  2228. color: 1,
  2229. total:
  2230. this.tabShow == 0
  2231. ? data.qy_r_jhdl
  2232. : this.tabShow == -1
  2233. ? data.fd_r_jhdl
  2234. : data.gf_r_jhdl,
  2235. },
  2236. ],
  2237. [
  2238. {
  2239. title: "月发电量",
  2240. id: "month",
  2241. value:
  2242. this.tabShow == 0
  2243. ? data.qy_y_sjdl
  2244. : this.tabShow == -1
  2245. ? data.fd_y_sjdl
  2246. : data.gf_y_sjdl,
  2247. color: 1,
  2248. total:
  2249. this.tabShow == 0
  2250. ? data.qy_y_jhdl
  2251. : this.tabShow == -1
  2252. ? data.fd_y_jhdl
  2253. : data.gf_y_jhdl,
  2254. },
  2255. ],
  2256. [
  2257. {
  2258. title: "年发电量",
  2259. id: "year",
  2260. value:
  2261. this.tabShow == 0
  2262. ? data.qy_n_sjdl
  2263. : this.tabShow == -1
  2264. ? data.fd_n_sjdl
  2265. : data.gf_n_sjdl,
  2266. color: 0,
  2267. total:
  2268. this.tabShow == 0
  2269. ? data.qy_n_jhdl
  2270. : this.tabShow == -1
  2271. ? data.fd_n_jhdl
  2272. : data.gf_n_jhdl,
  2273. },
  2274. ],
  2275. ];
  2276. }
  2277. },
  2278. },
  2279. computed: {
  2280. // 实时风速
  2281. windSpeedRota() {
  2282. let count = this.StationinformationData?.qt?.ssfs / 25;
  2283. let result = Number((310 * count + 50).toFixed(0));
  2284. if (result) {
  2285. if (result > 310) {
  2286. return "rotateZ(310deg)";
  2287. } else {
  2288. return "rotateZ(" + Number((310 * count + 50).toFixed(0)) + "deg)";
  2289. }
  2290. } else {
  2291. return "rotateZ(50deg)";
  2292. }
  2293. },
  2294. // 理论功率
  2295. ideaPowerRota() {
  2296. let zctj =
  2297. this.wpId.includes("FDC") || this.wpId.includes("GDC")
  2298. ? (
  2299. this.StationinformationData?.station[this.wpId]?.zjrl / 1000
  2300. ).toFixed(2)
  2301. : this.StationinformationData?.qt?.zzjrl;
  2302. let count = this.StationinformationData?.qt?.llgl / 1000 / zctj;
  2303. let result = Number((310 * count + 50).toFixed(0));
  2304. if (result) {
  2305. if (result > 310) {
  2306. return "rotateZ(310deg)";
  2307. } else {
  2308. return "rotateZ(" + Number((310 * count + 50).toFixed(0)) + "deg)";
  2309. }
  2310. } else {
  2311. return "rotateZ(50deg)";
  2312. }
  2313. },
  2314. // 光照指数
  2315. illuminationRota() {
  2316. let count = this.StationinformationData?.qt?.gzzs / 1200;
  2317. let result = Number((310 * count + 50).toFixed(0));
  2318. if (result) {
  2319. if (result > 310) {
  2320. return "rotateZ(310deg)";
  2321. } else {
  2322. return "rotateZ(" + Number((310 * count + 50).toFixed(0)) + "deg)";
  2323. }
  2324. } else {
  2325. return "rotateZ(50deg)";
  2326. }
  2327. },
  2328. //总保证功率
  2329. guarantee() {
  2330. let count = Number(this.StationinformationData?.qt?.fnlyl) / 100;
  2331. let result = Number((310 * count + 50).toFixed(0));
  2332. if (result) {
  2333. if (result > 310) {
  2334. return "rotateZ(310deg)";
  2335. } else {
  2336. return "rotateZ(" + Number((310 * count + 50).toFixed(0)) + "deg)";
  2337. }
  2338. } else {
  2339. return "rotateZ(50deg)";
  2340. }
  2341. },
  2342. // 实际功率
  2343. actualPowerRota() {
  2344. let zctj =
  2345. this.wpId.includes("FDC") || this.wpId.includes("GDC")
  2346. ? (
  2347. this.StationinformationData?.station[this.wpId]?.zjrl / 1000
  2348. ).toFixed(2)
  2349. : this.StationinformationData?.qt?.zzjrl;
  2350. let count = this.StationinformationData?.qt?.sjgl / 1000 / zctj;
  2351. let result = Number((310 * count + 50).toFixed(0));
  2352. if (result) {
  2353. if (result > 310) {
  2354. return "rotateZ(310deg)";
  2355. } else {
  2356. return "rotateZ(" + Number((310 * count + 50).toFixed(0)) + "deg)";
  2357. }
  2358. } else {
  2359. return "rotateZ(50deg)";
  2360. }
  2361. },
  2362. },
  2363. };
  2364. </script>
  2365. <style lang="less">
  2366. ul,
  2367. ul li,
  2368. p {
  2369. margin: 0;
  2370. padding: 0;
  2371. list-style: none;
  2372. }
  2373. .map {
  2374. padding-top: 16px;
  2375. .heeaderNav {
  2376. margin-top: 0;
  2377. }
  2378. }
  2379. .airForceStation {
  2380. position: relative;
  2381. background-color: rgba(3, 5, 9, 0.5);
  2382. padding: 20px;
  2383. // width: 320px;
  2384. margin-bottom: 15px;
  2385. span {
  2386. color: #b1b1b1;
  2387. }
  2388. .title {
  2389. font-size: 18px;
  2390. line-height: 28px;
  2391. margin: 15px 0;
  2392. display: flex;
  2393. align-items: center;
  2394. justify-content: left;
  2395. span {
  2396. color: #fff;
  2397. }
  2398. }
  2399. .collectInstall {
  2400. display: flex;
  2401. margin-bottom: 10px;
  2402. }
  2403. .listItem {
  2404. display: flex;
  2405. margin-bottom: 10px;
  2406. }
  2407. .line {
  2408. display: flex;
  2409. margin-bottom: 10px;
  2410. }
  2411. .name {
  2412. flex: 4;
  2413. }
  2414. .num {
  2415. flex: 3;
  2416. color: #fff;
  2417. font-weight: bold;
  2418. font-size: 19px;
  2419. // text-align: center;
  2420. }
  2421. .unit {
  2422. flex: 1;
  2423. font-size: 14px;
  2424. font-weight: 400;
  2425. color: #999999;
  2426. }
  2427. }
  2428. .piggy-bank {
  2429. width: 100% !important;
  2430. border: 0 !important;
  2431. }
  2432. .float-left {
  2433. float: left;
  2434. }
  2435. .float-right {
  2436. float: right;
  2437. }
  2438. .map {
  2439. position: relative;
  2440. width: 100%;
  2441. height: 100%;
  2442. .light {
  2443. position: fixed;
  2444. z-index: -1;
  2445. width: 100vw;
  2446. height: 100vh;
  2447. top: 0;
  2448. left: 0;
  2449. }
  2450. .back {
  2451. position: fixed;
  2452. z-index: -1;
  2453. width: 100vw;
  2454. height: 100vh;
  2455. top: 0;
  2456. left: 0;
  2457. background: url(../../../assets/background-home.png) no-repeat;
  2458. background-size: 100% 100%;
  2459. }
  2460. .leftBox {
  2461. margin-top: 20px;
  2462. margin-left: 30px;
  2463. .model-bg {
  2464. width: 100%;
  2465. min-height: 135px;
  2466. // background-color: rgba(3, 5, 9, 0.5);
  2467. border-radius: 6px;
  2468. display: flex;
  2469. flex-direction: column;
  2470. padding: 1% 5%;
  2471. .titles {
  2472. height: 45px;
  2473. border-bottom: 1px solid #333333;
  2474. display: flex;
  2475. flex-direction: row;
  2476. align-items: center;
  2477. justify-content: space-between;
  2478. .name {
  2479. font-size: 16px;
  2480. color: #ffffff;
  2481. }
  2482. .unit {
  2483. font-size: 12px;
  2484. color: #b1b1b1;
  2485. }
  2486. }
  2487. .save {
  2488. display: flex;
  2489. flex-direction: row;
  2490. align-items: center;
  2491. width: 100%;
  2492. margin: 17px 0;
  2493. .save-item {
  2494. width: 25%;
  2495. display: flex;
  2496. flex-direction: column;
  2497. align-items: center;
  2498. .kind {
  2499. width: 20px;
  2500. height: 22px;
  2501. .jnjp-icon1 {
  2502. margin-left: -8px;
  2503. }
  2504. .kind-img {
  2505. width: 100%;
  2506. height: 100%;
  2507. }
  2508. }
  2509. .save-value {
  2510. font-size: 16px;
  2511. color: #ffffff;
  2512. margin: 10px 0;
  2513. }
  2514. .save-name {
  2515. font-size: 12px;
  2516. color: #b3b3b3;
  2517. }
  2518. }
  2519. }
  2520. }
  2521. .new-home {
  2522. .energy-system-box {
  2523. // position: absolute;
  2524. // left: 20px;
  2525. margin-bottom: 30px;
  2526. // margin-left: 15px;
  2527. width: 400px;
  2528. box-sizing: border-box;
  2529. background-color: rgba(3, 5, 9, 0.5);
  2530. &.box1 {
  2531. // top: 270px;
  2532. margin-top: 20px;
  2533. }
  2534. &.box2 {
  2535. // top: 450px;
  2536. }
  2537. &.box3 {
  2538. // top: 690px;
  2539. }
  2540. .energy-system-content {
  2541. padding: 5px 5px 15px 5px;
  2542. .title-all {
  2543. margin-left: 5px;
  2544. margin-bottom: 8px;
  2545. }
  2546. .title-all-content {
  2547. color: #05bb4c;
  2548. font-weight: bold;
  2549. font-size: 19px;
  2550. }
  2551. .title-all-title {
  2552. font-size: 13px;
  2553. }
  2554. .title-all-unit {
  2555. font-size: 12px;
  2556. color: #b1b1b1;
  2557. margin-left: 5px;
  2558. }
  2559. .title {
  2560. color: #fff;
  2561. font-size: 18px;
  2562. line-height: 28px;
  2563. margin: 10px 0.5vh;
  2564. text-align: right;
  2565. .title-name {
  2566. float: left;
  2567. }
  2568. }
  2569. .right-content,
  2570. .left-content {
  2571. width: 50%;
  2572. .img-num {
  2573. display: flex;
  2574. justify-content: left;
  2575. align-items: center;
  2576. padding-left: 10px;
  2577. .img {
  2578. margin-right: 10px;
  2579. }
  2580. .num {
  2581. span {
  2582. font-size: 14px;
  2583. font-weight: 400;
  2584. color: #999999;
  2585. }
  2586. span:nth-child(3) {
  2587. font-size: 19px;
  2588. font-weight: bold;
  2589. color: #05bb4c;
  2590. line-height: 27px;
  2591. }
  2592. span:nth-child(4) {
  2593. margin-left: 15px;
  2594. }
  2595. }
  2596. }
  2597. .capacity {
  2598. .item {
  2599. margin-top: 9px;
  2600. .el-row {
  2601. text-align: center;
  2602. .el-col:nth-child(1) {
  2603. font-size: 14px;
  2604. font-weight: 400;
  2605. color: #999999;
  2606. }
  2607. .el-col:nth-child(2) {
  2608. font-size: 16px;
  2609. font-weight: bold;
  2610. color: #ffffff;
  2611. }
  2612. .el-col:nth-child(3) {
  2613. font-size: 14px;
  2614. font-weight: 400;
  2615. color: #999999;
  2616. }
  2617. }
  2618. }
  2619. }
  2620. }
  2621. .left-content {
  2622. }
  2623. .right-content {
  2624. border-left: 1px dashed #4e4040;
  2625. padding-left: 10px;
  2626. }
  2627. }
  2628. }
  2629. .security-day {
  2630. .lineBox {
  2631. display: flex;
  2632. & > div {
  2633. margin-right: 20px;
  2634. }
  2635. margin: 12px 0 15px;
  2636. .num {
  2637. color: @green;
  2638. font-size: 16px;
  2639. margin-bottom: 15px;
  2640. margin: 0 7px;
  2641. }
  2642. .unit {
  2643. font-size: 12px;
  2644. color: #5e6269;
  2645. }
  2646. }
  2647. .text {
  2648. font-size: 28px;
  2649. color: @write;
  2650. }
  2651. .num {
  2652. color: @green;
  2653. font-size: 35px;
  2654. margin-top: 12px;
  2655. .unit {
  2656. font-size: 24px;
  2657. position: relative;
  2658. margin-left: 0.556vh;
  2659. top: -0.185vh;
  2660. }
  2661. .unit-t {
  2662. font-size: 12px;
  2663. margin-left: 10px;
  2664. }
  2665. }
  2666. .text1 {
  2667. font-size: 14px;
  2668. color: @write;
  2669. }
  2670. .num1 {
  2671. color: @green;
  2672. font-size: 24px;
  2673. margin-bottom: 15px;
  2674. .unit {
  2675. font-size: 12px;
  2676. position: relative;
  2677. margin-left: 0.556vh;
  2678. color: #5e6269;
  2679. }
  2680. }
  2681. }
  2682. }
  2683. }
  2684. .security-day {
  2685. .text {
  2686. font-size: 24px;
  2687. color: @write;
  2688. }
  2689. .num {
  2690. color: @green;
  2691. font-size: 50px;
  2692. .unit {
  2693. font-size: 24px;
  2694. position: relative;
  2695. margin-left: 0.556vh;
  2696. top: -0.185vh;
  2697. }
  2698. }
  2699. .text1 {
  2700. font-size: 14px;
  2701. color: @write;
  2702. }
  2703. .num1 {
  2704. color: @green;
  2705. font-size: 24px;
  2706. margin-bottom: 15px;
  2707. .unit {
  2708. font-size: 12px;
  2709. position: relative;
  2710. margin-left: 0.556vh;
  2711. color: #5e6269;
  2712. }
  2713. }
  2714. }
  2715. .name-box {
  2716. margin: 1.852vh;
  2717. display: inline-block;
  2718. z-index: 2;
  2719. position: absolute;
  2720. display: flex;
  2721. flex-direction: column;
  2722. top: 200px;
  2723. left: 445px;
  2724. width: 200px;
  2725. .name-box-title {
  2726. font-size: 25px;
  2727. font-weight: 400;
  2728. color: #ffffff;
  2729. // line-height: 1;
  2730. cursor: pointer;
  2731. }
  2732. .name-box-period {
  2733. margin-top: 2.222vh;
  2734. .name-box-period-label,
  2735. .name-box-period-value {
  2736. font-size: 1.481vh;
  2737. font-weight: 400;
  2738. line-height: 1;
  2739. }
  2740. .name-box-period-label {
  2741. color: #fefefe;
  2742. }
  2743. .name-box-period-value {
  2744. color: #05bb4c;
  2745. }
  2746. }
  2747. }
  2748. .return {
  2749. position: absolute;
  2750. display: flex;
  2751. z-index: 2;
  2752. align-items: center;
  2753. top: 150px;
  2754. left: 460px;
  2755. width: 110px;
  2756. font-size: @fontsize-l;
  2757. color: fade(@white, 80);
  2758. cursor: pointer;
  2759. border: 1px solid transparent;
  2760. padding: 6px 16px;
  2761. color: #05bb4c;
  2762. border: 1px solid #05bb4c;
  2763. font-size: 22px;
  2764. .svg-icon {
  2765. margin-right: 0.7407vh;
  2766. svg {
  2767. transform: rotate(90deg);
  2768. use {
  2769. transition: all 0.3s;
  2770. fill: @green;
  2771. }
  2772. }
  2773. }
  2774. transition: all 0.3s;
  2775. &:hover {
  2776. color: @green;
  2777. border: 1px solid @green;
  2778. .svg-icon {
  2779. svg {
  2780. use {
  2781. fill: @green;
  2782. }
  2783. }
  2784. }
  2785. }
  2786. }
  2787. .compass {
  2788. position: absolute;
  2789. right: 16px;
  2790. bottom: 32px;
  2791. border-radius: 50%;
  2792. &::after {
  2793. content: "";
  2794. position: absolute;
  2795. top: 4px;
  2796. left: 4px;
  2797. border-radius: 50%;
  2798. width: 36px;
  2799. height: 36px;
  2800. box-shadow: inset 0px -5px 10px 0px @green;
  2801. }
  2802. svg {
  2803. height: 45px;
  2804. width: 45px;
  2805. }
  2806. }
  2807. .map-img {
  2808. // width: calc(100% - 14.815vh);
  2809. width: 100%;
  2810. // height: calc(100% - 14.815vh);
  2811. height: 100%;
  2812. // margin: 7.407vh 0;
  2813. position: absolute;
  2814. z-index: 1;
  2815. top: 0;
  2816. left: 0;
  2817. @keyframes rotate {
  2818. from {
  2819. transform: rotateX(70deg);
  2820. }
  2821. to {
  2822. transform: rotateX(0deg);
  2823. }
  2824. }
  2825. img {
  2826. width: 100%;
  2827. animation: rotate 3s;
  2828. animation-direction: alternate;
  2829. animation-iteration-count: infinite;
  2830. }
  2831. }
  2832. }
  2833. .island {
  2834. position: absolute;
  2835. right: 20vw;
  2836. bottom: 0px;
  2837. }
  2838. .island_light {
  2839. position: absolute;
  2840. right: 21vw;
  2841. bottom: 4vh;
  2842. }
  2843. .clearfix::after {
  2844. content: "";
  2845. clear: both;
  2846. height: 0;
  2847. line-height: 0;
  2848. visibility: hidden;
  2849. display: block;
  2850. }
  2851. .clearfix {
  2852. zoom: 1;
  2853. }
  2854. </style>