Home.vue 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169
  1. <template>
  2. <div :class="$store.state.themeName === 'light' ? 'home_light' : 'home'">
  3. <div class="base-info">
  4. <!-- 旧 -->
  5. <div v-if="false">
  6. <div class="infos" v-if="wpId != 0 && activeTab === 1">
  7. <div class="titles">
  8. <div class="amount">
  9. <div class="icon fengji-icon svg-icon svg-icon-white"></div>
  10. <img class="amount-image" src="../../assets/png/wind.png" alt="">
  11. <div class="amount-nums"><text class="num-item">{{ mxztmap.fd_jrts || mxztmap.jrts}}</text> 台</div>
  12. </div>
  13. <div v-if="!(wpId.includes('FDC') || wpId.includes('GC') || wpId.includes('GDC'))" class="info-nums">场站 <text
  14. class="nums">{{ fcNum }}</text> 个</div>
  15. </div>
  16. <div class="types">
  17. <div class="type-model">
  18. <div class="type-name" style="color:#05bb4c">待机</div>
  19. <div class="type-num">{{ mxztmap.fd_djts || mxztmap.djts || 0}}</div>
  20. </div>
  21. <div class="type-model">
  22. <div class="type-name" style="color:#1529E9">运行</div>
  23. <div class="type-num">{{ mxztmap.fd_yxts || mxztmap.yxts || 0}}</div>
  24. </div>
  25. <div class="type-model">
  26. <div class="type-name" style="color:#c531c7">限电</div>
  27. <div class="type-num">{{ mxztmap.fd_xdts || mxztmap.xdts}}</div>
  28. </div>
  29. <div class="type-model">
  30. <div class="type-name" style="color:#BA3237">故障</div>
  31. <div class="type-num">{{ mxztmap.fd_gzts || mxztmap.gzts || 0}}</div>
  32. </div>
  33. <div class="type-model">
  34. <div class="type-name" style="color:#ff7a7f">检修</div>
  35. <div class="type-num">{{ mxztmap.fd_jxts || mxztmap.jxts || 0}}</div>
  36. </div>
  37. <div class="type-model">
  38. <div class="type-name" style="color:rgba(255, 255, 255, 0.55)">受累</div>
  39. <div class="type-num">{{ mxztmap.fd_slts || mxztmap.slts }}</div>
  40. </div>
  41. <div class="type-model">
  42. <div class="type-name" style="color:#606769">离线</div>
  43. <div class="type-num">{{ mxztmap.fd_lxts || mxztmap.lxts || 0}}</div>
  44. </div>
  45. </div>
  46. </div>
  47. <div class="infos" v-if="wpId != 0 && activeTab === 2">
  48. <div class="titles">
  49. <div class="amount">
  50. <div class="icon fengji-icon svg-icon svg-icon-white"> </div>
  51. <img class="amount-image" src="../../assets/png/sun.png" alt="">
  52. <div class="amount-nums"><text class="num-item">{{ mxztmap.gf_jrts }}</text> 台</div>
  53. </div>
  54. <div class="info-nums">场站 <text class="nums">{{ gfNum }}</text> 个</div>
  55. </div>
  56. <div class="types">
  57. <div class="type-model">
  58. <div class="type-name" style="color:#05bb4c">待机</div>
  59. <div class="type-num">{{ mxztmap.gf_djts }}</div>
  60. </div>
  61. <div class="type-model">
  62. <div class="type-name" style="color:#1529E9">运行</div>
  63. <div class="type-num">{{ mxztmap.gf_yxts }}</div>
  64. </div>
  65. <div class="type-model">
  66. <div class="type-name" style="color:#c531c7">限电</div>
  67. <div class="type-num">{{ mxztmap.gf_xdts }}</div>
  68. </div>
  69. <div class="type-model">
  70. <div class="type-name" style="color:#BA3237">故障</div>
  71. <div class="type-num">{{ mxztmap.gf_gzts }}</div>
  72. </div>
  73. <div class="type-model">
  74. <div class="type-name" style="color:#ff7a7f">检修</div>
  75. <div class="type-num">{{ mxztmap.gf_jxts }}</div>
  76. </div>
  77. <div class="type-model">
  78. <div class="type-name" style="color:rgba(255, 255, 255, 0.55)">受累</div>
  79. <div class="type-num">{{ mxztmap.gf_slts }}</div>
  80. </div>
  81. <div class="type-model">
  82. <div class="type-name" style="color:#606769">离线</div>
  83. <div class="type-num">{{ mxztmap.gf_lxts }}</div>
  84. </div>
  85. </div>
  86. </div>
  87. </div>
  88. </div>
  89. <div class="top-mid-panel">
  90. <Map
  91. :wpId="wpId"
  92. :jczbmap="jczbmap"
  93. :homeSuspensionWindowsData="homeSuspensionWindowsData"
  94. :StationinformationData="StationinformationData"
  95. :newpointmap="newpointmapData"
  96. :day="String(jczbmap.aqts)"
  97. :data="fcmap" :xtData="xtmap"
  98. @mapClick="changeShowType"
  99. @mapClicks="changeShowTypes"
  100. @mapClickBack="changeShowBackType"
  101. @currentActiveTab="currentActiveTab"
  102. @backStation="onBackStation"
  103. ></Map>
  104. </div>
  105. <div class="right" :class="activeTab === 1 || activeTab === 2 ? 'top-distance' : ''">
  106. <!-- 新 -->
  107. <Row type="flex" style="margin-bottom:26px">
  108. <Col :span="24">
  109. <!-- 新 -->
  110. <div class="model-bg-new">
  111. <div class="titles">
  112. <div class="name">实时负荷</div>
  113. <div class="unit">(单位: MW)</div>
  114. </div>
  115. <power-review-home :data="powerDataHome" :id="wpId" @chartClick="showPowerChart" />
  116. </div>
  117. </Col>
  118. </Row>
  119. <Row type="flex" style="margin-bottom:26px" v-if="activeTab === 1 || activeTab === 0">
  120. <Col :span="24">
  121. <div class="model-bg-new-right">
  122. <div class="infos">
  123. <div class="titles">
  124. <div class="amount">
  125. <div class="icon fengji-icon svg-icon svg-icon-white"></div>
  126. <img class="amount-image" src="../../assets/png/wind.png" alt="">
  127. <div class="amount-nums"><text class="num-item">{{ newpointmapData?.jr_fj_ts }}</text> 台</div>
  128. </div>
  129. <div v-if="!(wpId.includes('FDC') || wpId.includes('GC') || wpId.includes('GDC'))" class="info-nums">风电场<text
  130. class="nums">{{ newpointmapData?.jr_fcts }}</text> 个</div>
  131. </div>
  132. <div class="types">
  133. <div class="type-model">
  134. <div class="type-name" style="color:#05bb4c">运行</div>
  135. <div class="type-num">{{ mxztmap.fd_yxts || mxztmap.yxts || 0}}</div>
  136. </div>
  137. <div class="type-model">
  138. <div class="type-name" style="color:#e17e23">检修</div>
  139. <div class="type-num">{{ mxztmap.fd_jxts || mxztmap.jxts || 0}}</div>
  140. </div>
  141. <div class="type-model">
  142. <div class="type-name" style="color:#BA3237">故障</div>
  143. <div class="type-num">{{ mxztmap.fd_gzts || mxztmap.gzts || 0}}</div>
  144. </div>
  145. <div class="type-model">
  146. <div class="type-name" style="color:#606769">离线</div>
  147. <div class="type-num">{{ mxztmap.fd_lxts || mxztmap.lxts || 0}}</div>
  148. </div>
  149. <div class="type-model">
  150. <div class="type-name" style="color:#4b55ae">待机</div>
  151. <div class="type-num">{{ mxztmap.fd_djts || mxztmap.djts || 0}}</div>
  152. </div>
  153. <div class="type-model">
  154. <div class="type-name" style="color:#c531c7">限电</div>
  155. <div class="type-num">{{ mxztmap.fd_xdts || mxztmap.xdts || 0}}</div>
  156. </div>
  157. </div>
  158. <div class="tabSwitchover">
  159. <!-- <div class="tabSwitchover-item" :class="tabIndex == val.id ? 'tab-active': ''" v-for="val in tabTitle" :key="val.id" @click="tabClick(val)"><span>{{val.title}}</span></div> -->
  160. <div class="unit"><span>(单位: 万kWh)</span></div>
  161. </div>
  162. <div v-for="(item, index) in ForecastPowerNewHome_fc" :key="index">
  163. <div class="power-charts">
  164. <div class="power-name">{{ item[0].name }}</div>
  165. <div class="power-item">
  166. <div class="power-value">
  167. <span :style="item[0].color === 1 ? 'background-color:#4B55AE' :'background-color:#05BB4C'"></span>
  168. <span>{{ item[0].total }}</span>
  169. </div>
  170. <list-bar-chart-2-home :list="item" height="55px" width="250px" @click="showForecastBox('风电场'+item[0].name)" />
  171. </div>
  172. </div>
  173. </div>
  174. <!-- <div v-for="(item, index) in ForecastPowerNewHome_fc" :key="index">
  175. <div class="power-charts" v-for="(val, index1) in item.data" :key="index1" v-show="item.id == tabIndex">
  176. <div class="power-name">{{ val[0].name }}</div>
  177. <div class="power-item">
  178. <div class="power-value">
  179. <span :style="index1 % 2 === 0 ? 'background-color:#4B55AE' :'background-color:#05BB4C'"></span>
  180. <span>{{ val[0].value }}</span>
  181. </div>
  182. <list-bar-chart-2-home :list="val" height="40px" width="190px" @click="showForecastBox(item)" />
  183. </div>
  184. </div>
  185. </div> -->
  186. </div>
  187. </div>
  188. </Col>
  189. </Row>
  190. <Row type="flex" style="margin-bottom:26px" v-if="activeTab === 2 || activeTab === 0">
  191. <Col :span="24">
  192. <div class="model-bg-new-right">
  193. <div class="infos">
  194. <div class="titles">
  195. <div class="amount">
  196. <div class="icon fengji-icon svg-icon svg-icon-white"> </div>
  197. <img class="amount-image" src="../../assets/png/sun.png" alt="">
  198. <div class="amount-nums"><text class="num-item">{{ Number(newpointmapData?.jr_gf_jzts + newpointmapData?.jr_gf_zcts) || 0}}</text> 台</div>
  199. </div>
  200. <div class="info-nums">电站<text class="nums">{{ newpointmapData?.jr_gfts }}</text> 个</div>
  201. </div>
  202. <div class="types">
  203. <div class="type-model">
  204. <div class="type-name" style="color:#05bb4c">运行</div>
  205. <div class="type-num">{{ mxztmap.gf_yxts }}</div>
  206. </div>
  207. <div class="type-model">
  208. <div class="type-name" style="color:#e17e23">检修</div>
  209. <div class="type-num">{{ mxztmap.gf_jxts }}</div>
  210. </div>
  211. <div class="type-model">
  212. <div class="type-name" style="color:#BA3237">故障</div>
  213. <div class="type-num">{{ mxztmap.gf_gzts }}</div>
  214. </div>
  215. <div class="type-model">
  216. <div class="type-name" style="color:#606769">离线</div>
  217. <div class="type-num">{{ mxztmap.gf_lxts }}</div>
  218. </div>
  219. <div class="type-model">
  220. <div class="type-name" style="color:#4b55ae">待机</div>
  221. <div class="type-num">{{ mxztmap.gf_djts }}</div>
  222. </div>
  223. <div class="type-model">
  224. <div class="type-name" style="color:#c531c7">限电</div>
  225. <div class="type-num">{{ mxztmap.gf_xdts }}</div>
  226. </div>
  227. </div>
  228. <div class="tabSwitchover">
  229. <!-- <div class="tabSwitchover-item" :class="tabIndex_gf == val.id ? 'tab-active': ''" v-for="val in tabTitle_gf" :key="val.id" @click="tabClick_gf(val)"><span>{{val.title}}</span></div> -->
  230. <div class="unit"><span>(单位: 万kWh)</span></div>
  231. </div>
  232. <!-- tab的 -->
  233. <!-- <div v-for="(item, index) in ForecastPowerNewHome_gf" :key="index">
  234. <div class="power-charts" v-for="(val, index1) in item.data" :key="index1" v-show="item.id == tabIndex">
  235. <div class="power-name">{{ val[0].name }}</div>
  236. <div class="power-item">
  237. <div class="power-value">
  238. <span :style="index1 % 2 === 0 ? 'background-color:#4B55AE' :'background-color:#05BB4C'"></span>
  239. <span>{{ val[0].value }}</span>
  240. </div>
  241. <list-bar-chart-2-home :list="val" height="40px" width="190px" @click="showForecastBox(item)" />
  242. </div>
  243. </div>
  244. </div> -->
  245. <div v-for="(item, index) in ForecastPowerNewHome_gf" :key="index">
  246. <div class="power-charts">
  247. <div class="power-name">{{ item[0].name }}</div>
  248. <div class="power-item">
  249. <div class="power-value">
  250. <span :style="index % 2 === 0 ? 'background-color:#4B55AE' :'background-color:#05BB4C'"></span>
  251. <span>{{ item[0].total }}</span>
  252. </div>
  253. <list-bar-chart-2-home :list="item" height="55px" width="250px" @click="showForecastBox('电站'+item[0].name)" />
  254. </div>
  255. </div>
  256. </div>
  257. </div>
  258. </div>
  259. </Col>
  260. </Row>
  261. <div class="infos-echarts" v-if="activeTab === 1 || activeTab === 2">
  262. <div class="charts">
  263. <div class="energy-title">24小时功率曲线图</div>
  264. <multiple-line-chart-home
  265. class="charts-item"
  266. width="100%"
  267. height="143px"
  268. :list="Powertrend_power.value"
  269. :units="Powertrend_power.units"
  270. :showLegend="true"
  271. ></multiple-line-chart-home>
  272. </div>
  273. </div>
  274. <!-- 旧 2022/10 -->
  275. <div v-if="false">
  276. <Row type="flex" style="padding-bottom: 10px;" v-if="wpId != 0">
  277. <Col :span="24">
  278. <div class="model-bg">
  279. <div class="titles">
  280. <div class="name">效益提升</div>
  281. <div class="unit">(单位:万kWh)</div>
  282. </div>
  283. <coulometric-analysis :bmgz="gxkmap.tjsl" :tsl="0" :jdl="gxkmap.tjl" :fnlyl="wxssmap.yfnlyl"
  284. :sbklyl="gxkmap.ysbklyl" :zhcydl="gxkmap.yzhcydl" :yhfj="gxkmap.sjtjsl" />
  285. </div>
  286. </Col>
  287. </Row>
  288. <Row type="flex" style="padding-bottom: 10px" v-if="wpId != 0">
  289. <Col :span="24">
  290. <div class="model-bg">
  291. <div class="titles">
  292. <div class="name">发电量</div>
  293. <div class="unit">(单位:万kWh)</div>
  294. </div>
  295. <div v-for="(item, index) in ForecastPower" :key="index">
  296. <div class="power-charts">
  297. <div class="power-name-old">{{ item[0].name }}</div>
  298. <div class="power-item">
  299. <div class="power-value-old">
  300. <div :class="index % 2 === 0 ? 'green-value' : 'purple-value'">{{ item[0].value }}</div>
  301. <div>{{ item[0].total }}</div>
  302. </div>
  303. <list-bar-chart-2 :list="item" height="40px" width="250px" @click="showForecastBox" />
  304. </div>
  305. </div>
  306. </div>
  307. <!-- <power-plan
  308. :data="planData"
  309. :title="planBtnName"
  310. :showSingle="powerplanShowSingle"
  311. :id="wpId"
  312. @chartClick="showDoneChart"
  313. /> -->
  314. </div>
  315. </Col>
  316. </Row>
  317. <Row type="flex" style="margin-bottom:26px">
  318. <Col :span="24">
  319. <!-- 新 -->
  320. <!-- <div class="model-bg" v-if="wpId == 0">
  321. <div class="titles">
  322. <div class="name">功率负荷</div>
  323. <div class="unit"></div>
  324. </div>
  325. <power-review-home :data="powerDataHome" :id="wpId" @chartClick="showPowerChart" />
  326. </div> -->
  327. <!-- 旧 -->
  328. <div class="model-bg" v-if="wpId != 0">
  329. <div class="titles">
  330. <div class="name">功率负荷</div>
  331. <div class="unit">(单位:万kWh)</div>
  332. </div>
  333. <power-review :data="powerData" :id="wpId" @chartClick="showPowerChart" />
  334. </div>
  335. </Col>
  336. </Row>
  337. <Row type="flex" v-if="wpId != 0">
  338. <Col :span="24">
  339. <div class="model-bg">
  340. <div class="titles">
  341. <div class="name">节能减排</div>
  342. <div class="unit">万吨</div>
  343. </div>
  344. <div class="save">
  345. <div class="save-item">
  346. <div class="jnjp-icon svg-icon svg-icon-green" style="width:5.5vh,height:5.5vh">
  347. <svg-icon class="" svgid="svg-煤" />
  348. </div>
  349. <div class="save-value">{{ jczbmap.jybms }}</div>
  350. <div class="save-name">煤</div>
  351. </div>
  352. <div class="save-item">
  353. <div class="jnjp-icon svg-icon svg-icon-green">
  354. <svg-icon class="" svgid="svg-水" />
  355. </div>
  356. <div class="save-value">{{ jczbmap.jyss }}</div>
  357. <div class="save-name">水</div>
  358. </div>
  359. <div class="save-item">
  360. <div class="kind">
  361. <div class="jnjp-icon1 svg-icon svg-icon-green">
  362. <svg-icon class="" svgid="svg-co2" />
  363. </div>
  364. </div>
  365. <div class="save-value">{{ jczbmap.jpeyhts }}</div>
  366. <div class="save-name">二氧化碳</div>
  367. </div>
  368. <div class="save-item">
  369. <div class="kind">
  370. <div class="jnjp-icon1 svg-icon svg-icon-green">
  371. <svg-icon class="" svgid="svg-so2" />
  372. </div>
  373. </div>
  374. <div class="save-value">{{ jczbmap.jpeyhls }}</div>
  375. <div class="save-name">二氧化硫</div>
  376. </div>
  377. </div>
  378. </div>
  379. </Col>
  380. </Row>
  381. </div>
  382. </div>
  383. <el-dialog :title="dialogTitle" v-model="dialogShow" width="80%" top="10vh" custom-class="modal"
  384. :close-on-click-modal="true" @closed="(res) => {dialogType = '';powerLineChartData = null;}">
  385. <Table :data="dialogData" v-if="dialogType === 'table'" />
  386. <multiple-y-line-chart-normal height="800px" :list="powerLineChartData" :yAxises="powerLineChartYAxises"
  387. :showLegend="true" v-if="dialogType === 'powerLineChart' && powerLineChartData" />
  388. <multiple-y-line-chart-normal height="800px" :list="Powertrend" :yAxises="PowertrendYAxises" :showLegend="true"
  389. v-if="dialogType === 'powerLineChart' && !powerLineChartData" />
  390. <multiple-bar-chart height="800px" :units="doneLineChartData.units" :list="doneLineChartData.value"
  391. v-if="dialogType === 'doneLineChart'" />
  392. </el-dialog>
  393. </div>
  394. </template>
  395. <script>
  396. import MultipleLineChartHome from "@/components/chart/line/double-line-chart-home.vue";
  397. import ListBarChart2Home from "../../components/chart/bar/list-bar-chart2-home.vue";
  398. import PowerReviewHome from "./components/power-review-home.vue";
  399. // @ is an alias to /src
  400. import Row from "../../components/coms/grid/row.vue";
  401. import Col from "../../components/coms/grid/col.vue";
  402. import ComPanel from "../../components/coms/panel/panel";
  403. // import ListBarChart from "../../components/chart/bar/list-bar-chart.vue";
  404. import ToolbarPanel from "../../components/coms/panel/toolbar-panel.vue";
  405. import MultipleBarChart from "../../components/chart/bar/multiple-bar-chart.vue";
  406. import MultipleYLineChartNormal from "../../components/chart/line/multiple-y-line-chart-normal.vue";
  407. import Panel3 from "../../components/coms/panel/panel3.vue";
  408. import SvgIcon from "../../components/coms/icon/svg-icon.vue";
  409. import CoulometricAnalysis from "./components/coulometric-analysis.vue";
  410. import Weather from "./components/weather.vue";
  411. import PowerReview from "./components/power-review.vue";
  412. import PowerPlan from "./components/power-plan.vue";
  413. import Map from "./components/map.vue";
  414. import ListBarChart2 from "../../components/chart/bar/list-bar-chart2.vue";
  415. // import ListBarChartNewHome from "../../components/chart/bar/list-bar-chart2-new-home.vue";
  416. import DoubleLineChart from "@com/chart/line/double-line-chart.vue";
  417. import api from "@api/cockpit/matrix/index.js";
  418. import Table from "./dialog/table.vue";
  419. import $ from "jquery";
  420. export default {
  421. name: "Home",
  422. components: {
  423. PowerReviewHome,
  424. ListBarChart2Home,
  425. MultipleLineChartHome,
  426. Row,
  427. Col,
  428. ComPanel,
  429. Weather,
  430. CoulometricAnalysis,
  431. // ListBarChart,
  432. PowerReview,
  433. ToolbarPanel,
  434. PowerPlan,
  435. MultipleBarChart,
  436. MultipleYLineChartNormal,
  437. Panel3,
  438. SvgIcon,
  439. Map,
  440. ListBarChart2,
  441. // ListBarChartNewHome,
  442. Table,
  443. DoubleLineChart,
  444. },
  445. data() {
  446. return {
  447. StationinformationData: [],
  448. homeSuspensionWindowsData: [],
  449. tabIndex: 1,
  450. tabIndex_gf: 1,
  451. tabTitle: [
  452. {id: 1, title:"日"},
  453. {id: 2, title:"月"},
  454. {id: 3, title:"年"},
  455. ],
  456. tabTitle_gf: [
  457. {id: 1, title:"日"},
  458. {id: 2, title:"月"},
  459. {id: 3, title:"年"},
  460. ],
  461. powerDataHome: {},
  462. ForecastPowerNewHome_fc: [],
  463. ForecastPowerNewHome_gf: [],
  464. newpointmapData: {},
  465. Powertrend_power: {
  466. value: [
  467. {
  468. title: "",
  469. value: [],
  470. },
  471. ],
  472. },
  473. //
  474. historyWpId: "",
  475. historyPlanBtnName: "全部",
  476. timmer: null, // 计时器
  477. timmer2: null,
  478. timmer3: null,
  479. powerplanShowSingle: false,
  480. fcNum: 0,
  481. gfNum: 0,
  482. activeTab: 0,
  483. powerData: {},
  484. weatherChart: [
  485. {
  486. title: "温度",
  487. smooth: true,
  488. value: [],
  489. },
  490. {
  491. title: "湿度",
  492. smooth: true,
  493. value: [],
  494. },
  495. ],
  496. tqmap5: [],
  497. jczbmap: {},
  498. wxssmap: {},
  499. gxkmap: {},
  500. mxztmap: {},
  501. planData: {},
  502. tqmap: {},
  503. nowTime: "",
  504. planBtnName: "全部",
  505. powerLineChartYAxises: [],
  506. powerLineChartData: [
  507. {
  508. title: "",
  509. yAxisIndex: 0, // 使用单位
  510. value: [],
  511. },
  512. ],
  513. doneLineChartData: {
  514. // 图表所用单位
  515. units: [""],
  516. value: [
  517. {
  518. title: "",
  519. yAxisIndex: 0, // 使用单位
  520. value: [],
  521. },
  522. ],
  523. },
  524. dialogType: null,
  525. wpId: "0",
  526. wpName: "", //安全天数下面的场站名
  527. fcmap: {},
  528. xtmap: {},
  529. dialogShow: false,
  530. dialogTitle: "",
  531. dialogData: {},
  532. // 预测电量
  533. ForecastPower: [],
  534. // 日发电量
  535. DayPower: {
  536. // 图表所用单位
  537. units: [""],
  538. value: [
  539. {
  540. title: "",
  541. yAxisIndex: 0, // 使用单位
  542. value: [],
  543. },
  544. ],
  545. },
  546. PowertrendYAxises: [
  547. {
  548. name: "功率",
  549. min: 0,
  550. max: null,
  551. unit: "(万kWh)",
  552. position: "left",
  553. },
  554. {
  555. name: "风速",
  556. min: 0,
  557. max: 25,
  558. unit: "(m/s)",
  559. position: "right",
  560. },
  561. ],
  562. };
  563. },
  564. methods: {
  565. tabClick(data){
  566. this.tabIndex = data.id
  567. },
  568. tabClick_gf(data){
  569. this.tabIndex_gf = data.id
  570. },
  571. getData(wpId) {
  572. api.findPowerInfo({id: wpId}).then(res => {
  573. if (res.data) {
  574. let Powertrend = {
  575. // 图表所用单位
  576. units: ["(万KWh)", "(风速)"],
  577. value: [
  578. {
  579. title: "应发功率",
  580. smooth: true, // 使用单位
  581. value: [],
  582. },
  583. {
  584. title: "实发功率",
  585. smooth: true, // 使用单位
  586. value: [],
  587. },
  588. {
  589. title: "保证功率",
  590. smooth: true, // 使用单位
  591. value: [],
  592. },
  593. {
  594. title: "平均风速",
  595. smooth: true, // 使用单位
  596. value: [],
  597. },
  598. ],
  599. };
  600. res.data.forEach(item => {
  601. Powertrend.value[0].value.push(item.yfgl)
  602. Powertrend.value[1].value.push(item.sjgl)
  603. Powertrend.value[2].value.push(item.bzgl)
  604. Powertrend.value[3].value.push(item.ssfs)
  605. })
  606. this.Powertrend_power = Powertrend.value
  607. }
  608. })
  609. },
  610. // 请求服务
  611. requestData() {
  612. api.Stationinformation({wpId: this.wpId,}).then(res=>{
  613. if (res.data) {
  614. this.StationinformationData = res.data
  615. }
  616. })
  617. api.homeSuspensionWindows().then(res=>{
  618. if (res.data) {
  619. let newArray = []
  620. res.data.forEach(element => {
  621. element.industryState = true
  622. element.companyState = true
  623. if(element.name == "山西"){
  624. if(element.sxcyzzjrl == 0 && element.sxcyfd == 0 && element.sxcyfdzjrl == 0 && element.sxcygf == 0 && element.sxcygfzjrl == 0){
  625. element.industryState = false
  626. }
  627. if(element.sxgszzjrl == 0 && element.sxgsfd == 0 && element.sxgsfdzjrl == 0 && element.sxgsgf == 0 && element.sxgsgfzjrl == 0){
  628. element.companyState = false
  629. }
  630. newArray[0] = element
  631. } else if(element.name == "新疆") {
  632. if(element.xjcyzzjrl == 0 && element.xjcyfd == 0 && element.xjcyfdzjrl == 0 && element.xjcygf == 0 && element.xjcygfzjrl == 0){
  633. element.industryState = false
  634. }
  635. if(element.xjgszzjrl == 0 && element.xjgsfd == 0 && element.xjgsfdzjrl == 0 && element.xjgsgf == 0 && element.xjgsgfzjrl == 0){
  636. element.companyState = false
  637. }
  638. newArray[1] = element
  639. } else if(element.name == "内蒙") {
  640. if(element.nmcyzzjrl == 0 && element.nmcyfd == 0 && element.nmcyfdzjrl == 0 && element.nmcygf == 0 && element.nmcygfzjrl == 0){
  641. element.industryState = false
  642. }
  643. if(element.nmgszzjrl == 0 && element.nmgsfd == 0 && element.nmgsfdzjrl == 0 && element.nmgsgf == 0 && element.nmgsgfzjrl == 0){
  644. element.companyState = false
  645. }
  646. newArray[2] = element
  647. } else if(element.name == "西藏") {
  648. if(element.xzcyzzjrl == 0 && element.xzcyfd == 0 && element.xzcyfdzjrl == 0 && element.xzcygf == 0 && element.xzcygfzjrl == 0){
  649. element.industryState = false
  650. }
  651. if(element.xzgszzjrl == 0 && element.xzgsfd == 0 && element.xzgsfdzjrl == 0 && element.xzgsgf == 0 && element.xzgsgfzjrl == 0){
  652. element.companyState = false
  653. }
  654. newArray[3] = element
  655. } else if(element.name == "山东") {
  656. if(element.sdcyzzjrl == 0 && element.sdcyfd == 0 && element.sdcyfdzjrl == 0 && element.sdcygf == 0 && element.sdcygfzjrl == 0){
  657. element.industryState = false
  658. }
  659. if(element.sdgszzjrl == 0 && element.sdgsfd == 0 && element.sdgsfdzjrl == 0 && element.sdgsgf == 0 && element.sdgsgfzjrl == 0){
  660. element.companyState = false
  661. }
  662. newArray[4] = element
  663. } else if(element.name == "陕西") {
  664. if(element.xscyzzjrl == 0 && element.xscyfd == 0 && element.xscyfdzjrl == 0 && element.xscygf == 0 && element.xscygfzjrl == 0){
  665. element.industryState = false
  666. }
  667. if(element.xsgszzjrl == 0 && element.xsgsfd == 0 && element.xsgsfdzjrl == 0 && element.xsgsgf == 0 && element.xsgsgfzjrl == 0){
  668. element.companyState = false
  669. }
  670. newArray[5] = element
  671. } else if(element.name == "河北") {
  672. if(element.hbcyzzjrl == 0 && element.hbcyfd == 0 && element.hbcyfdzjrl == 0 && element.hbcygf == 0 && element.hbcygfzjrl == 0){
  673. element.industryState = false
  674. }
  675. if(element.hbgszzjrl == 0 && element.hbgsfd == 0 && element.hbgsfdzjrl == 0 && element.hbgsgf == 0 && element.hbgsgfzjrl == 0){
  676. element.companyState = false
  677. }
  678. newArray[6] = element
  679. }
  680. });
  681. this.homeSuspensionWindowsData = newArray
  682. }
  683. })
  684. // console.log(5555)
  685. api.findBasicDataInfo({ id: this.wpId,}).then((res) => {
  686. if (res.data) {
  687. this.newpointmapData = res.data.newpointmap
  688. let arr = Object.keys(res.data.xtmap).sort();
  689. this.fcNum = arr.filter(item => item.includes('FDC')).length
  690. this.gfNum = arr.filter(item => item.includes('GDC')).length
  691. this.powerDataHome = [
  692. {
  693. title: "清洁能源",
  694. value: res?.data?.newpointmap?.qjny_fhl,
  695. dialogTitle: "清洁能源",
  696. subUrl: "genreset/findGLDetail",
  697. targetName: "bzgl",
  698. dialogType: "powerLineChart",
  699. max: 3000,
  700. },
  701. {
  702. title: "风电",
  703. value: res?.data?.newpointmap?.fd_fhl,
  704. dialogTitle: "保证功率详情",
  705. subUrl: "genreset/findGLDetail",
  706. targetName: "bzgl",
  707. dialogType: "powerLineChart",
  708. max: 3000,
  709. },
  710. {
  711. title: "光伏",
  712. value: res?.data?.newpointmap?.gf_fhl,
  713. dialogTitle: "保证功率详情",
  714. subUrl: "genreset/findGLDetail",
  715. targetName: "bzgl",
  716. dialogType: "powerLineChart",
  717. max: 3000,
  718. },
  719. ];
  720. this.powerData = [
  721. {
  722. title:
  723. this.wpId === "-2" || this.wpId.indexOf("GDC") !== -1
  724. ? "日照强度"
  725. : "风速",
  726. value: res?.data?.jczbmap?.ssfs,
  727. dialogTitle:
  728. this.wpId == 0
  729. ? "详情"
  730. : this.wpId === "-2" || this.wpId.indexOf("GDC") !== -1
  731. ? "日照强度详情"
  732. : "风速详情",
  733. subUrl: "genreset/findGLDetail",
  734. targetName: "ssfs",
  735. dialogType: "powerLineChart",
  736. max:
  737. this.wpId === "-2" || this.wpId.indexOf("GDC") !== -1
  738. ? 1200
  739. : 40,
  740. },
  741. {
  742. title: "保证功率",
  743. value: res?.data?.jczbmap?.bzgl,
  744. dialogTitle: "保证功率详情",
  745. subUrl: "genreset/findGLDetail",
  746. targetName: "bzgl",
  747. dialogType: "powerLineChart",
  748. max: res.data?.jczbmap?.zjts,
  749. },
  750. {
  751. title: "应发功率",
  752. value: res?.data?.jczbmap?.yfgl,
  753. dialogTitle: "应发功率详情",
  754. subUrl: "genreset/findGLDetail",
  755. targetName: "yfgl",
  756. dialogType: "powerLineChart",
  757. max: res.data?.jczbmap?.zjts,
  758. },
  759. {
  760. title: "实际功率",
  761. value: res?.data?.jczbmap?.sjgl,
  762. dialogTitle: "实际功率详情",
  763. subUrl: "genreset/findGLDetail",
  764. targetName: "sjgl",
  765. dialogType: "powerLineChart",
  766. max: res?.data?.jczbmap?.zjts,
  767. },
  768. ];
  769. res.data.jczbmap.jybms = (res.data.jczbmap.jybm).toFixed(0)
  770. res.data.jczbmap.jyss = (res.data.jczbmap.jys).toFixed(0)
  771. res.data.jczbmap.jpeyhts = (res.data.jczbmap.jpeyht).toFixed(0)
  772. res.data.jczbmap.jpeyhls = (res.data.jczbmap.jpeyhl).toFixed(0)
  773. this.jczbmap = res.data.jczbmap;
  774. this.wxssmap = res.data.wxssmap;
  775. this.gxkmap = res.data.gxkmap;
  776. this.mxztmap = res.data.mxztmap;
  777. this.fcmap = res.data.fcmap;
  778. this.xtmap = res.data.xtmap;
  779. this.tqmap = res.data.tqmap;
  780. // tab结构
  781. // this.ForecastPowerNewHome_fc = [
  782. // {
  783. // id: 1,
  784. // type: "风电日发电量",
  785. // data: [
  786. // [
  787. // {
  788. // name: "预测电量",
  789. // value: res.data.newpointmap.fd_r_ycdl < 0 ? 0 : res.data.newpointmap.fd_r_ycdl,
  790. // color: 1,
  791. // total: res.data.newpointmap.fd_r_ycdl < 0 ? 0 : res.data.newpointmap.fd_r_ycdl * 1.5,
  792. // }
  793. // ],
  794. // [
  795. // {
  796. // name: "实际电量",
  797. // value: res.data.newpointmap.fd_r_fdl < 0 ? 0 : res.data.newpointmap.fd_r_fdl,
  798. // color: 0,
  799. // total: res.data.newpointmap.fd_r_ycdl < 0 ? 0 : res.data.newpointmap.fd_r_ycdl,
  800. // }
  801. // ],
  802. // ]
  803. // },
  804. // {
  805. // id: 2,
  806. // type: "风电月发电量",
  807. // data: [
  808. // [
  809. // {
  810. // name: "预测电量",
  811. // value: res.data.newpointmap.fd_y_ycdl < 0 ? 0 : res.data.newpointmap.fd_y_ycdl,
  812. // color: 1,
  813. // total: res.data.newpointmap.fd_y_ycdl < 0 ? 0 : res.data.newpointmap.fd_y_ycdl * 1.5,
  814. // }
  815. // ],
  816. // [
  817. // {
  818. // name: "实际电量",
  819. // value: res.data.newpointmap.fd_y_fdl < 0 ? 0 : res.data.newpointmap.fd_y_fdl,
  820. // color: 0,
  821. // total: res.data.newpointmap.fd_y_jhfdl < 0 ? 0 : res.data.newpointmap.fd_y_jhfdl,
  822. // }
  823. // ],
  824. // ]
  825. // },
  826. // {
  827. // id: 3,
  828. // type: "风电年发电量",
  829. // data: [
  830. // [
  831. // {
  832. // name: "预测电量",
  833. // value: res.data.newpointmap.fd_n_ycdl < 0 ? 0 : res.data.newpointmap.fd_n_ycdl,
  834. // color: 1,
  835. // total: res.data.newpointmap.fd_n_ycdl < 0 ? 0 : res.data.newpointmap.fd_n_ycdl * 1.5,
  836. // }
  837. // ],
  838. // [
  839. // {
  840. // name: "实际电量",
  841. // value: res.data.newpointmap.fd_n_fdl < 0 ? 0 : res.data.newpointmap.fd_n_fdl,
  842. // color: 0,
  843. // total: res.data.newpointmap.fd_n_jhfdl < 0 ? 0 : res.data.newpointmap.fd_n_jhfdl,
  844. // }
  845. // ],
  846. // ]
  847. // },
  848. // ];
  849. // this.ForecastPowerNewHome_gf = [
  850. // {
  851. // id: 1,
  852. // type: "风电日发电量",
  853. // data: [
  854. // [
  855. // {
  856. // name: "预测电量",
  857. // value: res.data.newpointmap.gf_r_ycdl < 0 ? 0 : res.data.newpointmap.gf_r_ycdl,
  858. // color: 1,
  859. // total: res.data.newpointmap.gf_r_ycdl < 0 ? 0 : res.data.newpointmap.gf_r_ycdl * 1.5,
  860. // }
  861. // ],
  862. // [
  863. // {
  864. // name: "实际电量",
  865. // value: res.data.newpointmap.gf_r_fdl < 0 ? 0 : res.data.newpointmap.gf_r_fdl,
  866. // color: 0,
  867. // total: res.data.newpointmap.gf_r_ycdl < 0 ? 0 : res.data.newpointmap.gf_r_ycdl,
  868. // }
  869. // ],
  870. // ]
  871. // },
  872. // {
  873. // id: 2,
  874. // type: "风电月发电量",
  875. // data: [
  876. // [
  877. // {
  878. // name: "预测电量",
  879. // value: res.data.newpointmap.gf_y_ycdl < 0 ? 0 : res.data.newpointmap.gf_y_ycdl,
  880. // color: 1,
  881. // total: res.data.newpointmap.gf_y_ycdl < 0 ? 0 : res.data.newpointmap.gf_y_ycdl * 1.5,
  882. // }
  883. // ],
  884. // [
  885. // {
  886. // name: "实际电量",
  887. // value: res.data.newpointmap.gf_y_fdl < 0 ? 0 : res.data.newpointmap.gf_y_fdl,
  888. // color: 0,
  889. // total: res.data.newpointmap.gf_y_jhfdl < 0 ? 0 : res.data.newpointmap.gf_y_jhfdl,
  890. // }
  891. // ],
  892. // ]
  893. // },
  894. // {
  895. // id: 3,
  896. // type: "风电年发电量",
  897. // data: [
  898. // [
  899. // {
  900. // name: "预测电量",
  901. // value: res.data.newpointmap.gf_n_ycdl < 0 ? 0 : res.data.newpointmap.gf_n_ycdl,
  902. // color: 1,
  903. // total: res.data.newpointmap.gf_n_ycdl < 0 ? 0 : res.data.newpointmap.gf_n_ycdl * 1.5,
  904. // }
  905. // ],
  906. // [
  907. // {
  908. // name: "实际电量",
  909. // value: res.data.newpointmap.gf_n_fdl < 0 ? 0 : res.data.newpointmap.gf_n_fdl,
  910. // color: 0,
  911. // total: res.data.newpointmap.gf_n_jhfdl < 0 ? 0 : res.data.newpointmap.gf_n_jhfdl,
  912. // }
  913. // ],
  914. // ]
  915. // },
  916. // ];
  917. this.ForecastPowerNewHome_fc = [
  918. [{
  919. name: "日发电量",
  920. value: res.data.newpointmap ? res.data.newpointmap.fd_r_fdl < 0 ? 0 : res.data.newpointmap.fd_r_fdl : 0,
  921. color: 1,
  922. total: res.data.newpointmap ? res.data.newpointmap.fd_r_ycdl < 0 ? 0 : res.data.newpointmap.fd_r_ycdl : 0,
  923. }],
  924. [{
  925. name: "月发电量",
  926. value: res.data.newpointmap ? res.data.newpointmap.fd_y_sjfdl < 0 ? 0 : res.data.newpointmap.fd_y_sjfdl : 0,
  927. color: 1,
  928. total: res.data.newpointmap ? res.data.newpointmap.fd_y_ycdl < 0 ? 0 : res.data.newpointmap.fd_y_ycdl : 0,
  929. }],
  930. [{
  931. name: "年发电量",
  932. value: res.data.newpointmap ? res.data.newpointmap.fd_n_sjfdl < 0 ? 0 : res.data.newpointmap.fd_n_sjfdl : 0,
  933. color: 0,
  934. total: res.data.newpointmap ? res.data.newpointmap.fd_n_ycdl < 0 ? 0 : res.data.newpointmap.fd_n_ycdl : 0,
  935. }],
  936. ]
  937. this.ForecastPowerNewHome_gf = [
  938. [{
  939. name: "日发电量",
  940. value: res.data.newpointmap ? res.data.newpointmap.gf_r_fdl < 0 ? 0 : res.data.newpointmap.gf_r_fdl : 0,
  941. color: 1,
  942. total: res.data.newpointmap ? res.data.newpointmap.gf_r_ycdl < 0 ? 0 : res.data.newpointmap.gf_r_ycdl : 0,
  943. }],
  944. [{
  945. name: "月发电量",
  946. value: res.data.newpointmap ? res.data.newpointmap.gf_y_sjfdl < 0 ? 0 : res.data.newpointmap.gf_y_sjfdl : 0,
  947. color: 1,
  948. total: res.data.newpointmap ? res.data.newpointmap.gf_y_ycdl < 0 ? 0 : res.data.newpointmap.gf_y_ycdl : 0,
  949. }],
  950. [{
  951. name: "年发电量",
  952. value: res.data.newpointmap ? res.data.newpointmap.gf_n_sjfdl < 0 ? 0 : res.data.newpointmap.gf_n_sjfdl : 0,
  953. color: 0,
  954. total: res.data.newpointmap ? res.data.newpointmap.gf_n_ycdl < 0 ? 0 : res.data.newpointmap.gf_n_ycdl : 0,
  955. }],
  956. ]
  957. this.ForecastPower = [
  958. [
  959. {
  960. name: "日发电量",
  961. value: res.data.jczbmap.rfdl < 0 ? 0 : res.data.jczbmap.rfdl,
  962. color: 0,
  963. total:
  964. (res.data.jczbmap.rycfdl >= res.data.jczbmap.rfdl) ? (res.data.jczbmap.rycfdl + 100) : res.data.jczbmap.rfdl + 100,
  965. }
  966. ],
  967. [
  968. {
  969. name: "月发电量",
  970. value: res.data.newpointmap.fd_y_sjfdl < 0 ? 0 : res.data.newpointmap.fd_y_sjfdl,
  971. color: 1,
  972. total:
  973. (res.data.newpointmap.yycfdl >= res.data.newpointmap.fd_y_sjfdl) ? (res.data.newpointmap.yycfdl + 200) < 0 ? 100 : (res.data.newpointmap.yycfdl + 200) : (res.data.newpointmap.fd_y_sjfdl + 200) < 0 ? 100 : (res.data.newpointmap.fd_y_sjfdl + 200),
  974. }
  975. ],
  976. [{
  977. name: "年发电量",
  978. value: res.data.newpointmap.fd_n_sjfdl < 0 ? 0 : res.data.newpointmap.fd_n_sjfdl,
  979. color: 0,
  980. total: (res.data.newpointmap.nycfdl >= res.data.newpointmap.fd_n_sjfdl) ? (res.data.newpointmap.nycfdl < 0) ? 100 : res.data.newpointmap.nycfdl : (res.data.newpointmap.fd_n_sjfdl < 0) ? 100 : (res.data.newpointmap.fd_n_sjfdl + 200),
  981. }],
  982. ];
  983. }
  984. });
  985. },
  986. // 点击地图展示类型
  987. changeShowType(wpId, planBtnName) {
  988. if (
  989. planBtnName === "电站"
  990. ) {
  991. this.PowertrendYAxises = [
  992. {
  993. name: "功率",
  994. min: 0,
  995. max: null,
  996. unit: "(万kWh)",
  997. position: "left",
  998. },
  999. {
  1000. name: "日照",
  1001. min: 0,
  1002. max: 25,
  1003. unit: "(W/㎡)",
  1004. position: "right",
  1005. },
  1006. ];
  1007. } else {
  1008. this.PowertrendYAxises = [
  1009. {
  1010. name: "功率",
  1011. min: 0,
  1012. max: null,
  1013. unit: "(万kWh)",
  1014. position: "left",
  1015. },
  1016. {
  1017. name: "风速",
  1018. min: 0,
  1019. max: 25,
  1020. unit: "(m/s)",
  1021. position: "right",
  1022. },
  1023. ];
  1024. }
  1025. this.wpName = planBtnName ? planBtnName : this.wpName;
  1026. this.planBtnName = planBtnName ? planBtnName : this.planBtnName;
  1027. this.jczbmap = {};
  1028. clearInterval(this.timmer);
  1029. this.timmer = null;
  1030. this.wpId = wpId ? wpId : this.wpId;
  1031. // console.log(wpId);
  1032. // console.log(this.wpId);
  1033. // console.log("***********");
  1034. this.requestData(false);
  1035. this.timmer = setInterval(() => {
  1036. this.requestData(false);
  1037. }, this.$store.state.websocketTimeSec);
  1038. },
  1039. changeShowTypes(wpId, planBtnName) {
  1040. this.historyWpId = wpId;
  1041. this.historyPlanBtnName = planBtnName;
  1042. this.changeShowType(wpId, planBtnName);
  1043. },
  1044. changeShowBackType(wpId, planBtnName) {
  1045. this.historyWpId = wpId;
  1046. this.historyPlanBtnName = planBtnName;
  1047. this.changeShowType(this.historyWpId, this.historyPlanBtnName);
  1048. },
  1049. currentActiveTab(activeTab,penetrateType,wpId) {
  1050. this.activeTab = activeTab
  1051. if(penetrateType === 3){
  1052. this.getData(wpId)
  1053. }
  1054. },
  1055. // 点击安全天数下的场站按钮重置数据
  1056. onBackStation(wpId) {
  1057. this.wpId = wpId
  1058. // if (this.wpId.indexOf("FDC") !== -1) {
  1059. // clearInterval(this.timmer);
  1060. // this.timmer = null;
  1061. // this.wpId = this.wpId.substring(0, this.wpId.indexOf("0")) + "_FDC";
  1062. // this.requestData(false);
  1063. // this.timmer = setInterval(() => {
  1064. // this.requestData(false);
  1065. // }, this.$store.state.websocketTimeSec);
  1066. // }
  1067. },
  1068. showForecastBox(data) {
  1069. this.dialogTitle = data;
  1070. api
  1071. .forecastwindspeedInfo({
  1072. wpId: this.wpId,
  1073. })
  1074. .then((res) => {
  1075. this.dialogData = res.data;
  1076. this.dialogType = "table";
  1077. this.dialogShow = true;
  1078. });
  1079. },
  1080. // 显示功率复核图表
  1081. showPowerChart(res) {
  1082. this.dialogTitle = res.dialogTitle;
  1083. this.dialogType = res.dialogType;
  1084. let hour = this.nowTime.split(":")[0];
  1085. let minute =
  1086. this.nowTime.split(":")[1] < 30 ? (minute = 1) : (minute = 2);
  1087. let valueLength = hour * 2 + 1 + minute;
  1088. if (res.data.value) {
  1089. res.data.value.forEach((ele, index) => {
  1090. if (this.wpId === "0") {
  1091. ele.title.indexOf("电场") !== -1
  1092. ? (ele.title += "[风速]")
  1093. : ele.title;
  1094. ele.title.indexOf("电站") !== -1
  1095. ? (ele.title += "[日照]")
  1096. : ele.title;
  1097. }
  1098. ele.value.splice(valueLength, 48);
  1099. });
  1100. } else {
  1101. res.data.forEach((ele, index) => {
  1102. if (this.wpId === "0") {
  1103. ele.title.indexOf("电场") !== -1
  1104. ? (ele.title += "[风速]")
  1105. : ele.title;
  1106. ele.title.indexOf("电站") !== -1
  1107. ? (ele.title += "[日照]")
  1108. : ele.title;
  1109. }
  1110. ele.value.splice(valueLength, 48);
  1111. });
  1112. }
  1113. this.powerLineChartData = res.data.value;
  1114. if (res.dialogTitle === "详情") {
  1115. this.powerLineChartYAxises = [
  1116. {
  1117. min: 0,
  1118. name: "风速",
  1119. position: "left",
  1120. unit: "(m/s)",
  1121. },
  1122. {
  1123. min: 0,
  1124. name: "日照",
  1125. position: "right",
  1126. unit: "(w/㎡)",
  1127. },
  1128. ];
  1129. } else if (res.dialogTitle === "风速详情") {
  1130. this.powerLineChartYAxises = [
  1131. {
  1132. min: 0,
  1133. name: "风速",
  1134. position: "left",
  1135. unit: "(m/s)",
  1136. },
  1137. ];
  1138. } else if (res.dialogTitle === "日照强度详情") {
  1139. this.powerLineChartYAxises = [
  1140. {
  1141. min: 0,
  1142. name: "日照",
  1143. position: "right",
  1144. unit: "(w/㎡)",
  1145. },
  1146. ];
  1147. } else {
  1148. this.powerLineChartYAxises = [
  1149. {
  1150. min: 0,
  1151. name: "功率",
  1152. position: "left",
  1153. unit: "(万kWh)",
  1154. },
  1155. ];
  1156. }
  1157. this.dialogShow = true;
  1158. },
  1159. // 显示计划电量完成情况图表
  1160. showDoneChart(res) {
  1161. this.dialogTitle = res.dialogTitle;
  1162. this.dialogType = res.dialogType;
  1163. this.doneLineChartData = res.data;
  1164. this.doneLineChartData.units[0] = this.doneLineChartData.units[0]
  1165. ? this.doneLineChartData.units[0]
  1166. : "(万kWh)";
  1167. this.dialogShow = true;
  1168. },
  1169. // 地图进入事件
  1170. onEnter() {
  1171. this.powerplanShowSingle = true;
  1172. },
  1173. // 地图退出事件
  1174. onBack() {
  1175. this.powerplanShowSingle = false;
  1176. },
  1177. getDAY() {
  1178. let curDate = new Date();
  1179. let curMonth = curDate.getMonth(); //当前月份 需要加1
  1180. curDate.setMonth(curMonth + 1);
  1181. curDate.setDate(0); //关键
  1182. curDate.getDate(); //计算的当月总天数
  1183. return curDate.getDate() - new Date().getDate(); // new Date().getDate()当前几号  总天数-当前即可
  1184. },
  1185. },
  1186. created() {
  1187. let that = this;
  1188. that.$nextTick(() => {
  1189. that.getData();
  1190. that.requestData(false);
  1191. });
  1192. //
  1193. that.nowTime = new Date().formatDate("hh:mm:ss");
  1194. that.$nextTick(() => {
  1195. that.requestData(false);
  1196. // this.getCharts();
  1197. that.timmer = setInterval(() => {
  1198. that.requestData(false);
  1199. }, that.$store.state.websocketTimeSec);
  1200. that.timmer2 = setInterval(() => {
  1201. that.nowTime = new Date().formatDate("hh:mm:ss");
  1202. }, 3000);
  1203. // that.timmer3 = setInterval(() => {
  1204. // this.getCharts();
  1205. // }, 360000);
  1206. });
  1207. },
  1208. unmounted() {
  1209. clearInterval(this.timmer);
  1210. clearInterval(this.timmer2);
  1211. // clearInterval(this.timmer3);
  1212. this.timmer = null;
  1213. this.timmer2 = null;
  1214. // this.timmer3 = null;
  1215. },
  1216. };
  1217. </script>
  1218. <style lang="less" >
  1219. .top-distance {
  1220. top: 97px !important;
  1221. }
  1222. .home {
  1223. width: 100%;
  1224. height: 100%;
  1225. background: url(../../assets/newHome_h.png);
  1226. background-repeat: round;
  1227. .infos-echarts {
  1228. padding: 10px;
  1229. background-color: rgba(3, 5, 9, 0.5);
  1230. }
  1231. .model-bg-new-right {
  1232. width: 100%;
  1233. min-height: 135px;
  1234. background-color: rgba(3, 5, 9, 0.5);
  1235. border-radius: 6px;
  1236. display: flex;
  1237. flex-direction: column;
  1238. // padding: 1% 5%;
  1239. .power-charts {
  1240. display: flex;
  1241. flex-direction: row;
  1242. align-items: flex-end;
  1243. width: 100%;
  1244. margin-top: 10px;
  1245. .power-name-old {
  1246. width: 80px;
  1247. margin-bottom: 10px;
  1248. color: #999999;
  1249. }
  1250. .power-name {
  1251. width: 80px;
  1252. margin-bottom: 20px;
  1253. color: #999999;
  1254. }
  1255. .power-item {
  1256. display: flex;
  1257. flex-direction: column;
  1258. width: 360px;
  1259. .power-value-old {
  1260. display: flex;
  1261. flex-direction: row;
  1262. align-items: center;
  1263. justify-content: space-between;
  1264. margin-bottom: -12px;
  1265. padding: 0 15px;
  1266. .green-value {
  1267. color: #05BB4C;
  1268. }
  1269. .purple-value {
  1270. color: #4B55AE;
  1271. }
  1272. }
  1273. .power-value {
  1274. font-size: 12px;
  1275. margin-bottom: -31px;
  1276. font-family: Bicubik;
  1277. margin-left: 255px;
  1278. span:nth-child(1) {
  1279. width: 5px;
  1280. height: 5px;
  1281. border-radius: 5px;
  1282. display: inline-block;
  1283. background-color: #fff;
  1284. margin-right: 5px;
  1285. }
  1286. .green-value {
  1287. color: #05BB4C;
  1288. }
  1289. .purple-value {
  1290. color: #4B55AE;
  1291. }
  1292. }
  1293. }
  1294. }
  1295. .infos {
  1296. display: flex;
  1297. flex-direction: column;
  1298. width: 50%;
  1299. height: 100%;
  1300. width: 100%;
  1301. .titles {
  1302. display: flex;
  1303. flex-direction: row;
  1304. align-items: center;
  1305. justify-content: space-between;
  1306. // padding: 0 15px;
  1307. height: 50%;
  1308. .amount {
  1309. display: flex;
  1310. flex-direction: row;
  1311. align-items: center;
  1312. .amount-image {
  1313. margin-left: -42px;
  1314. }
  1315. .amount-nums {
  1316. font-size: 12px;
  1317. color: #7D838C;
  1318. margin-left: 10px;
  1319. display: flex;
  1320. flex-direction: row;
  1321. align-items: baseline;
  1322. .num-item {
  1323. font-size: 20px;
  1324. color: #ffffff;
  1325. margin-right: 5px;
  1326. }
  1327. }
  1328. }
  1329. .info-nums {
  1330. display: flex;
  1331. align-items: baseline;
  1332. font-size: 14px;
  1333. color: #7D838C;
  1334. .nums {
  1335. font-size: 20px;
  1336. color: #FFFFFF;
  1337. margin: 0 5px;
  1338. }
  1339. }
  1340. }
  1341. .tabSwitchover{
  1342. // height: 23px;
  1343. margin-top: 5px;
  1344. .tabSwitchover-item {
  1345. width: 42px;
  1346. line-height: 23px;
  1347. text-align: center;
  1348. color: #B3B3B3;
  1349. float: left;
  1350. cursor: pointer;
  1351. }
  1352. .tab-active {
  1353. border-bottom: 1px solid rgb(39, 219, 54);
  1354. background: linear-gradient(to top, rgba(5, 187, 76, 0.5), rgba(5, 187, 76, 0));
  1355. }
  1356. .unit{
  1357. text-align: right;
  1358. color: #B1B1B1;
  1359. font-size: 12px;
  1360. // float: right;
  1361. }
  1362. }
  1363. .types {
  1364. display: flex;
  1365. flex-direction: row;
  1366. align-items: center;
  1367. height: 50%;
  1368. width: 100%;
  1369. margin-top: 15px;
  1370. padding-bottom: 10px;
  1371. border-bottom: 1px solid #302c2c;
  1372. .type-model {
  1373. display: flex;
  1374. flex-direction: column;
  1375. justify-content: space-between;
  1376. align-items: center;
  1377. width: 16%;
  1378. // height: 75%;
  1379. font-size: 16px;
  1380. .type-name {
  1381. font-size: 14px;
  1382. font-family: Agency FB;
  1383. margin-bottom: 10px;
  1384. }
  1385. .type-num {
  1386. height: 15px;
  1387. }
  1388. }
  1389. }
  1390. }
  1391. }
  1392. .base-info {
  1393. height: 186px;
  1394. background: rgba(3, 5, 9, 0.5);
  1395. position: absolute;
  1396. bottom: 4%;
  1397. left: 43px;
  1398. display: flex;
  1399. flex-direction: row;
  1400. border-radius: 6px;
  1401. .charts {
  1402. width: 100%;
  1403. height: 100%;
  1404. position: relative;
  1405. margin-left: 1%;
  1406. .energy-title {
  1407. // margin-left: 2%;
  1408. margin-top: 1%;
  1409. font-size: 16px;
  1410. color: #fff;
  1411. }
  1412. .dots {
  1413. width: 0.185vh;
  1414. height: 0.185vh;
  1415. border-radius: 50%;
  1416. background-color: @write;
  1417. position: absolute;
  1418. &.left {
  1419. left: 0.37vh;
  1420. }
  1421. &.top {
  1422. top: 0.37vh;
  1423. }
  1424. }
  1425. .charts-item {
  1426. // margin-left: 5%;
  1427. margin-top: 10px;
  1428. }
  1429. }
  1430. }
  1431. .model-bg-new {
  1432. width: 100%;
  1433. min-height: 135px;
  1434. background-color: rgba(3, 5, 9, 0.5);
  1435. border-radius: 6px;
  1436. display: flex;
  1437. flex-direction: column;
  1438. padding: 10px;
  1439. .titles {
  1440. height: 45px;
  1441. border-bottom: 1px solid #333333;
  1442. display: flex;
  1443. flex-direction: row;
  1444. align-items: center;
  1445. justify-content: space-between;
  1446. .name {
  1447. font-size: 16px;
  1448. color: #FFFFFF;
  1449. }
  1450. .unit {
  1451. font-size: 12px;
  1452. color: #B1B1B1;
  1453. }
  1454. }
  1455. .save {
  1456. display: flex;
  1457. flex-direction: row;
  1458. align-items: center;
  1459. width: 100%;
  1460. margin: 17px 0;
  1461. .save-item {
  1462. width: 25%;
  1463. display: flex;
  1464. flex-direction: column;
  1465. align-items: center;
  1466. .kind {
  1467. width: 20px;
  1468. height: 22px;
  1469. .kind-img {
  1470. width: 100%;
  1471. height: 100%;
  1472. }
  1473. }
  1474. .save-value {
  1475. font-size: 16px;
  1476. color: #FFFFFF;
  1477. margin: 10px 0;
  1478. }
  1479. .save-name {
  1480. font-size: 12px;
  1481. color: #B3B3B3;
  1482. }
  1483. }
  1484. }
  1485. }
  1486. .model-bg {
  1487. width: 100%;
  1488. min-height: 135px;
  1489. background-color: rgba(3, 5, 9, 0.5);
  1490. border-radius: 6px;
  1491. display: flex;
  1492. flex-direction: column;
  1493. padding: 1% 5%;
  1494. .titles {
  1495. height: 45px;
  1496. border-bottom: 1px solid #333333;
  1497. display: flex;
  1498. flex-direction: row;
  1499. align-items: center;
  1500. justify-content: space-between;
  1501. .name {
  1502. font-size: 16px;
  1503. color: #FFFFFF;
  1504. }
  1505. .unit {
  1506. font-size: 12px;
  1507. color: #B1B1B1;
  1508. }
  1509. }
  1510. .save {
  1511. display: flex;
  1512. flex-direction: row;
  1513. align-items: center;
  1514. width: 100%;
  1515. margin: 17px 0;
  1516. .save-item {
  1517. width: 25%;
  1518. display: flex;
  1519. flex-direction: column;
  1520. align-items: center;
  1521. .kind {
  1522. width: 20px;
  1523. height: 22px;
  1524. .kind-img {
  1525. width: 100%;
  1526. height: 100%;
  1527. }
  1528. }
  1529. .save-value {
  1530. font-size: 16px;
  1531. color: #FFFFFF;
  1532. margin: 10px 0;
  1533. }
  1534. .save-name {
  1535. font-size: 12px;
  1536. color: #B3B3B3;
  1537. }
  1538. }
  1539. }
  1540. }
  1541. }
  1542. .home_light {
  1543. width: 100%;
  1544. height: 100%;
  1545. background: url(../../assets/newHome_b.png);
  1546. background-repeat: round;
  1547. .model-bg-new-right {
  1548. width: 100%;
  1549. min-height: 135px;
  1550. background-color: rgba(83, 98, 104, 0.2);
  1551. border-radius: 6px;
  1552. display: flex;
  1553. flex-direction: column;
  1554. // padding: 1% 5%;
  1555. .infos {
  1556. display: flex;
  1557. flex-direction: column;
  1558. width: 50%;
  1559. height: 100%;
  1560. width: 100%;
  1561. .titles {
  1562. display: flex;
  1563. flex-direction: row;
  1564. align-items: center;
  1565. justify-content: space-between;
  1566. // padding: 0 15px;
  1567. height: 50%;
  1568. .amount {
  1569. display: flex;
  1570. flex-direction: row;
  1571. align-items: center;
  1572. .amount-image {
  1573. margin-left: -42px;
  1574. }
  1575. .amount-nums {
  1576. font-size: 12px;
  1577. color: #7D838C;
  1578. margin-left: 10px;
  1579. display: flex;
  1580. flex-direction: row;
  1581. align-items: baseline;
  1582. .num-item {
  1583. font-size: 20px;
  1584. color: #ffffff;
  1585. margin-right: 5px;
  1586. }
  1587. }
  1588. }
  1589. .info-nums {
  1590. display: flex;
  1591. align-items: baseline;
  1592. font-size: 14px;
  1593. color: #7D838C;
  1594. .nums {
  1595. font-size: 20px;
  1596. color: #FFFFFF;
  1597. margin: 0 5px;
  1598. }
  1599. }
  1600. }
  1601. .tabSwitchover{
  1602. // height: 23px;
  1603. margin-top: 5px;
  1604. .tabSwitchover-item {
  1605. width: 42px;
  1606. line-height: 23px;
  1607. text-align: center;
  1608. color: #000;
  1609. float: left;
  1610. cursor: pointer;
  1611. }
  1612. .tab-active {
  1613. border-bottom: 1px solid rgb(39, 219, 54);
  1614. background: linear-gradient(to top, rgba(5, 187, 76, 0.5), rgba(5, 187, 76, 0));
  1615. }
  1616. .unit{
  1617. height: 35px;
  1618. line-height: 35px;
  1619. color: #000;
  1620. font-size: 12px;
  1621. // float: right;
  1622. }
  1623. }
  1624. .types {
  1625. display: flex;
  1626. flex-direction: row;
  1627. align-items: center;
  1628. height: 50%;
  1629. width: 100%;
  1630. margin-top: 15px;
  1631. padding-bottom: 10px;
  1632. border-bottom: 1px solid #302c2c;
  1633. .type-model {
  1634. display: flex;
  1635. flex-direction: column;
  1636. justify-content: space-between;
  1637. align-items: center;
  1638. width: 16%;
  1639. // height: 75%;
  1640. font-size: 16px;
  1641. .type-name {
  1642. font-size: 14px;
  1643. font-family: Agency FB;
  1644. margin-bottom: 10px;
  1645. }
  1646. .type-num {
  1647. height: 15px;
  1648. }
  1649. }
  1650. }
  1651. }
  1652. // .power-charts {
  1653. // display: flex;
  1654. // flex-direction: row;
  1655. // align-items: flex-end;
  1656. // width: 100%;
  1657. // margin-top: 10px;
  1658. // .power-name {
  1659. // width: 80px;
  1660. // margin-bottom: 10px;
  1661. // color: #000;
  1662. // }
  1663. // .power-item {
  1664. // display: flex;
  1665. // flex-direction: column;
  1666. // width: 300px;
  1667. // .power-value {
  1668. // border: 1px solid #fff;
  1669. // margin-bottom: -12px;
  1670. // padding: 0 15px;
  1671. // .green-value {
  1672. // color: #05BB4C;
  1673. // }
  1674. // .purple-value {
  1675. // color: #4B55AE;
  1676. // }
  1677. // }
  1678. // }
  1679. // }
  1680. }
  1681. .base-info {
  1682. height: 186px;
  1683. background: rgba(83, 98, 104, 0.2);
  1684. position: absolute;
  1685. bottom: 4%;
  1686. left: 117px;
  1687. display: flex;
  1688. flex-direction: row;
  1689. border-radius: 6px;
  1690. .charts {
  1691. width: 100%;
  1692. height: 100%;
  1693. position: relative;
  1694. margin-left: 1%;
  1695. .energy-title {
  1696. // margin-left: 2%;
  1697. margin-top: 1%;
  1698. font-size: 16px;
  1699. color: #000;
  1700. }
  1701. .dots {
  1702. width: 0.185vh;
  1703. height: 0.185vh;
  1704. border-radius: 50%;
  1705. background-color: @write;
  1706. position: absolute;
  1707. &.left {
  1708. left: 0.37vh;
  1709. }
  1710. &.top {
  1711. top: 0.37vh;
  1712. }
  1713. }
  1714. .charts-item {
  1715. // margin-left: 5%;
  1716. margin-top: 10px;
  1717. }
  1718. }
  1719. }
  1720. .model-bg-new {
  1721. width: 100%;
  1722. min-height: 135px;
  1723. background-color: #D1D6D9;
  1724. border-radius: 6px;
  1725. display: flex;
  1726. flex-direction: column;
  1727. padding: 1% 5%;
  1728. .titles {
  1729. height: 45px;
  1730. border-bottom: 1px solid #333333;
  1731. display: flex;
  1732. flex-direction: row;
  1733. align-items: center;
  1734. justify-content: space-between;
  1735. .name {
  1736. font-size: 16px;
  1737. color: #000;
  1738. }
  1739. .unit {
  1740. font-size: 12px;
  1741. color: #000;
  1742. }
  1743. }
  1744. .save {
  1745. display: flex;
  1746. flex-direction: row;
  1747. align-items: center;
  1748. width: 100%;
  1749. margin: 17px 0;
  1750. .save-item {
  1751. width: 25%;
  1752. display: flex;
  1753. flex-direction: column;
  1754. align-items: center;
  1755. .kind {
  1756. width: 20px;
  1757. height: 22px;
  1758. .kind-img {
  1759. width: 100%;
  1760. height: 100%;
  1761. }
  1762. }
  1763. .save-value {
  1764. font-size: 16px;
  1765. color: #FFFFFF;
  1766. margin: 10px 0;
  1767. }
  1768. .save-name {
  1769. font-size: 12px;
  1770. color: #B3B3B3;
  1771. }
  1772. }
  1773. }
  1774. }
  1775. .model-bg {
  1776. width: 100%;
  1777. min-height: 135px;
  1778. background-color: rgba(83, 98, 104, 0.2);
  1779. border-radius: 6px;
  1780. display: flex;
  1781. flex-direction: column;
  1782. padding: 1% 5%;
  1783. .titles {
  1784. height: 45px;
  1785. border-bottom: 1px solid #333333;
  1786. display: flex;
  1787. flex-direction: row;
  1788. align-items: center;
  1789. justify-content: space-between;
  1790. .name {
  1791. font-size: 16px;
  1792. color: #000000;
  1793. }
  1794. .unit {
  1795. font-size: 12px;
  1796. color: #606769;
  1797. }
  1798. }
  1799. .save {
  1800. display: flex;
  1801. flex-direction: row;
  1802. align-items: center;
  1803. width: 100%;
  1804. margin: 17px 0;
  1805. .save-item {
  1806. width: 25%;
  1807. display: flex;
  1808. flex-direction: column;
  1809. align-items: center;
  1810. .kind {
  1811. width: 20px;
  1812. height: 22px;
  1813. .kind-img {
  1814. width: 100%;
  1815. height: 100%;
  1816. }
  1817. }
  1818. .save-value {
  1819. font-size: 16px;
  1820. color: #FFFFFF;
  1821. margin: 10px 0;
  1822. }
  1823. .save-name {
  1824. font-size: 12px;
  1825. color: #B3B3B3;
  1826. }
  1827. }
  1828. }
  1829. }
  1830. }
  1831. // .right {
  1832. // width: 400px;
  1833. // height: 100px;
  1834. // position: absolute;
  1835. // right: 25px;
  1836. // top: 60px;
  1837. // z-index: 2;
  1838. // margin-top: 20px;
  1839. // }
  1840. .right {
  1841. width: 450px;
  1842. height: 100px;
  1843. position: absolute;
  1844. right: 25px;
  1845. top: 25px;
  1846. z-index: 2;
  1847. margin-top: 90px;
  1848. }
  1849. .com-panel {
  1850. height: 100%;
  1851. .panel-body {
  1852. height: calc(100% - 32px);
  1853. }
  1854. }
  1855. .top-mid-panel {
  1856. flex: 1 1 auto;
  1857. height: 100%;
  1858. }
  1859. .model-item {
  1860. display: flex;
  1861. flex-direction: row;
  1862. justify-content: space-between;
  1863. align-items: center;
  1864. }
  1865. .infos {
  1866. display: flex;
  1867. flex-direction: column;
  1868. width: 50%;
  1869. height: 100%;
  1870. width: 370px;
  1871. padding: 10px;
  1872. .titles {
  1873. display: flex;
  1874. flex-direction: row;
  1875. align-items: center;
  1876. justify-content: space-between;
  1877. padding: 0 15px;
  1878. height: 50%;
  1879. .amount {
  1880. display: flex;
  1881. flex-direction: row;
  1882. align-items: center;
  1883. .amount-image {
  1884. margin-left: -42px;
  1885. }
  1886. .amount-nums {
  1887. font-size: 12px;
  1888. color: #7D838C;
  1889. margin-left: 10px;
  1890. display: flex;
  1891. flex-direction: row;
  1892. align-items: baseline;
  1893. .num-item {
  1894. font-size: 20px;
  1895. color: #ffffff;
  1896. margin-right: 5px;
  1897. }
  1898. }
  1899. }
  1900. .info-nums {
  1901. display: flex;
  1902. align-items: baseline;
  1903. font-size: 14px;
  1904. color: #7D838C;
  1905. .nums {
  1906. font-size: 20px;
  1907. color: #FFFFFF;
  1908. margin: 0 5px;
  1909. }
  1910. }
  1911. }
  1912. .types {
  1913. display: flex;
  1914. flex-direction: row;
  1915. align-items: center;
  1916. height: 50%;
  1917. width: 100%;
  1918. .type-model {
  1919. display: flex;
  1920. flex-direction: column;
  1921. justify-content: space-between;
  1922. align-items: center;
  1923. width: 14%;
  1924. height: 75%;
  1925. font-size: 16px;
  1926. .type-name {
  1927. font-size: 14px;
  1928. }
  1929. }
  1930. }
  1931. }
  1932. .fengji-icon {
  1933. border-radius: 50%;
  1934. width: 49px;
  1935. height: 49px;
  1936. box-shadow: inset 1.5px -1px 1px 0px @green;
  1937. animation: fadenum 5s linear infinite;
  1938. @keyframes fadenum {
  1939. 100% {
  1940. transform: rotate(360deg);
  1941. }
  1942. }
  1943. svg {
  1944. width: 25px;
  1945. height: 22px;
  1946. }
  1947. }
  1948. .jnjp-icon {
  1949. svg {
  1950. width: 25px;
  1951. height: 25px;
  1952. }
  1953. }
  1954. .jnjp-icon1 {
  1955. margin-top: -10px;
  1956. svg {
  1957. width: 40px;
  1958. height: 40px;
  1959. }
  1960. }
  1961. .power-charts {
  1962. display: flex;
  1963. flex-direction: row;
  1964. align-items: flex-end;
  1965. width: 100%;
  1966. margin-top: 10px;
  1967. .power-name-old {
  1968. width: 80px;
  1969. margin-bottom: 10px;
  1970. color: #7a8385;
  1971. }
  1972. .power-name {
  1973. width: 80px;
  1974. margin-bottom: 20px;
  1975. color: #000;
  1976. }
  1977. .power-item {
  1978. display: flex;
  1979. flex-direction: column;
  1980. width: 360px;
  1981. .power-value-old {
  1982. display: flex;
  1983. flex-direction: row;
  1984. align-items: center;
  1985. justify-content: space-between;
  1986. margin-bottom: -12px;
  1987. padding: 0 15px;
  1988. .green-value {
  1989. color: #05BB4C;
  1990. }
  1991. .purple-value {
  1992. color: #4B55AE;
  1993. }
  1994. }
  1995. .power-value {
  1996. font-size: 12px;
  1997. margin-bottom: -31px;
  1998. font-family: Bicubik;
  1999. margin-left: 255px;
  2000. span:nth-child(1) {
  2001. width: 5px;
  2002. height: 5px;
  2003. border-radius: 5px;
  2004. display: inline-block;
  2005. background-color: #fff;
  2006. margin-right: 5px;
  2007. }
  2008. .green-value {
  2009. color: #05BB4C;
  2010. }
  2011. .purple-value {
  2012. color: #4B55AE;
  2013. }
  2014. }
  2015. }
  2016. }
  2017. // .power-charts {
  2018. // display: flex;
  2019. // flex-direction: row;
  2020. // align-items: flex-end;
  2021. // width: 100%;
  2022. // margin-top: 10px;
  2023. // .power-name {
  2024. // width: 80px;
  2025. // margin-bottom: 20px;
  2026. // color: #7a8385;
  2027. // }
  2028. // .power-item {
  2029. // display: flex;
  2030. // flex-direction: column;
  2031. // width: 300px;
  2032. // .power-value-old {
  2033. // display: flex;
  2034. // flex-direction: row;
  2035. // align-items: center;
  2036. // justify-content: space-between;
  2037. // margin-bottom: -12px;
  2038. // padding: 0 15px;
  2039. // .green-value {
  2040. // color: #05BB4C;
  2041. // }
  2042. // .purple-value {
  2043. // color: #4B55AE;
  2044. // }
  2045. // }
  2046. // .power-value {
  2047. // font-size: 12px;
  2048. // margin-bottom: -31px;
  2049. // font-family: Bicubik;
  2050. // margin-left: 255px;
  2051. // span:nth-child(1) {
  2052. // width: 5px;
  2053. // height: 5px;
  2054. // border-radius: 5px;
  2055. // display: inline-block;
  2056. // background-color: #fff;
  2057. // margin-right: 5px;
  2058. // }
  2059. // .green-value {
  2060. // color: #05BB4C;
  2061. // }
  2062. // .purple-value {
  2063. // color: #4B55AE;
  2064. // }
  2065. // }
  2066. // }
  2067. // }
  2068. </style>