Home.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854
  1. <template>
  2. <div>
  3. <div class="btn-group-tabs">
  4. <BtnGroup2 :btnGroups="btnGroupsss" :rowIndex="rowIndex" :index="selectIndex" @select="select"></BtnGroup2>
  5. </div>
  6. <div class="wind-site-home">
  7. <div class="mg-b-16">
  8. <btn-group-double :btnGroups="btnGroups" :rowIndex="0" :index="1" @select="select" />
  9. </div>
  10. <row>
  11. <wind-site-weather :time="nowTime" :data="tqmap" />
  12. <panel-3 class="wind-site-info">
  13. <row align="middle">
  14. <div class="info-item">
  15. <div class="value">{{ jczbmap.zjrl }}</div>
  16. <div class="text">装机容量</div>
  17. </div>
  18. <div class="info-item">
  19. <div class="value">{{ jczbmap.rfdl }}</div>
  20. <div class="text">日发电量</div>
  21. </div>
  22. <div class="info-item">
  23. <div class="value">{{ jczbmap.yfdl }}</div>
  24. <div class="text">月发电量</div>
  25. </div>
  26. <div class="info-item">
  27. <div class="value">{{ jczbmap.nfdl }}</div>
  28. <div class="text">年发电量</div>
  29. </div>
  30. <div class="info-item">
  31. <div class="value">{{ jczbmap.ylyxs }}</div>
  32. <div class="text">月利用小时</div>
  33. </div>
  34. <div class="info-item">
  35. <div class="value">{{ jczbmap.nlyxs }}</div>
  36. <div class="text">年利用小时</div>
  37. </div>
  38. <div class="info-item">
  39. <div class="value">{{ jczbmap.ssfs }}</div>
  40. <div class="text">实时风速</div>
  41. </div>
  42. <div class="info-item">
  43. <div class="value">{{ jczbmap.sjgl }}</div>
  44. <div class="text">实时功率</div>
  45. </div>
  46. </row>
  47. </panel-3>
  48. <panel-3 class="wind-running-info">
  49. <row align="middle">
  50. <div class="fengji">
  51. <div class="fengji-icon svg-icon svg-icon-white">
  52. <svg-icon class="" svgid="svg-风机" />
  53. </div>
  54. <div class="info">
  55. <div class="text green">接入风机</div>
  56. <div class="value">{{ jczbmap.jrts }}</div>
  57. </div>
  58. </div>
  59. <div class="situation">
  60. <row class="icon-status">
  61. <div class="status ">
  62. <span class="svg-icon svg-icon-purple">
  63. <svg-icon svgid="svg-standby" />
  64. </span>
  65. <span class="text purple">
  66. 待机
  67. </span>
  68. </div>
  69. <div class="status ">
  70. <span class="svg-icon svg-icon-green">
  71. <svg-icon svgid="svg-normal-power" />
  72. </span>
  73. <span class="text green">
  74. 运行
  75. </span>
  76. </div>
  77. <div class="status ">
  78. <span class="svg-icon svg-icon-yellow">
  79. <svg-icon svgid="svg-limit-power" style="margin:3px 0.3704vh -3px 0;" />
  80. </span>
  81. <span class="text yellow">
  82. 限电
  83. </span>
  84. </div>
  85. <div class="status ">
  86. <span class="svg-icon svg-icon-red">
  87. <svg-icon svgid="svg-gz-downtime" />
  88. </span>
  89. <span class="text red">
  90. 故障
  91. </span>
  92. </div>
  93. <div class="status ">
  94. <span class="svg-icon svg-icon-orange">
  95. <svg-icon svgid="svg-jx-downtime" />
  96. </span>
  97. <span class="text orange">
  98. 检修
  99. </span>
  100. </div>
  101. <div class="status ">
  102. <span class="svg-icon svg-icon-gray">
  103. <svg-icon svgid="svg-offline" />
  104. </span>
  105. <span class="text gray">
  106. 离线
  107. </span>
  108. </div>
  109. <div class="status ">
  110. <span class="svg-icon svg-icon-darkblue">
  111. <svg-icon svgid="svg-intranet-involvement" />
  112. </span>
  113. <span class="text darkblue">
  114. 受限
  115. </span>
  116. </div>
  117. </row>
  118. <row>
  119. <div class="status">
  120. <span class="text gray">
  121. 待风
  122. </span>
  123. <span class="value">
  124. {{ jczbmap.djnum }}
  125. </span>
  126. </div>
  127. <div class="status">
  128. <span class="text gray">
  129. 正常出力
  130. </span>
  131. <span class="value">
  132. {{ jczbmap.zcfdnum }}
  133. </span>
  134. </div>
  135. <div class="status">
  136. <span class="text gray">
  137. 降出力
  138. </span>
  139. <span class="value">
  140. {{ jczbmap.xdjclnum }}
  141. </span>
  142. </div>
  143. <div class="status">
  144. <span class="text gray">
  145. 故障停机
  146. </span>
  147. <span class="value">
  148. {{ jczbmap.gztjnum }}
  149. </span>
  150. </div>
  151. <div class="status">
  152. <span class="text gray">
  153. 检修停机
  154. </span>
  155. <span class="value">
  156. {{ jczbmap.jxtjnum }}
  157. </span>
  158. </div>
  159. <div class="status">
  160. <span class="text gray">
  161. 电网
  162. </span>
  163. <span class="value">
  164. {{ jczbmap.dwslnum }}
  165. </span>
  166. </div>
  167. <div class="status">
  168. <span class="text gray">
  169. 离线
  170. </span>
  171. <span class="value">
  172. {{ jczbmap.lxnum }}
  173. </span>
  174. </div>
  175. </row>
  176. </div>
  177. </row>
  178. </panel-3>
  179. </row>
  180. <div class="first-info mg-t-16 mg-b-16">
  181. <div style="flex:0 1 450px;">
  182. <panel title="场站">
  183. <station height="18.519vh" />
  184. </panel>
  185. </div>
  186. <div class="mg-l-16" style="flex:1 1 auto;" ref="lineChart">
  187. <panel title="4小时功率曲线图">
  188. <multiple-line-chart height="18.519vh" v-if="Powertrend" :list="Powertrend.value" :units="Powertrend.units"
  189. :showLegend="true" />
  190. </panel>
  191. </div>
  192. <div class="mg-l-16" style="flex:0 0 400px;">
  193. <panel class="light-matrix-panel">
  194. <light-matrix :list="fjmap" />
  195. </panel>
  196. </div>
  197. </div>
  198. <row>
  199. <Col :span="8">
  200. <panel title="日度损失电量分析">
  201. <dual-pie-chart :innerData="pieChartData.dayData" :outerData="pieChartData.dayData" height="21.296vh" />
  202. </panel>
  203. </Col>
  204. <Col :span="8">
  205. <panel title="月度损失电量分析">
  206. <dual-pie-chart :innerData="pieChartData.monthData" :outerData="pieChartData.monthData" height="21.296vh" />
  207. </panel>
  208. </Col>
  209. <Col :span="8">
  210. <panel title="年度损失电量分析">
  211. <dual-pie-chart :innerData="pieChartData.yearData" :outerData="pieChartData.yearData" height="21.296vh" />
  212. </panel>
  213. </Col>
  214. </row>
  215. <row>
  216. <Col :span="8">
  217. <panel title="日度损失电量分析">
  218. <hover-bar-chart :list="dayLost" height="21.296vh" />
  219. </panel>
  220. </Col>
  221. <Col :span="8">
  222. <panel title="日发电量对比">
  223. <multiple-bar-chart height="21.296vh" :list="CompleteElectricity.data" :units="CompleteElectricity.units"
  224. :showLegend="true" />
  225. </panel>
  226. </Col>
  227. <Col :span="8">
  228. <panel title="月发电量对比">
  229. <normal-line-chart height="21.296vh" :list="MonthCompare.value" :units="MonthCompare.units" />
  230. </panel>
  231. </Col>
  232. </row>
  233. </div>
  234. </div>
  235. </template>
  236. <script>
  237. import HoverBarChart from "../../../../components/chart/bar/hover-bar-chart.vue";
  238. import MultipleBarChart from "../../../../components/chart/bar/multiple-bar-chart.vue";
  239. import MultipleLineChart from "../../../../components/chart/line/multiple-line-chart.vue";
  240. import NormalLineChart from "../../../../components/chart/line/normal-line-chart.vue";
  241. import DualPieChart from "../../../../components/chart/pie/dual-pie-chart.vue";
  242. import BtnGroupDouble from "../../../../components/coms/btn/btn-group-double.vue";
  243. import Col from "../../../../components/coms/grid/col.vue";
  244. import Row from "../../../../components/coms/grid/row.vue";
  245. import SvgIcon from "../../../../components/coms/icon/svg-icon.vue";
  246. import Panel from "../../../../components/coms/panel/panel.vue";
  247. import Panel3 from "../../../../components/coms/panel/panel3.vue";
  248. import LightMatrix from "./light-matrix.vue";
  249. import Station from "./Station.vue";
  250. import WindSiteWeather from "./wind-site-weather.vue";
  251. import BtnGroup2 from "@com/coms/btn/btn-group-double.vue";
  252. export default {
  253. // 名称
  254. name: "WindSiteHome",
  255. // 使用组件
  256. components: { BtnGroup2, WindSiteWeather, Row, Col, Panel, DualPieChart, MultipleLineChart, Panel3, SvgIcon, HoverBarChart, MultipleBarChart, NormalLineChart, LightMatrix, BtnGroupDouble, Station },
  257. // 数据
  258. data () {
  259. return {
  260. timmer: null, // 计时器
  261. timmer2: null,
  262. nowTime: "", // 时间
  263. fjmap: [], // 分机矩阵
  264. tqmap: {}, // 天气数据
  265. glvos: {}, // 72小时功率曲线图
  266. wxssmap: {}, // 五项损失饼图数据
  267. jczbmap: {}, // 顶部基础数据
  268. dayLost: [], // 日度损失电量分析柱状图
  269. donePower: [], // 完成电量柱状图
  270. // 饼图数据
  271. pieChartData: {
  272. // 日度
  273. dayData: [
  274. {
  275. title: "",
  276. value: [],
  277. },
  278. ],
  279. // 月度
  280. monthData: [
  281. {
  282. title: "",
  283. value: [],
  284. },
  285. ],
  286. // 年度
  287. yearData: [
  288. {
  289. title: "",
  290. value: [],
  291. },
  292. ],
  293. },
  294. // 完成电量
  295. CompleteElectricity: {
  296. data: [
  297. {
  298. title: "发电量",
  299. yAxisIndex: 0,
  300. value: [],
  301. },
  302. {
  303. title: "预测电量",
  304. yAxisIndex: 0,
  305. value: [],
  306. },
  307. ],
  308. units: ["", ""],
  309. },
  310. // 4小时功率曲线图
  311. Powertrend: {
  312. value: [
  313. {
  314. title: "",
  315. value: [],
  316. },
  317. ],
  318. },
  319. // 月发电量对比
  320. MonthCompare: {
  321. units: ["(MK)"],
  322. value: [
  323. {
  324. title: "月发电量",
  325. yAxisIndex: 0,
  326. value: [],
  327. },
  328. {
  329. title: "月预测电量",
  330. yAxisIndex: 0,
  331. value: [],
  332. },
  333. ],
  334. },
  335. selectIndex: 0,
  336. rowIndex: 0,
  337. btnGroupsss: [
  338. {
  339. icon: "svg-wind-site",
  340. btns: [],
  341. },
  342. {
  343. icon: "svg-photovoltaic",
  344. btns: [],
  345. },
  346. ],
  347. };
  348. },
  349. // 函数
  350. methods: {
  351. getWp () {
  352. let that = this;
  353. that.API.requestData({
  354. method: "GET",
  355. subUrl: "powercompare/windfarmAllAjax",
  356. success (res) {
  357. console.warn(res);
  358. let btnGroups = [{
  359. icon: "svg-wind-site",
  360. btns: []
  361. }, {
  362. icon: "svg-photovoltaic",
  363. btns: []
  364. }];
  365. res.data.forEach((ele, index) => {
  366. if (ele.id.indexOf("FDC") !== -1) {
  367. btnGroups[0].btns.push({
  368. text: ele.name,
  369. code: ele.id
  370. });
  371. } else {
  372. btnGroups[1].btns.push({
  373. text: ele.name,
  374. code: ele.id
  375. });
  376. }
  377. });
  378. that.btnGroupsss = btnGroups;
  379. that.renderBtnActiveIndex();
  380. },
  381. });
  382. },
  383. renderBtnActiveIndex () {
  384. this.btnGroupsss.forEach((pEle, pIndex) => {
  385. pEle.btns.forEach((cEle, cIndex) => {
  386. if (cEle.code === this.wpId) {
  387. this.rowIndex = pIndex;
  388. this.selectIndex = cIndex;
  389. }
  390. });
  391. });
  392. },
  393. select (res) {
  394. this.$router.replace({
  395. path: `/monitor/windsite/home/${res.code}`
  396. });
  397. },
  398. // 根据风机状态码返回对应 class
  399. getColor (fjzt) {
  400. switch (fjzt) {
  401. case 0:
  402. return "green";
  403. case 1:
  404. return "blue";
  405. case 2:
  406. return "red";
  407. case 3:
  408. return "gray";
  409. case 4:
  410. return "orange";
  411. case 5:
  412. return "purple";
  413. case 6:
  414. return "write";
  415. }
  416. },
  417. // 请求服务
  418. requestData (showLoading) {
  419. this.requestWpInfo(showLoading);
  420. this.requestLoss(showLoading);
  421. this.requestPower(showLoading);
  422. this.requestMonthPower(showLoading);
  423. },
  424. // 获取场站监视数据
  425. requestWpInfo (showLoading) {
  426. let that = this;
  427. that.API.requestData({
  428. showLoading,
  429. method: "POST",
  430. subUrl: "monitor/findWpInfoBywpId",
  431. data: {
  432. wpId: that.wpId,
  433. },
  434. success (res) {
  435. console.log(123,res);
  436. if (res.data) {
  437. that.tqmap = res.data.tqmap;
  438. let fjmap = [];
  439. let keys = ["value1", "value2", "value3", "value4", "value5", "value6", "value7", "value9"];
  440. let Powertrend = {
  441. // 图表所用单位
  442. units: ["(万KWh)", "(风速)"],
  443. value: [
  444. {
  445. title: "应发功率",
  446. yAxisIndex: 1, // 使用单位
  447. value: [],
  448. },
  449. {
  450. title: "实发功率",
  451. yAxisIndex: 1, // 使用单位
  452. value: [],
  453. },
  454. {
  455. title: "理论功率",
  456. yAxisIndex: 1, // 使用单位
  457. value: [],
  458. },
  459. {
  460. title: "预测功率",
  461. yAxisIndex: 1, // 使用单位
  462. value: [],
  463. },
  464. {
  465. title: "保证功率",
  466. yAxisIndex: 1, // 使用单位
  467. value: [],
  468. },
  469. {
  470. title: "平均风速",
  471. yAxisIndex: 1, // 使用单位
  472. value: [],
  473. },
  474. {
  475. title: "小时预测功率",
  476. yAxisIndex: 1, // 使用单位
  477. value: [],
  478. },
  479. {
  480. title: "最有功率律",
  481. yAxisIndex: 1, // 使用单位
  482. value: [],
  483. },
  484. ],
  485. };
  486. let dayPieChartKey = [
  487. {
  488. key: "gzssdl",
  489. name: "故障损失电量",
  490. },
  491. {
  492. key: "jxssdl",
  493. name: "检修损失电量",
  494. },
  495. {
  496. key: "qfssdl",
  497. name: "性能损失电量",
  498. },
  499. {
  500. key: "slssdl",
  501. name: "受累损失电量",
  502. },
  503. {
  504. key: "xdssdl",
  505. name: "限电损失电量",
  506. },
  507. ];
  508. // 饼图 1 数据
  509. let dayData = [];
  510. // 饼图 2 数据
  511. let monthData = [];
  512. // 饼图 2 数据
  513. let yearData = [];
  514. res.data.fjjzmap.fjmap[0].forEach((ele) => {
  515. fjmap.push({
  516. tag: ele.wtnum,
  517. wtId: ele.wtId,
  518. wpId: ele.wpId,
  519. color: that.getColor(ele.fjzt),
  520. });
  521. });
  522. keys.forEach((key, keyIndex) => {
  523. res.data.glvos.forEach((ele) => {
  524. Powertrend.value[keyIndex].value.push({
  525. text: new Date(ele.time).formatDate("hh:mm"),
  526. value: ele[key],
  527. });
  528. });
  529. });
  530. dayPieChartKey.forEach((ele) => {
  531. dayData.push({
  532. value: res.data.wxssmap["r" + ele.key],
  533. unit: "万kwh",
  534. name: ele.name,
  535. });
  536. monthData.push({
  537. value: res.data.wxssmap["y" + ele.key] || 0,
  538. unit: "万kwh",
  539. name: ele.name,
  540. });
  541. yearData.push({
  542. value: res.data.wxssmap["n" + ele.key] || 0,
  543. unit: "万kwh",
  544. name: ele.name,
  545. });
  546. });
  547. that.fjmap = fjmap;
  548. that.Powertrend = Powertrend;
  549. that.jczbmap = res.data.jczbmap;
  550. that.pieChartData = {
  551. dayData,
  552. monthData,
  553. yearData,
  554. };
  555. } else {
  556. that.fjmap = [];
  557. that.Powertrend = {};
  558. that.jczbmap = {};
  559. that.pieChartData = {
  560. dayData: [],
  561. monthData: [],
  562. yearData: [],
  563. };
  564. }
  565. },
  566. });
  567. },
  568. // 获取日度损失电量分析
  569. requestLoss (showLoading) {
  570. let that = this;
  571. that.API.requestData({
  572. showLoading,
  573. method: "POST",
  574. subUrl: "monitor/findLossWpBar",
  575. data: {
  576. wpId: that.wpId,
  577. },
  578. success (res) {
  579. let dayLost = [];
  580. res.data.forEach((ele) => {
  581. dayLost.push({
  582. text: ele.timestr,
  583. value: ele.value1,
  584. });
  585. });
  586. that.dayLost = dayLost;
  587. },
  588. });
  589. },
  590. // 获取完成电量
  591. requestPower (showLoading) {
  592. let that = this;
  593. that.API.requestData({
  594. showLoading,
  595. method: "POST",
  596. subUrl: "monitor/findPowerWpBar",
  597. data: {
  598. wpId: that.wpId,
  599. },
  600. success (res) {
  601. let data = [
  602. {
  603. title: "发电量",
  604. yAxisIndex: 0,
  605. value: [],
  606. },
  607. {
  608. title: "预测电量",
  609. yAxisIndex: 0,
  610. value: [],
  611. },
  612. ];
  613. res.data.forEach((ele) => {
  614. data[0].value.push({
  615. text: ele.timestr,
  616. value: ele.value1 || 0,
  617. });
  618. data[1].value.push({
  619. text: ele.timestr,
  620. value: ele.value2 || 0,
  621. });
  622. });
  623. that.CompleteElectricity.data = data;
  624. },
  625. });
  626. },
  627. // 获取月发电量对比
  628. requestMonthPower (showLoading) {
  629. let that = this;
  630. that.API.requestData({
  631. showLoading,
  632. method: "POST",
  633. subUrl: "monitor/findMonthPowerWpBar",
  634. data: {
  635. wpId: that.wpId,
  636. },
  637. success (res) {
  638. let data = [
  639. {
  640. title: "月发电量",
  641. yAxisIndex: 0,
  642. value: [],
  643. },
  644. {
  645. title: "月预测电量",
  646. yAxisIndex: 0,
  647. value: [],
  648. },
  649. ];
  650. res.data.forEach((ele) => {
  651. data[0].value.push({
  652. text: ele.timestr,
  653. value: ele.value1,
  654. });
  655. data[1].value.push({
  656. text: ele.timestr,
  657. value: ele.value2,
  658. });
  659. });
  660. that.MonthCompare.value = data;
  661. },
  662. });
  663. },
  664. },
  665. created () {
  666. let that = this;
  667. that.wpId = that.$route.params.wpId;
  668. that.$nextTick(() => {
  669. that.getWp();
  670. that.requestData(false);
  671. that.timmer = setInterval(() => {
  672. that.requestData(false);
  673. }, that.$store.state.websocketTimeSec);
  674. that.timmer2 = setInterval(() => {
  675. that.nowTime = new Date().formatDate("hh:mm:ss");
  676. }, 1000);
  677. });
  678. },
  679. mounted () { },
  680. unmounted () {
  681. clearInterval(this.timmer);
  682. clearInterval(this.timmer2);
  683. this.timmer = null;
  684. this.timmer2 = null;
  685. },
  686. watch: {
  687. "$route" (res) {
  688. console.warn('router变化');
  689. this.wpId = res.params.wpId;
  690. this.requestData(false);
  691. this.renderBtnActiveIndex();
  692. }
  693. }
  694. };
  695. </script>
  696. <style lang="less">
  697. .wind-site-home {
  698. .first-info {
  699. display: flex;
  700. }
  701. .wind-site-info {
  702. margin-left: 0.7407vh;
  703. flex: 1 0 auto;
  704. & > .row {
  705. height: 100%;
  706. }
  707. .info-item {
  708. text-align: center;
  709. padding: 0 0.37vh;
  710. flex: 1;
  711. .value {
  712. font-size: @fontsize-s;
  713. margin-bottom: 1.111vh;
  714. }
  715. .text {
  716. font-size: 12px;
  717. color: @gray;
  718. }
  719. }
  720. }
  721. .wind-running-info {
  722. margin-left: 0.7407vh;
  723. padding: 0.741vh;
  724. flex: 1 1 auto;
  725. & > .row {
  726. height: 100%;
  727. }
  728. .fengji {
  729. display: flex;
  730. align-content: center;
  731. flex: 0 0 auto;
  732. .fengji-icon {
  733. padding: 1.111vh;
  734. border-radius: 50%;
  735. box-shadow: inset 1.5px -1px 1px 0px @green;
  736. svg {
  737. width: 3.333vh;
  738. height: 3.333vh;
  739. }
  740. }
  741. .info {
  742. display: flex;
  743. flex-direction: column;
  744. justify-content: center;
  745. .text {
  746. font-size: @fontsize-s;
  747. margin-bottom: 1.111vh;
  748. }
  749. .value {
  750. text-align: right;
  751. font-size: 1.852vh;
  752. }
  753. }
  754. }
  755. .situation {
  756. flex: 1 1 auto;
  757. margin-left: 1.481vh;
  758. .row + .row {
  759. margin: 0;
  760. }
  761. .status {
  762. flex: 1;
  763. width: 7.963vh;
  764. display: flex;
  765. align-items: center;
  766. padding: 0.37vh 0;
  767. svg {
  768. width: 1.8519vh;
  769. height: 1.8519vh;
  770. margin-right: 0.37vh;
  771. }
  772. .text {
  773. font-size: 12px;
  774. flex: auto;
  775. }
  776. .value {
  777. font-size: 12px;
  778. padding-right: 0.741vh;
  779. }
  780. }
  781. .icon-status {
  782. .text {
  783. font-size: @fontsize;
  784. font-weight: 600;
  785. }
  786. }
  787. }
  788. }
  789. .light-matrix-panel {
  790. height: 100%;
  791. .panel-body {
  792. height: 100%;
  793. }
  794. }
  795. }
  796. .btn-group-tabs {
  797. display: flex;
  798. flex-direction: row;
  799. }
  800. </style>