map.vue 77 KB

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