Home.vue 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557
  1. <template>
  2. <div class="home">
  3. <Row type="flex" style="height: 55vh">
  4. <div class="top-left-panel">
  5. <Row type="flex" class="weather">
  6. <Col :span="24">
  7. <com-panel
  8. :title="tqmap.name || 'yc'"
  9. :sub-title="nowTime + ' 实况'"
  10. icon="fa fa-map-marker"
  11. >
  12. <weather
  13. style="cursor: pointer"
  14. :data="tqmap"
  15. @click="openWeatherDialog"
  16. />
  17. </com-panel>
  18. </Col>
  19. </Row>
  20. <Row type="flex" class="plan">
  21. <Col :span="24">
  22. <com-panel title="预测电量" sub-title="(单位:万kWh)">
  23. <list-bar-chart-2
  24. :list="ForecastPower"
  25. height="15.7407vh"
  26. @click="showForecastBox"
  27. />
  28. </com-panel>
  29. </Col>
  30. </Row>
  31. <Row type="flex" class="power">
  32. <Col :span="24">
  33. <com-panel title="功率负荷" sub-title="(单位:MW)">
  34. <power-review
  35. :data="powerData"
  36. :id="wpId"
  37. @chartClick="showPowerChart"
  38. />
  39. </com-panel>
  40. </Col>
  41. </Row>
  42. </div>
  43. <div class="top-mid-panel">
  44. <Map
  45. :wpId="wpId"
  46. :day="String(jczbmap.aqts || '---')"
  47. :data="fcmap"
  48. :xtData="xtmap"
  49. @mapClick="changeShowType"
  50. @backStation="onBackStation"
  51. ></Map>
  52. </div>
  53. <div class="top-right-panel">
  54. <Row type="flex">
  55. <Col :span="24">
  56. <com-panel title="效益提升" sub-title="(单位:万kWh)">
  57. <!-- 避免故障、提升率、降低率、风能利用率、设备可利用率、综合场用电率、存在隐患风机 -->
  58. <coulometric-analysis
  59. :bmgz="gxkmap.tjsl"
  60. :tsl="30"
  61. :jdl="gxkmap.tjl"
  62. :fnlyl="wxssmap.yfnlyl"
  63. :sbklyl="gxkmap.ysbklyl"
  64. :zhcydl="gxkmap.yzhcydl"
  65. :yhfj="gxkmap.sjtjsl"
  66. />
  67. </com-panel>
  68. </Col>
  69. </Row>
  70. <Row type="flex">
  71. <Col :span="24">
  72. <com-panel title="计划电量完成情况" sub-title="(单位:万kWh)">
  73. <power-plan
  74. :data="planData"
  75. :title="planBtnName"
  76. :showSingle="powerplanShowSingle"
  77. :id="wpId"
  78. @chartClick="showDoneChart"
  79. />
  80. </com-panel>
  81. </Col>
  82. </Row>
  83. </div>
  84. </Row>
  85. <Row type="flex" style="height: calc(40vh - 236px); margin-top: 20px">
  86. <Col :span="12">
  87. <toolbar-panel
  88. :title="
  89. planBtnName.indexOf('电站') !== -1 ||
  90. planBtnName.indexOf('光电厂') !== -1
  91. ? '日照强度'
  92. : '日发电量'
  93. "
  94. >
  95. <!-- <template v-slot:tools>
  96. <div class="tools">
  97. <div class="tool-block">
  98. <div class="legend bg-green"></div>
  99. <div class="legend-text">日发电量(单位:万kWh)</div>
  100. </div>
  101. <div class="tool-block">
  102. <div class="legend bg-purple"></div>
  103. <div class="legend-text">上网电量(单位:万kWh)</div>
  104. </div>
  105. <div class="tool-block">
  106. <div class="legend bg-orange"></div>
  107. <div class="legend-text">购网电量(单位:万kWh)</div>
  108. </div>
  109. </div>
  110. </template> -->
  111. <template v-slot:default>
  112. <!-- 日发电量 -->
  113. <multiple-bar-chart
  114. :list="DayPower.value"
  115. :units="DayPower.units"
  116. height="100%"
  117. :showLegend="true"
  118. @click="
  119. showDoneChart({
  120. data: DayPower,
  121. dialogTitle: '日发电量',
  122. dialogType: 'doneLineChart',
  123. })
  124. "
  125. />
  126. </template>
  127. </toolbar-panel>
  128. </Col>
  129. <Col :span="12">
  130. <toolbar-panel title="72小时功率趋势图">
  131. <!-- <template v-slot:tools>
  132. <div class="tools">
  133. <div class="tools">
  134. <div class="tool-block">
  135. <div class="legend long bg-green"></div>
  136. <div class="legend-text">应发功率</div>
  137. </div>
  138. <div class="tool-block">
  139. <div class="legend long bg-yellow"></div>
  140. <div class="legend-text">实发功率</div>
  141. </div>
  142. <div class="tool-block">
  143. <div class="legend long bg-purple"></div>
  144. <div class="legend-text">理论功率</div>
  145. </div>
  146. </div>
  147. </div>
  148. </template> -->
  149. <template v-slot:default>
  150. <multiple-y-line-chart-normal
  151. height="100%"
  152. :list="Powertrend"
  153. :yAxises="PowertrendYAxises"
  154. :showLegend="true"
  155. :hoverType="'axis'"
  156. @click="
  157. showPowerChart({
  158. data: Powertrend,
  159. dialogTitle: '72小时功率趋势图',
  160. dialogType: 'powerLineChart',
  161. })
  162. "
  163. />
  164. </template>
  165. </toolbar-panel>
  166. </Col>
  167. </Row>
  168. <Row type="flex" style="margin-top: 20px">
  169. <!-- 下方 table -->
  170. <Col :span="16" class="table-card-panel">
  171. <row>
  172. <Col>
  173. <com-panel>
  174. <table class="table-card">
  175. <tr class="">
  176. <td class="text gray">装机容量</td>
  177. <td class="value green">{{ jczbmap.zjrl }}</td>
  178. <td class="unit gray">MW</td>
  179. </tr>
  180. <tr class="">
  181. <td class="text gray">上网电量(日)</td>
  182. <td class="value green">{{ jczbmap.swdl }}</td>
  183. <td class="unit gray">万kWh</td>
  184. </tr>
  185. <tr class="">
  186. <td class="text gray">
  187. {{ wpId === "0" ? "减排二氧化硫" : "年运行小时" }}
  188. </td>
  189. <td class="value green">
  190. {{ wpId === "0" ? jczbmap.jpeyhl : gxkmap.nyxxs }}
  191. </td>
  192. <td class="unit gray">
  193. {{ wpId === "0" ? "万吨" : "小时" }}
  194. </td>
  195. </tr>
  196. <tr class="">
  197. <td class="text gray">
  198. {{ wpId === "0" ? "减排二氧化碳" : "年等效科利用系数" }}
  199. </td>
  200. <td class="value green">
  201. {{ wpId === "0" ? jczbmap.jpeyht : gxkmap.ndxkyss }}
  202. </td>
  203. <td class="unit gray">{{ wpId === "0" ? "万吨" : "%" }}</td>
  204. </tr>
  205. <tr class="">
  206. <td class="text gray">
  207. {{ wpId === "0" ? "节约用水" : "年故障小时" }}
  208. </td>
  209. <td class="value green">
  210. {{ wpId === "0" ? jczbmap.jys : gxkmap.ngzxs }}
  211. </td>
  212. <td class="unit gray">
  213. {{ wpId === "0" ? "万吨" : "小时" }}
  214. </td>
  215. </tr>
  216. <tr class="">
  217. <td class="text gray">
  218. {{ wpId === "0" ? "节约标煤" : "年待机小时" }}
  219. </td>
  220. <td class="value green">
  221. {{ wpId === "0" ? jczbmap.jybm : gxkmap.ndjxs }}
  222. </td>
  223. <td class="unit gray">
  224. {{ wpId === "0" ? "万吨" : "小时" }}
  225. </td>
  226. </tr>
  227. </table>
  228. </com-panel>
  229. </Col>
  230. <Col>
  231. <com-panel>
  232. <table class="table-card">
  233. <tr class="">
  234. <td class="text gray">利用小时(月)</td>
  235. <td class="value green">{{ jczbmap.ylyxs }}</td>
  236. <td class="unit gray">小时</td>
  237. </tr>
  238. <tr class="">
  239. <td class="text gray">利用小时(年)</td>
  240. <td class="value green">{{ jczbmap.nlyxs }}</td>
  241. <td class="unit gray gray">小时</td>
  242. </tr>
  243. <tr class="">
  244. <td class="text gray">等效可用系数(月)</td>
  245. <td class="value green">{{ gxkmap.ydxkyss }}</td>
  246. <td class="unit gray">%</td>
  247. </tr>
  248. <tr class="">
  249. <td class="text gray">MTBF(月)</td>
  250. <td class="value green">{{ jczbmap.mtbf }}</td>
  251. <td class="unit gray">小时</td>
  252. </tr>
  253. <tr class="">
  254. <td class="text gray">MTTR(月)</td>
  255. <td class="value green">{{ jczbmap.mttr }}</td>
  256. <td class="unit gray">小时</td>
  257. </tr>
  258. <tr class="">
  259. <td class="text gray">MTTF(月)</td>
  260. <td class="value green">{{ jczbmap.mttf }}</td>
  261. <td class="unit gray">小时</td>
  262. </tr>
  263. </table>
  264. </com-panel>
  265. </Col>
  266. <Col>
  267. <com-panel>
  268. <table class="table-card">
  269. <tr
  270. class="curP"
  271. @click="
  272. openDialog(
  273. '日发电量详情',
  274. 'genreset/findDayInfo',
  275. 'rfdl',
  276. 'table'
  277. )
  278. "
  279. >
  280. <td class="text gray">日发电量</td>
  281. <td class="value green">{{ jczbmap.rfdl }}</td>
  282. <td class="unit gray">万kWh</td>
  283. </tr>
  284. <tr
  285. class="curP"
  286. @click="
  287. openDialog(
  288. '日故障损失详情',
  289. 'genreset/findDayInfo',
  290. 'rgzssdl',
  291. 'table'
  292. )
  293. "
  294. >
  295. <td class="text gray">日故障损失电量</td>
  296. <td class="value green">{{ wxssmap.rgzssdl }}</td>
  297. <td class="unit gray">万kWh</td>
  298. </tr>
  299. <tr
  300. class="curP"
  301. @click="
  302. openDialog(
  303. '日维护损失详情',
  304. 'genreset/findDayInfo',
  305. 'rjxssdl',
  306. 'table'
  307. )
  308. "
  309. >
  310. <td class="text gray">日维护损失电量</td>
  311. <td class="value green">{{ wxssmap.rjxssdl }}</td>
  312. <td class="unit gray">万kWh</td>
  313. </tr>
  314. <tr
  315. class="curP"
  316. @click="
  317. openDialog(
  318. '日限电损失详情',
  319. 'genreset/findDayInfo',
  320. 'rxdssdl',
  321. 'table'
  322. )
  323. "
  324. >
  325. <td class="text gray">日限电损失电量</td>
  326. <td class="value green">{{ wxssmap.rxdssdl }}</td>
  327. <td class="unit gray gray">万kWh</td>
  328. </tr>
  329. <tr
  330. class="curP"
  331. @click="
  332. openDialog(
  333. '日受累损失详情',
  334. 'genreset/findDayInfo',
  335. 'rslssdl',
  336. 'table'
  337. )
  338. "
  339. >
  340. <td class="text gray">日受累损失电量</td>
  341. <td class="value green">{{ wxssmap.rslssdl }}</td>
  342. <td class="unit gray">万kWh</td>
  343. </tr>
  344. <tr
  345. class="curP"
  346. @click="
  347. openDialog(
  348. '日性能损失详情',
  349. 'genreset/findDayInfo',
  350. 'rxnssdl',
  351. 'table'
  352. )
  353. "
  354. >
  355. <td class="text gray">日性能损失电量</td>
  356. <td class="value green">{{ wxssmap.rqfssdl }}</td>
  357. <td class="unit gray">万kWh</td>
  358. </tr>
  359. </table>
  360. </com-panel>
  361. </Col>
  362. <Col>
  363. <com-panel>
  364. <table class="table-card">
  365. <tr
  366. class="curP"
  367. @click="
  368. openDialog(
  369. '月发电量详情',
  370. 'genreset/findMonthInfo',
  371. 'yfdl',
  372. 'table'
  373. )
  374. "
  375. >
  376. <td class="text gray">月发电量</td>
  377. <td class="value green">{{ jczbmap.yfdl }}</td>
  378. <td class="unit gray gray">万kWh</td>
  379. </tr>
  380. <tr
  381. class="curP"
  382. @click="
  383. openDialog(
  384. '月故障损失详情',
  385. 'genreset/findMonthInfo',
  386. 'ygzssdl',
  387. 'table'
  388. )
  389. "
  390. >
  391. <td class="text gray">月故障损失</td>
  392. <td class="value green">{{ wxssmap.ygzssdl }}</td>
  393. <td class="unit gray">万kWh</td>
  394. </tr>
  395. <tr
  396. class="curP"
  397. @click="
  398. openDialog(
  399. '月维护损失详情',
  400. 'genreset/findMonthInfo',
  401. 'yjxssdl',
  402. 'table'
  403. )
  404. "
  405. >
  406. <td class="text gray">月维护损失</td>
  407. <td class="value green">{{ wxssmap.yjxssdl }}</td>
  408. <td class="unit gray">万kWh</td>
  409. </tr>
  410. <tr
  411. class="curP"
  412. @click="
  413. openDialog(
  414. '月限电损失详情',
  415. 'genreset/findMonthInfo',
  416. 'yxdssdl',
  417. 'table'
  418. )
  419. "
  420. >
  421. <td class="text gray">月限电损失</td>
  422. <td class="value green">{{ wxssmap.yxdssdl }}</td>
  423. <td class="unit gray gray">万kWh</td>
  424. </tr>
  425. <tr
  426. class="curP"
  427. @click="
  428. openDialog(
  429. '月受累损失详情',
  430. 'genreset/findMonthInfo',
  431. 'yslssdl',
  432. 'table'
  433. )
  434. "
  435. >
  436. <td class="text gray">月受累损失</td>
  437. <td class="value green">{{ wxssmap.yslssdl }}</td>
  438. <td class="unit gray">万kWh</td>
  439. </tr>
  440. <tr
  441. class="curP"
  442. @click="
  443. openDialog(
  444. '月性能损失详情',
  445. 'genreset/findMonthInfo',
  446. 'yxnssdl',
  447. 'table'
  448. )
  449. "
  450. >
  451. <td class="text gray">月性能损失</td>
  452. <td class="value green">{{ wxssmap.yqfssdl }}</td>
  453. <td class="unit gray">万kWh</td>
  454. </tr>
  455. </table>
  456. </com-panel>
  457. </Col>
  458. <Col>
  459. <com-panel>
  460. <table class="table-card">
  461. <tr
  462. class="curP"
  463. @click="
  464. openDialog(
  465. '年发电量详情',
  466. 'genreset/findYearInfo',
  467. 'nfdl',
  468. 'table'
  469. )
  470. "
  471. >
  472. <td class="text gray">年发电量</td>
  473. <td class="value green">{{ jczbmap.nfdl }}</td>
  474. <td class="unit gray">万kWh</td>
  475. </tr>
  476. <tr
  477. class="curP"
  478. @click="
  479. openDialog(
  480. '年故障损失详情',
  481. 'genreset/findYearInfo',
  482. 'ngzssdl',
  483. 'table'
  484. )
  485. "
  486. >
  487. <td class="text gray">年故障损失</td>
  488. <td class="value green">{{ wxssmap.ngzssdl }}</td>
  489. <td class="unit gray">万kWh</td>
  490. </tr>
  491. <tr
  492. class="curP"
  493. @click="
  494. openDialog(
  495. '年维护损失详情',
  496. 'genreset/findYearInfo',
  497. 'njxssdl',
  498. 'table'
  499. )
  500. "
  501. >
  502. <td class="text gray">年维护损失</td>
  503. <td class="value green">{{ wxssmap.njxssdl }}</td>
  504. <td class="unit gray">万kWh</td>
  505. </tr>
  506. <tr
  507. class="curP"
  508. @click="
  509. openDialog(
  510. '年限电损失详情',
  511. 'genreset/findYearInfo',
  512. 'nxdssdl',
  513. 'table'
  514. )
  515. "
  516. >
  517. <td class="text gray">年限电损失</td>
  518. <td class="value green">{{ wxssmap.nxdssdl }}</td>
  519. <td class="unit gray gray">万kWh</td>
  520. </tr>
  521. <tr
  522. class="curP"
  523. @click="
  524. openDialog(
  525. '年受累损失详情',
  526. 'genreset/findYearInfo',
  527. 'nslssdl',
  528. 'table'
  529. )
  530. "
  531. >
  532. <td class="text gray">年受累损失</td>
  533. <td class="value green">{{ wxssmap.nslssdl }}</td>
  534. <td class="unit gray">万kWh</td>
  535. </tr>
  536. <tr
  537. class="curP"
  538. @click="
  539. openDialog(
  540. '年性能损失详情',
  541. 'genreset/findYearInfo',
  542. 'nxnssdl',
  543. 'table'
  544. )
  545. "
  546. >
  547. <td class="text gray">年性能损失</td>
  548. <td class="value green">{{ wxssmap.nqfssdl }}</td>
  549. <td class="unit gray">万kWh</td>
  550. </tr>
  551. </table>
  552. </com-panel>
  553. </Col>
  554. </row>
  555. </Col>
  556. <!-- 右下角 panel -->
  557. <Col :span="8">
  558. <panel-3 class="situation">
  559. <div class="situation-body">
  560. <row align="middle">
  561. <div class="situation-item fengji">
  562. <div class="icon fengji-icon svg-icon svg-icon-white">
  563. <svg-icon class="" svgid="svg-风机" />
  564. </div>
  565. <div class="info">
  566. <div class="title green">接入设备</div>
  567. <div class="value">{{ mxztmap.jrts }}</div>
  568. </div>
  569. </div>
  570. <div class="situation-item">
  571. <div class="icon svg-icon svg-icon-green">
  572. <svg-icon class="" svgid="svg-待机图标" />
  573. </div>
  574. <div class="info">
  575. <div class="title green">待机</div>
  576. <div class="value">
  577. <span class="text gray">待风</span>
  578. <span>{{ mxztmap.djts }}</span>
  579. </div>
  580. <div class="value">
  581. <span class="text gray">手动停机</span>
  582. <span>{{ mxztmap.sdtjts }}</span>
  583. </div>
  584. </div>
  585. </div>
  586. <div class="situation-item">
  587. <div class="icon svg-icon svg-icon-purple">
  588. <svg-icon class="" svgid="svg-运行图标" />
  589. </div>
  590. <div class="info">
  591. <div class="title green">运行</div>
  592. <div class="value">
  593. <span class="text gray">正常发电</span>
  594. <span>{{ mxztmap.yxts }}</span>
  595. </div>
  596. <div class="value">
  597. <span class="text gray">降出力运行</span>
  598. <span>{{ mxztmap.fdjclts }}</span>
  599. </div>
  600. </div>
  601. </div>
  602. <div class="situation-item">
  603. <div class="icon svg-icon svg-icon-pink">
  604. <svg-icon class="" svgid="svg-限电图标" />
  605. </div>
  606. <div class="info">
  607. <div class="title green">限电</div>
  608. <div class="value">
  609. <span class="text gray">限电降出力</span>
  610. <span>{{ mxztmap.xdjclts }}</span>
  611. </div>
  612. <div class="value">
  613. <span class="text gray">停机</span>
  614. <span>{{ mxztmap.xdtjts }}</span>
  615. </div>
  616. </div>
  617. </div>
  618. </row>
  619. <row align="middle">
  620. <div class="situation-item">
  621. <div class="icon svg-icon svg-icon-red">
  622. <svg-icon class="" svgid="svg-故障图标" />
  623. </div>
  624. <div class="info">
  625. <div class="title green">故障</div>
  626. <div class="value">
  627. <span class="text gray">故障停机</span>
  628. <span>{{ mxztmap.gzts }}</span>
  629. </div>
  630. <div class="value">
  631. <span class="text gray">场内受累</span>
  632. <span>{{ mxztmap.cnslgzts }}</span>
  633. </div>
  634. </div>
  635. </div>
  636. <div class="situation-item">
  637. <div class="icon svg-icon svg-icon-orange">
  638. <svg-icon class="" svgid="svg-检修图标" />
  639. </div>
  640. <div class="info">
  641. <div class="title green">检修</div>
  642. <div class="value">
  643. <span class="text gray">检修停机</span>
  644. <span>{{ mxztmap.jxts }}</span>
  645. </div>
  646. <div class="value">
  647. <span class="text gray">场内受累</span>
  648. <span>{{ mxztmap.cnsljxts }}</span>
  649. </div>
  650. </div>
  651. </div>
  652. <div class="situation-item">
  653. <div class="icon svg-icon svg-icon-white">
  654. <svg-icon class="" svgid="svg-受累图标" />
  655. </div>
  656. <div class="info">
  657. <div class="title green">受累</div>
  658. <div class="value">
  659. <span class="text gray">电网</span>
  660. <span>{{ mxztmap.dwslts }}</span>
  661. </div>
  662. <div class="value">
  663. <span class="text gray">环境</span>
  664. <span>{{ mxztmap.hjslts }}</span>
  665. </div>
  666. </div>
  667. </div>
  668. <div class="situation-item">
  669. <div class="icon svg-icon svg-icon-gray">
  670. <svg-icon class="" svgid="svg-离线图标" />
  671. </div>
  672. <div class="info">
  673. <div class="title green">离线</div>
  674. <div class="value">
  675. <span class="text gray">离线</span>
  676. <span>{{ mxztmap.lxts }}</span>
  677. </div>
  678. <div class="value">
  679. <span class="text gray">未知</span>
  680. <span>---</span>
  681. </div>
  682. </div>
  683. </div>
  684. </row>
  685. </div>
  686. </panel-3>
  687. </Col>
  688. </Row>
  689. <el-dialog
  690. title="天气详情"
  691. custom-class="modal"
  692. v-model="showWeatherDialog"
  693. width="80%"
  694. :destroy-on-close="true"
  695. >
  696. <div class="weatherBox">
  697. <div class="l">
  698. <DoubleLineChart :height="'100%'" :list="weatherChart" />
  699. </div>
  700. <div class="r">
  701. <el-collapse
  702. style="height: 400px; overflow-y: scroll"
  703. v-model="weathercollapse"
  704. accordion
  705. >
  706. <el-collapse-item
  707. :name="index"
  708. v-for="(item, index) in tqmap5"
  709. :key="index"
  710. >
  711. <template #title>
  712. <div class="collapseItemTitle">
  713. {{ item.time }}
  714. <div
  715. style="
  716. display: flex;
  717. justify-content: start;
  718. align-items: center;
  719. "
  720. >
  721. <div class="icon svg-icon svg-icon-white">
  722. <SvgIcon class="svg" :svgid="'svg-' + item.tqtp" />
  723. </div>
  724. <div class="info">{{ item.sd }}% / {{ item.wd }}°C</div>
  725. </div>
  726. <div class="otherWea">{{ item.tqmc }}</div>
  727. </div>
  728. </template>
  729. <div class="other-info">
  730. <Row>
  731. <Col>
  732. <div class="svg-icon svg-icon-sm svg-icon-green other-icon">
  733. <svg-icon svgid="svg-能见度" />
  734. </div>
  735. <div class="value">{{ item.qxd }}</div>
  736. <div class="text">能见度</div>
  737. </Col>
  738. <Col>
  739. <div class="svg-icon svg-icon-sm svg-icon-green other-icon">
  740. <svg-icon svgid="svg-湿度" />
  741. </div>
  742. <div class="value">{{ item.sd }}</div>
  743. <div class="text">湿度</div>
  744. </Col>
  745. <Col>
  746. <div class="svg-icon svg-icon-sm svg-icon-green other-icon">
  747. <svg-icon svgid="svg-气压" />
  748. </div>
  749. <div class="value">{{ item.dqyl }}</div>
  750. <div class="text">气压</div>
  751. </Col>
  752. <Col>
  753. <div class="svg-icon svg-icon-sm svg-icon-green other-icon">
  754. <svg-icon svgid="svg-日出" />
  755. </div>
  756. <div class="value">{{ item.richushijian }}</div>
  757. <div class="text">日出时间</div>
  758. </Col>
  759. <Col>
  760. <div class="svg-icon svg-icon-sm svg-icon-green other-icon">
  761. <svg-icon svgid="svg-日落" />
  762. </div>
  763. <div class="value">{{ item.riluoshijian }}</div>
  764. <div class="text">日落时间</div>
  765. </Col>
  766. </Row>
  767. </div>
  768. </el-collapse-item>
  769. </el-collapse>
  770. </div>
  771. </div>
  772. </el-dialog>
  773. <el-dialog
  774. :title="dialogTitle"
  775. v-model="dialogShow"
  776. width="70%"
  777. top="10vh"
  778. custom-class="modal"
  779. :close-on-click-modal="true"
  780. @closed="dialogType = ''"
  781. >
  782. <Table :data="dialogData" v-if="dialogType === 'table'" />
  783. <multiple-y-line-chart-normal
  784. height="500px"
  785. :list="Powertrend"
  786. :yAxises="PowertrendYAxises"
  787. :showLegend="true"
  788. v-if="dialogType === 'powerLineChart'"
  789. />
  790. <multiple-bar-chart
  791. height="500px"
  792. :units="doneLineChartData.units"
  793. :list="doneLineChartData.value"
  794. v-if="dialogType === 'doneLineChart'"
  795. />
  796. </el-dialog>
  797. </div>
  798. </template>
  799. <script>
  800. // @ is an alias to /src
  801. import Row from "../../components/coms/grid/row.vue";
  802. import Col from "../../components/coms/grid/col.vue";
  803. import ComPanel from "../../components/coms/panel/panel";
  804. // import ListBarChart from "../../components/chart/bar/list-bar-chart.vue";
  805. import ToolbarPanel from "../../components/coms/panel/toolbar-panel.vue";
  806. import MultipleBarChart from "../../components/chart/bar/multiple-bar-chart.vue";
  807. import MultipleYLineChartNormal from "../../components/chart/line/multiple-y-line-chart-normal.vue";
  808. import Panel3 from "../../components/coms/panel/panel3.vue";
  809. import SvgIcon from "../../components/coms/icon/svg-icon.vue";
  810. import CoulometricAnalysis from "./components/coulometric-analysis.vue";
  811. import Weather from "./components/weather.vue";
  812. import PowerReview from "./components/power-review.vue";
  813. import PowerPlan from "./components/power-plan.vue";
  814. import Map from "./components/map.vue";
  815. import ListBarChart2 from "../../components/chart/bar/list-bar-chart2.vue";
  816. import DoubleLineChart from "@com/chart/line/double-line-chart.vue";
  817. import Table from "./dialog/table.vue";
  818. export default {
  819. name: "Home",
  820. components: {
  821. Row,
  822. Col,
  823. ComPanel,
  824. Weather,
  825. CoulometricAnalysis,
  826. // ListBarChart,
  827. PowerReview,
  828. ToolbarPanel,
  829. PowerPlan,
  830. MultipleBarChart,
  831. MultipleYLineChartNormal,
  832. Panel3,
  833. SvgIcon,
  834. Map,
  835. ListBarChart2,
  836. Table,
  837. DoubleLineChart,
  838. },
  839. data() {
  840. return {
  841. timmer: null, // 计时器
  842. timmer2: null,
  843. timmer3: null,
  844. showWeatherDialog: false,
  845. weatherChart: [
  846. {
  847. title: "温度",
  848. smooth: true,
  849. value: [],
  850. },
  851. {
  852. title: "湿度",
  853. smooth: true,
  854. value: [],
  855. },
  856. ],
  857. tqmap5: [],
  858. jczbmap: {},
  859. wxssmap: {},
  860. gxkmap: {},
  861. mxztmap: {},
  862. planData: {},
  863. powerData: {},
  864. tqmap: {},
  865. nowTime: "",
  866. planBtnName: "全部",
  867. powerLineChartData: [
  868. {
  869. title: "",
  870. yAxisIndex: 0, // 使用单位
  871. value: [],
  872. },
  873. ],
  874. doneLineChartData: {
  875. // 图表所用单位
  876. units: [""],
  877. value: [
  878. {
  879. title: "",
  880. yAxisIndex: 0, // 使用单位
  881. value: [],
  882. },
  883. ],
  884. },
  885. dialogType: null,
  886. wpId: "0",
  887. wpName: "", //安全天数下面的场站名
  888. fcmap: {},
  889. xtmap: {},
  890. dialogShow: false,
  891. dialogTitle: "",
  892. dialogData: {},
  893. // 预测电量
  894. ForecastPower: [],
  895. // 日发电量
  896. DayPower: {
  897. // 图表所用单位
  898. units: [""],
  899. value: [
  900. {
  901. title: "",
  902. yAxisIndex: 0, // 使用单位
  903. value: [],
  904. },
  905. ],
  906. },
  907. // 72小时功率趋势图
  908. Powertrend: [
  909. {
  910. title: "",
  911. yAxisIndex: 0, // 使用单位
  912. value: [],
  913. },
  914. ],
  915. PowertrendYAxises: [
  916. {
  917. name: "功率",
  918. min: 0,
  919. max: 734,
  920. unit: "(万kWh)",
  921. position: "left",
  922. },
  923. {
  924. name: "风速",
  925. min: 0,
  926. max: 25,
  927. unit: "(m/s)",
  928. position: "right",
  929. },
  930. ],
  931. };
  932. },
  933. methods: {
  934. // 打开天气弹窗
  935. openWeatherDialog() {
  936. let that = this;
  937. that.API.requestData({
  938. method: "POST",
  939. subUrl: "genreset/getWeatherRealDay5Info",
  940. data: {
  941. wpId: that.wpId,
  942. },
  943. success(res) {
  944. const keys = ["wd", "sd"];
  945. let weatherChart = [
  946. {
  947. title: "温度",
  948. smooth: true,
  949. value: [],
  950. },
  951. {
  952. title: "湿度",
  953. smooth: true,
  954. value: [],
  955. },
  956. ];
  957. res.data.ls.forEach((ele) => {
  958. ele.time = new Date(ele.time).formatDate("yyyy-MM-dd hh:mm");
  959. });
  960. keys.forEach((key, keyIndex) => {
  961. res.data.ls.forEach((ele) => {
  962. weatherChart[keyIndex].value.push({
  963. text: ele.time,
  964. value: ele[key],
  965. });
  966. });
  967. });
  968. that.tqmap5 = res.data.ls;
  969. that.weatherChart = weatherChart;
  970. that.showWeatherDialog = true;
  971. },
  972. });
  973. },
  974. // 请求服务
  975. requestData(showLoading) {
  976. let that = this;
  977. that.API.requestData({
  978. showLoading,
  979. method: "POST",
  980. subUrl: "genreset/findBasicDataInfo",
  981. timeout: 60000,
  982. data: {
  983. id: that.wpId,
  984. },
  985. success(res) {
  986. that.powerData = [
  987. {
  988. title: "风速",
  989. value: res.data.jczbmap.ssfs,
  990. dialogTitle: "风速详情",
  991. subUrl: "genreset/findGLDetail",
  992. targetName: "ssfs",
  993. dialogType: "powerLineChart",
  994. max: 30,
  995. },
  996. {
  997. title: "保证功率",
  998. value: res.data.jczbmap.bzgl,
  999. dialogTitle: "保证功率详情",
  1000. subUrl: "genreset/findGLDetail",
  1001. targetName: "bzgl",
  1002. dialogType: "powerLineChart",
  1003. max: res.data.jczbmap.zjts,
  1004. },
  1005. {
  1006. title: "应发功率",
  1007. value: res.data.jczbmap.yfgl,
  1008. dialogTitle: "应发功率详情",
  1009. subUrl: "genreset/findGLDetail",
  1010. targetName: "yfgl",
  1011. dialogType: "powerLineChart",
  1012. max: res.data.jczbmap.zjts,
  1013. },
  1014. {
  1015. title: "实际功率",
  1016. value: res.data.jczbmap.sjgl,
  1017. dialogTitle: "实际功率详情",
  1018. subUrl: "genreset/findGLDetail",
  1019. targetName: "sjgl",
  1020. dialogType: "powerLineChart",
  1021. max: res.data.jczbmap.zjts,
  1022. },
  1023. ];
  1024. that.jczbmap = res.data.jczbmap;
  1025. that.wxssmap = res.data.wxssmap;
  1026. that.gxkmap = res.data.gxkmap;
  1027. that.mxztmap = res.data.mxztmap;
  1028. that.fcmap = res.data.fcmap;
  1029. that.xtmap = res.data.xtmap;
  1030. that.tqmap = res.data.tqmap;
  1031. that.ForecastPower = [
  1032. {
  1033. name: "当日预测电量",
  1034. value: res.data.jczbmap.rycfdl,
  1035. total: res.data.jczbmap.rfdlsx,
  1036. },
  1037. {
  1038. name: "实际发电量",
  1039. value: res.data.jczbmap.rfdl,
  1040. total: res.data.jczbmap.rfdlsx,
  1041. },
  1042. {
  1043. name: "当月预测电量",
  1044. value: res.data.jczbmap.yycfdl,
  1045. total: res.data.jczbmap.yfdlsx,
  1046. },
  1047. {
  1048. name: "实际发电量",
  1049. value: res.data.jczbmap.yfdl,
  1050. total: res.data.jczbmap.yfdlsx,
  1051. },
  1052. ];
  1053. that.planData = {
  1054. yfdl: res.data.jczbmap.yfdl,
  1055. nfdl: res.data.jczbmap.nfdl,
  1056. yfdljh: res.data.gxkmap.yfdljh,
  1057. nfdljh: res.data.gxkmap.nfdljh,
  1058. ywcl: res.data.gxkmap.ywcl,
  1059. nwcl: res.data.gxkmap.nwcl,
  1060. };
  1061. },
  1062. });
  1063. },
  1064. getCharts() {
  1065. let that = this;
  1066. that.API.requestData({
  1067. method: "POST",
  1068. subUrl: "genreset/findPowerInfo",
  1069. data: {
  1070. id: that.wpId,
  1071. },
  1072. success(res) {
  1073. let rdlKey = ["value1", "value2", "value3", "speed"];
  1074. let DayPower = {
  1075. units: ["(万kWh)", "(m/s)"],
  1076. value: [
  1077. {
  1078. title: "发电量",
  1079. yAxisIndex: 0,
  1080. value: [],
  1081. },
  1082. {
  1083. title: "上网电量",
  1084. yAxisIndex: 0,
  1085. value: [],
  1086. },
  1087. {
  1088. title: "购网电量",
  1089. yAxisIndex: 0,
  1090. value: [],
  1091. },
  1092. {
  1093. title: "风速",
  1094. yAxisIndex: 1,
  1095. value: [],
  1096. },
  1097. ],
  1098. };
  1099. let glKey = [
  1100. "value2",
  1101. "value1",
  1102. "value5",
  1103. "value4",
  1104. "value7",
  1105. "value6",
  1106. ];
  1107. let Powertrend = [
  1108. {
  1109. title: "实发功率",
  1110. smooth: true,
  1111. value: [],
  1112. },
  1113. {
  1114. title: "理论功率",
  1115. smooth: true,
  1116. value: [],
  1117. },
  1118. {
  1119. title: "保证功率",
  1120. smooth: true,
  1121. value: [],
  1122. },
  1123. {
  1124. title: "4小时预测功率",
  1125. smooth: true,
  1126. value: [],
  1127. },
  1128. {
  1129. title: "24小时预测功率",
  1130. smooth: true,
  1131. value: [],
  1132. },
  1133. {
  1134. title: "平均风速",
  1135. smooth: true,
  1136. value: [],
  1137. },
  1138. ];
  1139. rdlKey.forEach((keyEle, keyIndex) => {
  1140. res.data.rdlvos.forEach((cEle) => {
  1141. DayPower.value[keyIndex].value.push({
  1142. text: cEle.timestr,
  1143. value: cEle[keyEle],
  1144. });
  1145. });
  1146. });
  1147. glKey.forEach((keyEle, keyIndex) => {
  1148. res.data.glvos.forEach((cEle) => {
  1149. Powertrend[keyIndex].value.push({
  1150. text: new Date(cEle.time).formatDate("hh:mm"),
  1151. value: cEle[keyEle],
  1152. });
  1153. });
  1154. });
  1155. that.DayPower = DayPower;
  1156. that.Powertrend = Powertrend;
  1157. },
  1158. });
  1159. },
  1160. // 点击地图展示类型
  1161. changeShowType(wpId, planBtnName) {
  1162. this.wpName = planBtnName;
  1163. this.planBtnName = planBtnName;
  1164. this.jczbmap = {};
  1165. clearInterval(this.timmer);
  1166. this.timmer = null;
  1167. this.wpId = wpId;
  1168. this.requestData(false);
  1169. this.getCharts();
  1170. this.timmer = setInterval(() => {
  1171. this.requestData(false);
  1172. }, this.$store.state.websocketTimeSec);
  1173. },
  1174. // 打开弹窗
  1175. openDialog(dialogTitle, subUrl, targetName, dialogType) {
  1176. this.dialogTitle = dialogTitle;
  1177. let that = this;
  1178. that.API.requestData({
  1179. method: "POST",
  1180. subUrl,
  1181. data: {
  1182. id: that.wpId,
  1183. targetName,
  1184. },
  1185. success(res) {
  1186. that.dialogShow = true;
  1187. that.dialogData = res.data;
  1188. that.dialogType = dialogType;
  1189. },
  1190. });
  1191. },
  1192. // 点击安全天数下的场站按钮重置数据
  1193. onBackStation() {
  1194. if (this.wpId.indexOf("FDC") == -1) {
  1195. clearInterval(this.timmer);
  1196. this.timmer = null;
  1197. this.wpId = this.wpId.substring(0, this.wpId.indexOf("0")) + "_FDC";
  1198. this.requestData(false);
  1199. this.timmer = setInterval(() => {
  1200. this.requestData(false);
  1201. }, this.$store.state.websocketTimeSec);
  1202. }
  1203. },
  1204. showForecastBox() {
  1205. let that = this;
  1206. that.dialogTitle = "预测电量详情";
  1207. that.API.requestData({
  1208. method: "POST",
  1209. subUrl: "/genreset/getForecastwindspeedInfo",
  1210. data: {
  1211. wpId: that.wpId,
  1212. },
  1213. success(res) {
  1214. that.dialogData = res.data;
  1215. that.dialogType = "table";
  1216. that.dialogShow = true;
  1217. },
  1218. });
  1219. },
  1220. // 显示功率复核图表
  1221. showPowerChart(res) {
  1222. this.dialogTitle = res.dialogTitle;
  1223. this.dialogType = res.dialogType;
  1224. this.powerLineChartData = res.data;
  1225. this.dialogShow = true;
  1226. },
  1227. // 显示计划电量完成情况图表
  1228. showDoneChart(res) {
  1229. this.dialogTitle = res.dialogTitle;
  1230. this.dialogType = res.dialogType;
  1231. this.doneLineChartData = res.data;
  1232. this.dialogShow = true;
  1233. },
  1234. // 地图进入事件
  1235. onEnter() {
  1236. this.powerplanShowSingle = true;
  1237. },
  1238. // 地图退出事件
  1239. onBack() {
  1240. this.powerplanShowSingle = false;
  1241. },
  1242. },
  1243. created() {
  1244. let that = this;
  1245. that.nowTime = new Date().formatDate("hh:mm:ss");
  1246. that.$nextTick(() => {
  1247. that.requestData(false);
  1248. this.getCharts();
  1249. that.timmer = setInterval(() => {
  1250. that.requestData(false);
  1251. }, that.$store.state.websocketTimeSec);
  1252. that.timmer2 = setInterval(() => {
  1253. that.nowTime = new Date().formatDate("hh:mm:ss");
  1254. }, 1000);
  1255. that.timmer3 = setInterval(() => {
  1256. this.getCharts();
  1257. }, 360000);
  1258. });
  1259. },
  1260. unmounted() {
  1261. clearInterval(this.timmer);
  1262. clearInterval(this.timmer2);
  1263. clearInterval(this.timmer3);
  1264. this.timmer = null;
  1265. this.timmer2 = null;
  1266. this.timmer3 = null;
  1267. },
  1268. };
  1269. </script>
  1270. <style lang="less">
  1271. .home {
  1272. .grid-content {
  1273. background: #333;
  1274. height: 1.111vh;
  1275. }
  1276. .table-card-panel {
  1277. .col + .col {
  1278. margin-left: 8px;
  1279. }
  1280. }
  1281. .table-card {
  1282. background: rgba(255, 255, 255, 0.1);
  1283. border-collapse: collapse;
  1284. width: 100%;
  1285. outline: 1px solid @gray;
  1286. .curP {
  1287. cursor: pointer;
  1288. }
  1289. tr {
  1290. font-size: 12px;
  1291. td {
  1292. border: 0.093vh solid fade(@gray, 20);
  1293. line-height: 27px;
  1294. padding: 0 4px;
  1295. &.text {
  1296. }
  1297. &.value {
  1298. text-align: right;
  1299. font-family: @font-family-num;
  1300. }
  1301. &.unit {
  1302. }
  1303. }
  1304. }
  1305. }
  1306. .tools {
  1307. display: flex;
  1308. .tool-block {
  1309. display: flex;
  1310. align-items: center;
  1311. margin-left: 0.741vh;
  1312. .legend {
  1313. flex: auto;
  1314. width: 6px;
  1315. height: 6px;
  1316. margin-right: 0.741vh;
  1317. &.long {
  1318. width: 2.963vh;
  1319. height: 0.37vh;
  1320. }
  1321. }
  1322. .legend-text {
  1323. color: #ffffff4d;
  1324. }
  1325. }
  1326. }
  1327. .situation {
  1328. width: 100%;
  1329. height: 100%;
  1330. .situation-body {
  1331. display: flex;
  1332. flex-direction: column;
  1333. justify-content: space-around;
  1334. height: 100%;
  1335. .situation-item {
  1336. display: flex;
  1337. align-content: center;
  1338. flex: 1 1 25%;
  1339. align-items: center;
  1340. .icon {
  1341. svg {
  1342. width: 40px;
  1343. height: 40px;
  1344. }
  1345. }
  1346. &.fengji {
  1347. flex: 0 1 25%;
  1348. .info {
  1349. margin-left: 16px;
  1350. .value {
  1351. font-size: 24px;
  1352. display: inline-block;
  1353. }
  1354. }
  1355. }
  1356. .fengji-icon {
  1357. padding: 12px;
  1358. border-radius: 50%;
  1359. box-shadow: inset 1.5px -1px 1px 0px @green;
  1360. svg {
  1361. width: 24px;
  1362. height: 24px;
  1363. }
  1364. }
  1365. .info {
  1366. display: flex;
  1367. flex-direction: column;
  1368. justify-content: center;
  1369. margin-left: 0.741vh;
  1370. .title {
  1371. font-size: 12px;
  1372. font-weight: bold;
  1373. margin-bottom: 0.7407vh;
  1374. }
  1375. .text {
  1376. display: inline-block;
  1377. width: 64px;
  1378. text-align: left;
  1379. }
  1380. .value {
  1381. text-align: left;
  1382. font-size: 12px;
  1383. display: flex;
  1384. justify-content: space-between;
  1385. align-items: center;
  1386. }
  1387. }
  1388. }
  1389. }
  1390. }
  1391. .com-panel {
  1392. height: 100%;
  1393. .panel-body {
  1394. height: calc(100% - 32px);
  1395. }
  1396. }
  1397. .top-left-panel {
  1398. display: flex;
  1399. flex-direction: column;
  1400. justify-content: space-between;
  1401. flex: 0 0 380px;
  1402. .row {
  1403. flex: 0 0 auto;
  1404. }
  1405. .plan {
  1406. flex: 0 0 auto;
  1407. .com-panel {
  1408. height: 100%;
  1409. .panel-body {
  1410. height: calc(100% - 32px);
  1411. }
  1412. }
  1413. }
  1414. }
  1415. .top-mid-panel {
  1416. flex: 1 1 auto;
  1417. }
  1418. .top-right-panel {
  1419. display: flex;
  1420. flex-direction: column;
  1421. justify-content: space-between;
  1422. flex: 0 0 380px;
  1423. }
  1424. .weatherBox {
  1425. width: 100%;
  1426. display: flex;
  1427. justify-content: space-around;
  1428. align-items: center;
  1429. .l,
  1430. .r {
  1431. width: 48%;
  1432. height: 500px;
  1433. padding: 50px 0;
  1434. }
  1435. .el-collapse {
  1436. border-top: 1px solid #999;
  1437. }
  1438. .el-collapse-item .el-collapse-item__wrap {
  1439. border-bottom: 1px solid #999;
  1440. }
  1441. .el-collapse-item__content {
  1442. background: rgba(18, 29, 28);
  1443. color: rgba(255, 255, 255, 0.75);
  1444. padding: 20px;
  1445. }
  1446. .el-collapse-item__header {
  1447. background: rgb(18, 29, 28);
  1448. border-bottom: 1px solid #999;
  1449. color: rgba(255, 255, 255, 0.75);
  1450. }
  1451. .el-card__header,
  1452. .el-collapse,
  1453. .el-collapse-item__header {
  1454. border-bottom: 1px solid #999;
  1455. }
  1456. .collapseItemTitle {
  1457. display: flex;
  1458. justify-content: space-between;
  1459. align-items: center;
  1460. width: 100%;
  1461. .svg {
  1462. width: 20px;
  1463. height: 20px;
  1464. }
  1465. .info {
  1466. margin-left: 4px;
  1467. }
  1468. .otherWea {
  1469. margin-right: 10px;
  1470. }
  1471. }
  1472. .other-info {
  1473. text-align: center;
  1474. font-size: @fontsize-s;
  1475. .text {
  1476. color: @font-color;
  1477. font-size: 12px;
  1478. }
  1479. .value {
  1480. margin: 0.741vh 0 0 0;
  1481. }
  1482. .other-icon {
  1483. margin: 0 auto;
  1484. }
  1485. }
  1486. }
  1487. }
  1488. </style>