index.vue 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121
  1. <template>
  2. <div
  3. :class="$store.state.themeName === 'dark' ? 'dark-matrix' : 'light-matrix'"
  4. >
  5. <!-- 头部按钮选项 -->
  6. <HeaderNav @typeFlag="typeFlag" :isAll="true" />
  7. <div class="matrix-body">
  8. <!-- 接入台数 欠发情况 -->
  9. <div class="body-title">
  10. <div class="base-inf">
  11. <div class="title-name">
  12. <div class="imgs" v-if="tabIndex === 0">
  13. <img src="@assets/imgs/downF.png" />
  14. <img src="@assets/imgs/all.png" class="all_img" />
  15. </div>
  16. <div class="imgs" v-if="tabIndex === -1">
  17. <img src="@assets/imgs/downF.png" />
  18. <img src="@assets/imgs/windup.png" class="qty_img" />
  19. </div>
  20. <div class="imgs" v-if="tabIndex === -2">
  21. <img src="@assets/imgs/downg.png" />
  22. <img src="@assets/imgs/ptyup.png" class="qty_img" />
  23. </div>
  24. <div class="base-num" @click="handleClick('all')">
  25. <div class="base-name">接入台数</div>
  26. <div class="nums">{{ sourceMap.jrts || 0 }}</div>
  27. </div>
  28. </div>
  29. <div class="matrix-status">
  30. <div
  31. class="title-status"
  32. :class="item.color"
  33. v-for="(item, index) in titleList"
  34. :key="index"
  35. >
  36. <div class="status-first" @click="handleClick(item.value1)">
  37. <div class="matrix-status-left">{{ item.name }}</div>
  38. <div class="matrix-status-right">
  39. {{ sourceMap[item.code] }}
  40. </div>
  41. </div>
  42. <div class="status-end" @click="handleClick(item.value2)">
  43. <div class="matrix-status-left">
  44. <i
  45. class="svg-icon svg-icon-sm"
  46. :class="
  47. $store.state.themeName === 'dark'
  48. ? 'svg-icon-' + item.color
  49. : 'white'
  50. "
  51. >
  52. <SvgIcon :svgid="item.icon1"></SvgIcon>
  53. </i>
  54. {{ item.text1 }}
  55. </div>
  56. <div class="matrix-status-right">
  57. {{ sourceMap[item.code1] }}
  58. </div>
  59. </div>
  60. <div class="status-end" @click="handleClick(item.value3)">
  61. <div class="matrix-status-left">
  62. <i
  63. class="svg-icon svg-icon-sm"
  64. :class="
  65. $store.state.themeName === 'dark'
  66. ? 'svg-icon-' + item.color
  67. : 'white'
  68. "
  69. >
  70. <SvgIcon :svgid="item.icon2"></SvgIcon>
  71. </i>
  72. {{ item.text2 }}
  73. </div>
  74. <div class="matrix-status-right">
  75. {{ sourceMap[item.code2] }}
  76. </div>
  77. </div>
  78. </div>
  79. </div>
  80. </div>
  81. <div class="unpaid">
  82. <div class="unpaid-item">
  83. <img src="@assets/imgs/unpaid.png" class="unpaid-img" alt="" />
  84. <div class="unpaid-name">欠发情况</div>
  85. </div>
  86. <div
  87. class="unpaid-item1"
  88. v-for="(item, index) in unpaidList"
  89. :key="index"
  90. :class="item.color"
  91. >
  92. <div class="percent">{{ item.num3 }}</div>
  93. <div class="nums">
  94. {{
  95. sourceMap[item.key]
  96. ? (sourceMap[item.key] / 10000).toFixed(2)
  97. : 0
  98. }}
  99. </div>
  100. </div>
  101. </div>
  102. </div>
  103. <!-- 风电场/光电站列表 -->
  104. <el-scrollbar
  105. height="calc(100% - 72px)"
  106. v-loading="loading"
  107. element-loading-background="rgba(4, 12, 11, 0.8)"
  108. element-loading-text="加载中..."
  109. >
  110. <div class="matrix-box">
  111. <!-- 单个风场/电站 -->
  112. <div
  113. class="matrixs"
  114. v-for="(value, index) in showMatrixList"
  115. :key="index"
  116. :class="{ active_vie: value.wtlist.length == 0 }"
  117. >
  118. <!-- wp -->
  119. <div class="matrix-title">
  120. <!--svg + wpname @click="handleToggle(index)"-->
  121. <div class="matrix-svg">
  122. <i
  123. v-if="value.czlx == -1"
  124. class="svg-icon svg-icon-sm svg-icon-green"
  125. >
  126. <SvgIcon svgid="svg-wind-site"></SvgIcon>
  127. </i>
  128. <i v-else class="svg-icon svg-icon-sm svg-icon-orange">
  129. <SvgIcon svgid="svg-photovoltaic"></SvgIcon>
  130. </i>
  131. <span
  132. class="station-name"
  133. :style="value.czlx == -1 ? '' : 'color:#ff8100'"
  134. >{{ value.wpname }}</span
  135. >
  136. </div>
  137. <!-- 右侧统计项 -->
  138. <div class="indicator">
  139. <div
  140. class="sub-title-item"
  141. :class="indexs >= 8 && !item.flag ? 'active' : 'active1'"
  142. v-for="(item, indexs) in subTitleDatas"
  143. :key="indexs"
  144. @click="handleIndicatorClick(value.czlx, value.wpid)"
  145. >
  146. <span>{{
  147. item.type === value.czlx ? item.text1 : item.text
  148. }}</span>
  149. <span class="sub-value" :style="{ color: item.color }">
  150. {{
  151. indexs >= 8
  152. ? value[item.key]
  153. ? item.ratio
  154. ? (value[item.key] / item.ratio).toFixed(2)
  155. : value[item.key].toFixed(2)
  156. : "0.00"
  157. : value[item.key]
  158. }}
  159. </span>
  160. </div>
  161. </div>
  162. </div>
  163. <!-- wt v-show="value['switch' + index]"-->
  164. <div class="matrix-list">
  165. <div
  166. class="matrix-card"
  167. style="cursor: pointer"
  168. :class="
  169. val.status !== '' && colorList[Number(val.status)]
  170. ? colorList[Number(val.status)]
  171. : 'gray'
  172. "
  173. v-for="(val, indexe) in value.wtlist"
  174. :key="indexe"
  175. >
  176. <div class="info">
  177. <!-- wtname + 状态 -->
  178. <div
  179. class="card-left"
  180. @click="handleLeftClick(val, value.czlx, value.wpid)"
  181. >
  182. <!-- <i class="lock" @mouseenter="handleMouse"></i> -->
  183. <div class="card-name">{{ val.wtname }}</div>
  184. <i
  185. class="svg-icon svg-icon-sm"
  186. :class="
  187. val.status === 4 || val.status === 5
  188. ? 'svg-icon-white'
  189. : `svg-icon-${colorList[Number(val.status)]}`
  190. "
  191. >
  192. <SvgIcon :svgid="mapping[val.status]"></SvgIcon
  193. ></i>
  194. </div>
  195. <div class="dashed" />
  196. <!-- 数据项 -->
  197. <div
  198. class="card-right"
  199. @click="handleRightClick(value.czlx, val.wtid)"
  200. >
  201. <div class="right-item">
  202. <i
  203. class="svg-icon svg-icon-sm"
  204. :class="
  205. val.status === 4 || val.status === 5
  206. ? 'svg-icon-white'
  207. : `svg-icon-${colorList[Number(val.status)]}`
  208. "
  209. >
  210. <SvgIcon svgid="svg-P"></SvgIcon
  211. ></i>
  212. <div class="right-value">
  213. {{
  214. val.power
  215. ? val && Number(val.power)?.toFixed(2)
  216. : "0.00"
  217. }}
  218. </div>
  219. </div>
  220. <div class="right-item">
  221. <i
  222. class="svg-icon svg-icon-sm"
  223. :class="
  224. val.status === 4 || val.status === 5
  225. ? 'svg-icon-white'
  226. : `svg-icon-${colorList[Number(val.status)]}`
  227. "
  228. >
  229. <SvgIcon
  230. :svgid="value.czlx == '-1' ? 'svg-W' : 'svg-A'"
  231. ></SvgIcon
  232. ></i>
  233. <div class="right-value">
  234. {{
  235. value.czlx == "-1"
  236. ? val.speed
  237. ? Number(val.speed)?.toFixed(2)
  238. : "0.00"
  239. : val.current
  240. ? Number(val.current)?.toFixed(2)
  241. : "0.00"
  242. }}
  243. </div>
  244. </div>
  245. <div class="right-item">
  246. <i
  247. class="svg-icon svg-icon-sm"
  248. :class="
  249. val.status === 4 || val.status === 5
  250. ? 'svg-icon-white'
  251. : `svg-icon-${colorList[Number(val.status)]}`
  252. "
  253. >
  254. <SvgIcon
  255. :svgid="value.czlx == '-1' ? 'svg-R' : 'svg-V'"
  256. ></SvgIcon
  257. ></i>
  258. <div class="right-value">
  259. {{
  260. value.czlx == "-1"
  261. ? val.transfer
  262. ? Number(val.transfer)?.toFixed(2)
  263. : "0.00"
  264. : val.voltage
  265. ? Number(val.voltage)?.toFixed(2)
  266. : "0.00"
  267. }}
  268. </div>
  269. </div>
  270. </div>
  271. </div>
  272. <div class="matrix-progress">
  273. <div
  274. class="progress-block"
  275. :style="{ width: (val.rate > 100 ? 100 : val.rate) + '%' }"
  276. :class="
  277. findUpColor(unpaidList, parseInt(Number(val.ssqfzt)) + 1)
  278. "
  279. ></div>
  280. </div>
  281. </div>
  282. </div>
  283. </div>
  284. </div>
  285. </el-scrollbar>
  286. <qushi-dialog ref="child" :chartName="chartName"></qushi-dialog>
  287. <el-dialog
  288. width="90%"
  289. top="40px"
  290. v-model="displayMatrix"
  291. :show-close="true"
  292. destroy-on-close
  293. >
  294. <template #title>
  295. <div class="dialog-title">
  296. <div class="title">设备详情</div>
  297. </div>
  298. </template>
  299. <div class="dialog-body" style="height: 800px">
  300. <img class="dialog-img" src="@assets/imgs/dialog.png" />
  301. <windDetail
  302. v-show="wtType == -1"
  303. :wind="wind"
  304. :flag="flag"
  305. ></windDetail>
  306. <lightDetail
  307. v-show="wtType == -2"
  308. :wind="wind"
  309. :flag="flag"
  310. ></lightDetail>
  311. </div>
  312. </el-dialog>
  313. </div>
  314. </div>
  315. </template>
  316. <script>
  317. import qushiDialog from "@/components/qushi/qushiDialog.vue";
  318. import windDetail from "@/components/windDetail/index";
  319. import lightDetail from "@/components/lightDetial/index.vue";
  320. import SvgIcon from "@com/coms/icon/svg-icon.vue";
  321. import { deepClone, findUpColor } from "@/utills/func.js";
  322. import HeaderNav from "@/components/headerNavSta/index.vue";
  323. import api from "@api/cockpit/matrix/index.js";
  324. export default {
  325. // 名称
  326. name: "DetailMatrix", //明细矩阵
  327. // 使用组件
  328. components: {
  329. SvgIcon,
  330. HeaderNav,
  331. qushiDialog,
  332. windDetail,
  333. lightDetail,
  334. },
  335. // 数据
  336. data() {
  337. return {
  338. loading: false,
  339. timmer: null, // 定时器开关
  340. sourceMap: {}, // 接口数据
  341. showMatrixList: [], //展示数据
  342. fillFjzt: "all", // 风机/电站状态
  343. mapping: {
  344. 0: "svg-standby",
  345. 1: "svg-manual",
  346. 2: "svg-normal-power",
  347. 3: "svg-drop-output",
  348. 4: "svg-gz-downtime",
  349. 5: "svg-field-involved",
  350. 6: "svg-jx-downtime",
  351. 7: "svg-field-involved",
  352. 8: "svg-limit-power",
  353. 9: "svg-downtime",
  354. 10: "svg-intranet-involvement",
  355. 11: "svg-environment",
  356. 12: "svg-offline",
  357. 13: "svg-unknown",
  358. },
  359. status: "all",
  360. titleArr: [],
  361. // 左侧标签
  362. titleList: [
  363. {
  364. color: "blue",
  365. name: "待机",
  366. text1: "待机",
  367. text2: "手动停机",
  368. value1: "dj",
  369. value2: "0",
  370. value3: "1",
  371. code: "djts",
  372. code1: "dfts",
  373. code2: "sdtj",
  374. icon1: "svg-standby",
  375. icon2: "svg-manual",
  376. },
  377. {
  378. color: "green",
  379. name: "并网",
  380. text1: "正常运行",
  381. text2: "降出力运行",
  382. value1: "yx",
  383. value2: "2",
  384. value3: "3",
  385. code: "bwts",
  386. code1: "zcyx",
  387. code2: "jclyx",
  388. icon1: "svg-normal-power",
  389. icon2: "svg-drop-output",
  390. },
  391. {
  392. color: "red",
  393. name: "故障",
  394. text1: "故障停机",
  395. text2: "故障受累",
  396. value1: "gz",
  397. value2: "4",
  398. value3: "5",
  399. code: "gzts",
  400. code1: "gztj",
  401. code2: "gzsl",
  402. icon1: "svg-gz-downtime",
  403. icon2: "svg-field-involved",
  404. },
  405. {
  406. color: "orange",
  407. name: "检修",
  408. text1: "检修停机",
  409. text2: "检修受累",
  410. value1: "jx",
  411. value2: "6",
  412. value3: "7",
  413. code: "jxts",
  414. code1: "jxtj",
  415. code2: "jxsl",
  416. icon1: "svg-jx-downtime",
  417. icon2: "svg-field-involved",
  418. },
  419. {
  420. color: "pink",
  421. name: "限电",
  422. text1: "限电降出力",
  423. text2: "限电停机",
  424. value1: "xd",
  425. value2: "8",
  426. value3: "9",
  427. code: "xdts",
  428. code1: "xdjcl",
  429. code2: "xdtj",
  430. icon1: "svg-limit-power",
  431. icon2: "svg-downtime",
  432. },
  433. {
  434. color: "write",
  435. name: "受累",
  436. text1: "电网受累",
  437. text2: "环境受累",
  438. value1: "sl",
  439. value2: "10",
  440. value3: "11",
  441. code: "slts",
  442. code1: "dwsl",
  443. code2: "hjsl",
  444. icon1: "svg-intranet-involvement",
  445. icon2: "svg-environment",
  446. },
  447. {
  448. color: "gray",
  449. name: "离线",
  450. text1: "离线",
  451. text2: "未知",
  452. value1: "lx",
  453. value2: "12",
  454. value3: "13",
  455. code: "lx",
  456. code1: "lxz",
  457. code2: "wz",
  458. icon1: "svg-offline",
  459. icon2: "svg-unknown",
  460. },
  461. ],
  462. // 右侧欠发标签
  463. unpaidList: [
  464. {
  465. id: 1,
  466. test: "欠发电量",
  467. num1: 0,
  468. key: "qf0",
  469. num3: "0%~5%",
  470. color: "upGreen",
  471. },
  472. {
  473. id: 2,
  474. test: "欠发电量",
  475. num1: 0,
  476. key: "qf1",
  477. num3: "5%~10%",
  478. color: "upSkyBlue",
  479. },
  480. {
  481. id: 3,
  482. test: "欠发电量",
  483. num1: 0,
  484. key: "qf2",
  485. num3: "10%~20%",
  486. color: "upBlue",
  487. },
  488. {
  489. id: 4,
  490. test: "欠发电量",
  491. num1: 0,
  492. key: "qf3",
  493. num3: "20%~40%",
  494. color: "upPurple",
  495. },
  496. {
  497. id: 5,
  498. test: "欠发电量",
  499. num1: 0,
  500. key: "qf4",
  501. num3: ">40%",
  502. color: "upPink",
  503. },
  504. ],
  505. colorList: [
  506. "blue",
  507. "blue",
  508. "green",
  509. "green",
  510. "red",
  511. "red",
  512. "orange",
  513. "orange",
  514. "pink",
  515. "pink",
  516. "write",
  517. "write",
  518. "gray",
  519. "gray",
  520. ],
  521. subTitleDatas: [
  522. {
  523. text: "接入台数",
  524. color: "#FFFFFF",
  525. key: "jrts",
  526. },
  527. {
  528. text: "待机台数",
  529. color: "#1c99ff",
  530. key: "djts",
  531. },
  532. {
  533. text: "并网台数",
  534. color: "#05BB4C",
  535. key: "bwts",
  536. },
  537. {
  538. text: "故障台数",
  539. color: "#BA3237",
  540. key: "gzts",
  541. },
  542. {
  543. text: "检修台数",
  544. color: "#E17D24",
  545. key: "jxts",
  546. },
  547. {
  548. text: "限电台数",
  549. color: "#C530C8",
  550. key: "xdts",
  551. },
  552. {
  553. text: "受累台数",
  554. color: "#FFFFFF",
  555. key: "slts",
  556. },
  557. {
  558. text: "离线台数",
  559. color: "#606769",
  560. key: "lxts",
  561. },
  562. {
  563. text: "风速",
  564. color: "#9CA5A8",
  565. key: "spped",
  566. text1: "光照强度",
  567. type: "-2",
  568. },
  569. {
  570. text: "预测功率",
  571. color: "#9CA5A8",
  572. key: "ycgl",
  573. },
  574. {
  575. text: "保证功率",
  576. color: "#9CA5A8",
  577. key: "bzgl",
  578. ratio: 1000,
  579. },
  580. // {
  581. // text: "理论功率",
  582. // color: "#9CA5A8",
  583. // key: "llgl",
  584. // ratio: 1000,
  585. // },
  586. {
  587. text: "实际功率",
  588. color: "#9CA5A8",
  589. key: "sjgl",
  590. ratio: 1000,
  591. },
  592. // {
  593. // text: "AGC指令",
  594. // color: "#9CA5A8",
  595. // key: "agc",
  596. // flag: true,
  597. // },
  598. // {
  599. // text: "出线功率",
  600. // color: "#9CA5A8",
  601. // key: "cxgl",
  602. // ratio: 1000,
  603. // flag: true,
  604. // },
  605. ],
  606. activeTab: "fc", //全部 风电 光伏
  607. enterpriseIndex: "all", //公司
  608. tabIndex: -1, //全部 0 风电 -1 光伏-2
  609. // wt指标
  610. ssPv: [
  611. {
  612. statiomName: "功率",
  613. stse: "",
  614. sts: "AI114",
  615. },
  616. {
  617. statiomName: "风速",
  618. stse: "",
  619. sts: "AI066",
  620. },
  621. {
  622. statiomName: "发电机转速",
  623. stse: "",
  624. sts: "AI060",
  625. },
  626. ],
  627. // wp指标
  628. stse: [
  629. {
  630. statiomName: "风速",
  631. stse: "",
  632. sts: "SSPJFS",
  633. },
  634. {
  635. statiomName: "预测功率",
  636. stse: "",
  637. sts: "FCFGDQDT0001",
  638. },
  639. {
  640. statiomName: "保证功率",
  641. stse: "",
  642. sts: "SSZBZGL",
  643. },
  644. // {
  645. // statiomName: "理论功率",
  646. // stse: "",
  647. // sts: "SSZNHGLZS",
  648. // },
  649. {
  650. statiomName: "实际功率",
  651. stse: "",
  652. sts: "SSZGL",
  653. },
  654. ],
  655. // 弹窗标题
  656. chartName: "对比曲线",
  657. displayMatrix: false,
  658. wind: {},
  659. wtType: -1,
  660. flag: false,
  661. };
  662. },
  663. // 函数
  664. methods: {
  665. handleMouse() {
  666. },
  667. deepClone,
  668. findUpColor,
  669. // 头部tab选择
  670. typeFlag(activeTab, enterpriseIndex) {
  671. this.activeTab = activeTab;
  672. this.tabIndex = activeTab == "all" ? 0 : activeTab == "fc" ? -1 : -2;
  673. this.enterpriseIndex = enterpriseIndex;
  674. },
  675. // 请求服务
  676. requestData() {
  677. api
  678. .matrixDetailPush({
  679. company:
  680. this.enterpriseIndex == "all"
  681. ? "0"
  682. : this.enterpriseIndex.toString(),
  683. type: this.tabIndex.toString(),
  684. })
  685. .then((res) => {
  686. if (Object.values(res.data.data).length) {
  687. let sourceMap = res.data.data;
  688. // sourceMap.powerVos.forEach((item, index) => {
  689. // item["switch" + index] = true;
  690. // });
  691. this.sourceMap = sourceMap;
  692. if (this.fillFjzt) {
  693. this.handleClick(this.fillFjzt);
  694. }
  695. } else {
  696. this.sourceMap = {};
  697. this.showMatrixList = [];
  698. }
  699. });
  700. },
  701. // 点击切换状态
  702. handleClick(val) {
  703. this.fillFjzt = val;
  704. this.handleClickWind();
  705. },
  706. // 点击开关闭场站设备
  707. handleToggle(index) {
  708. // this.showMatrixList[index]["switch" + index] =
  709. // !this.showMatrixList[index]["switch" + index];
  710. },
  711. // 状态切换改变数据
  712. handleClickWind() {
  713. this.loading = false;
  714. this.showMatrixList = JSON.parse(JSON.stringify(this.sourceMap.powerVos));
  715. let matrixList = this.sourceMap.powerVos;
  716. if (this.fillFjzt !== "all") {
  717. this.showMatrixList.forEach((item) => {
  718. item.wtlist = [];
  719. });
  720. switch (this.fillFjzt) {
  721. case "dj":
  722. matrixList.forEach((val, index) => {
  723. val.wtlist.forEach((item) => {
  724. if (item.status === 0 || item.status === 1) {
  725. this.showMatrixList[index].wtlist.push(item);
  726. }
  727. });
  728. });
  729. break;
  730. case "0":
  731. matrixList.forEach((val, index) => {
  732. val.wtlist.forEach((item) => {
  733. if (item.status === 0) {
  734. this.showMatrixList[index].wtlist.push(item);
  735. }
  736. });
  737. });
  738. break;
  739. case "1":
  740. matrixList.forEach((val, index) => {
  741. val.wtlist.forEach((item) => {
  742. if (item.status === 1) {
  743. this.showMatrixList[index].wtlist.push(item);
  744. }
  745. });
  746. });
  747. break;
  748. case "yx":
  749. matrixList.forEach((val, index) => {
  750. val.wtlist.forEach((item) => {
  751. if (item.status === 2 || item.status === 3) {
  752. this.showMatrixList[index].wtlist.push(item);
  753. }
  754. });
  755. });
  756. break;
  757. case "2":
  758. matrixList.forEach((val, index) => {
  759. val.wtlist.forEach((item) => {
  760. if (item.status === 2) {
  761. this.showMatrixList[index].wtlist.push(item);
  762. }
  763. });
  764. });
  765. break;
  766. case "3":
  767. matrixList.forEach((val, index) => {
  768. val.wtlist.forEach((item) => {
  769. if (item.status === 3) {
  770. this.showMatrixList[index].wtlist.push(item);
  771. }
  772. });
  773. });
  774. break;
  775. case "gz":
  776. matrixList.forEach((val, index) => {
  777. val.wtlist.forEach((item) => {
  778. if (item.status === 4 || item.status === 5) {
  779. this.showMatrixList[index].wtlist.push(item);
  780. }
  781. });
  782. });
  783. break;
  784. case "4":
  785. matrixList.forEach((val, index) => {
  786. val.wtlist.forEach((item) => {
  787. if (item.status === 4) {
  788. this.showMatrixList[index].wtlist.push(item);
  789. }
  790. });
  791. });
  792. break;
  793. case "5":
  794. matrixList.forEach((val, index) => {
  795. val.wtlist.forEach((item) => {
  796. if (item.status === 5) {
  797. this.showMatrixList[index].wtlist.push(item);
  798. }
  799. });
  800. });
  801. break;
  802. case "jx":
  803. matrixList.forEach((val, index) => {
  804. val.wtlist.forEach((item) => {
  805. if (item.status === 6 || item.status === 7) {
  806. this.showMatrixList[index].wtlist.push(item);
  807. }
  808. });
  809. });
  810. break;
  811. case "6":
  812. matrixList.forEach((val, index) => {
  813. val.wtlist.forEach((item) => {
  814. if (item.status === 6) {
  815. this.showMatrixList[index].wtlist.push(item);
  816. }
  817. });
  818. });
  819. break;
  820. case "7":
  821. matrixList.forEach((val, index) => {
  822. val.wtlist.forEach((item) => {
  823. if (item.status === 7) {
  824. this.showMatrixList[index].wtlist.push(item);
  825. }
  826. });
  827. });
  828. break;
  829. case "xd":
  830. matrixList.forEach((val, index) => {
  831. val.wtlist.forEach((item) => {
  832. if (item.status === 8 || item.status === 9) {
  833. this.showMatrixList[index].wtlist.push(item);
  834. }
  835. });
  836. });
  837. break;
  838. case "8":
  839. matrixList.forEach((val, index) => {
  840. val.wtlist.forEach((item) => {
  841. if (item.status === 8) {
  842. this.showMatrixList[index].wtlist.push(item);
  843. }
  844. });
  845. });
  846. break;
  847. case "9":
  848. matrixList.forEach((val, index) => {
  849. val.wtlist.forEach((item) => {
  850. if (item.status === 9) {
  851. this.showMatrixList[index].wtlist.push(item);
  852. }
  853. });
  854. });
  855. break;
  856. case "sl":
  857. matrixList.forEach((val, index) => {
  858. val.wtlist.forEach((item) => {
  859. if (item.status === 10 || item.status === 11) {
  860. this.showMatrixList[index].wtlist.push(item);
  861. }
  862. });
  863. });
  864. break;
  865. case "10":
  866. matrixList.forEach((val, index) => {
  867. val.wtlist.forEach((item) => {
  868. if (item.status === 10) {
  869. this.showMatrixList[index].wtlist.push(item);
  870. }
  871. });
  872. });
  873. break;
  874. case "11":
  875. matrixList.forEach((val, index) => {
  876. val.wtlist.forEach((item) => {
  877. if (item.status === 11) {
  878. this.showMatrixList[index].wtlist.push(item);
  879. }
  880. });
  881. });
  882. break;
  883. case "lx":
  884. matrixList.forEach((val, index) => {
  885. val.wtlist.forEach((item) => {
  886. if (item.status === 12 || item.status === 13) {
  887. this.showMatrixList[index].wtlist.push(item);
  888. }
  889. });
  890. });
  891. break;
  892. case "12":
  893. matrixList.forEach((val, index) => {
  894. val.wtlist.forEach((item) => {
  895. if (item.status === 12) {
  896. this.showMatrixList[index].wtlist.push(item);
  897. }
  898. });
  899. });
  900. break;
  901. case "13":
  902. matrixList.forEach((val, index) => {
  903. val.wtlist.forEach((item) => {
  904. if (item.status === 13) {
  905. this.showMatrixList[index].wtlist.push(item);
  906. }
  907. });
  908. });
  909. break;
  910. // case "all":
  911. // this.showMatrixList = this.sourceMap.powerVos;
  912. // break;
  913. }
  914. } else {
  915. this.showMatrixList = this.sourceMap.powerVos;
  916. }
  917. },
  918. // 点击左侧数据弹出曲线
  919. handleLeftClick(wt, type, wpid) {
  920. this.displayMatrix = true;
  921. this.wtType = type;
  922. this.$nextTick(() => {
  923. this.wind = { ...wt, wtType: type, wpid };
  924. this.flag = true;
  925. });
  926. // this.$refs.windDetail.start(wt);
  927. },
  928. // 点击右侧数据弹出曲线
  929. handleRightClick(type, wtid) {
  930. let y = this.deepClone(this.ssPv);
  931. if (type == "-2") {
  932. y[1].statiomName = "电流";
  933. y[1].sts = "AI075";
  934. y[2].statiomName = "电压";
  935. y[2].sts = "AIG055";
  936. }
  937. this.$refs.child.openCurvDatas(y, 2, wtid);
  938. },
  939. // 点击统计项弹出曲线
  940. handleIndicatorClick(czlx, wpid) {
  941. let y = this.deepClone(this.stse);
  942. if (czlx == "-2") {
  943. y[0].statiomName = "光照强度";
  944. y[0].sts = "SSPJGZD";
  945. }
  946. this.$refs.child.openCurvDatas(y, 1, wpid);
  947. },
  948. },
  949. created() {
  950. let that = this;
  951. that.$nextTick(() => {
  952. this.loading = true;
  953. that.requestData();
  954. that.timmer = setInterval(() => {
  955. that.requestData();
  956. }, 5000);
  957. });
  958. },
  959. mounted() {},
  960. unmounted() {
  961. clearInterval(this.timmer);
  962. this.timmer = null;
  963. },
  964. };
  965. </script>
  966. <style lang="less" scoped>
  967. @panelHeight: 60px;
  968. @titleHeight: 26px;
  969. .dark-matrix {
  970. height: 100%;
  971. display: flex;
  972. flex-direction: column;
  973. .matrix-body {
  974. display: flex;
  975. flex-direction: column;
  976. height: 100%;
  977. padding-right: 20px;
  978. padding-left: 20px;
  979. padding-bottom: 5px;
  980. .body-title {
  981. display: flex;
  982. flex-direction: row;
  983. align-items: center;
  984. width: 100%;
  985. height: 78px;
  986. background-color: rgba(0, 0, 0, 0.45);
  987. border-radius: 10px;
  988. .base-inf {
  989. display: flex;
  990. flex-direction: row;
  991. align-items: center;
  992. width: 60%;
  993. height: 100%;
  994. .title-name {
  995. display: flex;
  996. flex-direction: row;
  997. align-items: center;
  998. width: 18%;
  999. height: 100%;
  1000. .imgs {
  1001. display: flex;
  1002. flex-direction: row;
  1003. align-items: center;
  1004. height: 100%;
  1005. margin-left: 11px;
  1006. }
  1007. .base-num {
  1008. display: flex;
  1009. flex-direction: column;
  1010. align-items: center;
  1011. justify-content: center;
  1012. cursor: pointer;
  1013. .nums {
  1014. font-size: 18px;
  1015. font-family: Arial;
  1016. font-weight: 400;
  1017. color: #ffffff;
  1018. }
  1019. .base-name {
  1020. font-size: 14px;
  1021. font-family: Microsoft YaHei;
  1022. font-weight: 400;
  1023. color: #b3b3b3;
  1024. margin-bottom: 10px;
  1025. }
  1026. }
  1027. .all_img {
  1028. width: 20px;
  1029. position: relative;
  1030. left: -34px;
  1031. top: 1px;
  1032. margin-right: 10px;
  1033. animation: move 1s infinite linear;
  1034. }
  1035. .qty_img {
  1036. position: relative;
  1037. left: -39px;
  1038. top: 1px;
  1039. animation: move 1s infinite linear;
  1040. }
  1041. @keyframes move {
  1042. 0% {
  1043. top: 0px;
  1044. }
  1045. 20% {
  1046. top: -1px;
  1047. }
  1048. 40% {
  1049. top: -2px;
  1050. }
  1051. 80% {
  1052. top: -1px;
  1053. }
  1054. 100% {
  1055. top: 0px;
  1056. }
  1057. }
  1058. }
  1059. .matrix-status {
  1060. width: 84%;
  1061. display: flex;
  1062. flex-direction: row;
  1063. align-items: center;
  1064. height: 80%;
  1065. }
  1066. .title-status {
  1067. display: flex;
  1068. flex-direction: column;
  1069. width: 15%;
  1070. height: 100%;
  1071. padding-right: 5px;
  1072. cursor: pointer;
  1073. .status-first {
  1074. width: 100%;
  1075. height: 34%;
  1076. display: flex;
  1077. flex-direction: row;
  1078. align-items: center;
  1079. justify-content: space-between;
  1080. background-color: rgba(5, 187, 76, 0.28);
  1081. border-top: 1px solid #0b3d26;
  1082. border-left: 1px solid #0b3d26;
  1083. border-right: 1px solid #0b3d26;
  1084. .matrix-status-left {
  1085. margin-left: 6px;
  1086. font-size: 14px;
  1087. font-family: Microsoft YaHei;
  1088. font-weight: 400;
  1089. color: #05bb4c;
  1090. }
  1091. .matrix-status-right {
  1092. margin-right: 6px;
  1093. font-size: 16px;
  1094. font-family: Arial;
  1095. font-weight: 400;
  1096. color: #05bb4c;
  1097. }
  1098. }
  1099. .status-end {
  1100. width: 100%;
  1101. height: 33%;
  1102. display: flex;
  1103. flex-direction: row;
  1104. align-items: center;
  1105. justify-content: space-between;
  1106. background-color: rgba(5, 187, 76, 0.16);
  1107. border-left: 1px solid #0b3d26;
  1108. border-right: 1px solid #0b3d26;
  1109. border-bottom: 1px solid #0b3d26;
  1110. .matrix-status-left {
  1111. margin-left: 6px;
  1112. font-size: 12px;
  1113. font-family: Microsoft YaHei;
  1114. font-weight: 400;
  1115. color: #05bb4c;
  1116. }
  1117. .matrix-status-right {
  1118. margin-right: 6px;
  1119. font-size: 14px;
  1120. font-family: Arial;
  1121. font-weight: 400;
  1122. color: #05bb4c;
  1123. }
  1124. }
  1125. .matrix-status-right {
  1126. margin-right: 6px;
  1127. }
  1128. &.green {
  1129. .status-first {
  1130. width: 100%;
  1131. height: 34%;
  1132. display: flex;
  1133. flex-direction: row;
  1134. align-items: center;
  1135. justify-content: space-between;
  1136. background-color: rgba(5, 187, 76, 0.28);
  1137. border-top: 1px solid #0b3d26;
  1138. border-left: 1px solid #0b3d26;
  1139. border-right: 1px solid #0b3d26;
  1140. .matrix-status-left {
  1141. margin-left: 6px;
  1142. font-size: 14px;
  1143. font-family: Microsoft YaHei;
  1144. font-weight: 400;
  1145. color: #05bb4c;
  1146. }
  1147. .matrix-status-right {
  1148. margin-right: 6px;
  1149. font-size: 16px;
  1150. font-family: Arial;
  1151. font-weight: 400;
  1152. color: #05bb4c;
  1153. }
  1154. }
  1155. .status-end {
  1156. width: 100%;
  1157. height: 33%;
  1158. display: flex;
  1159. flex-direction: row;
  1160. align-items: center;
  1161. justify-content: space-between;
  1162. background-color: rgba(5, 187, 76, 0.16);
  1163. border-left: 1px solid #0b3d26;
  1164. border-right: 1px solid #0b3d26;
  1165. border-bottom: 1px solid #0b3d26;
  1166. .matrix-status-left {
  1167. margin-left: 6px;
  1168. font-size: 12px;
  1169. font-family: Microsoft YaHei;
  1170. font-weight: 400;
  1171. color: #05bb4c;
  1172. }
  1173. .matrix-status-right {
  1174. margin-right: 6px;
  1175. font-size: 14px;
  1176. font-family: Arial;
  1177. font-weight: 400;
  1178. color: #05bb4c;
  1179. }
  1180. }
  1181. .matrix-status-right {
  1182. margin-right: 6px;
  1183. }
  1184. }
  1185. &.blue {
  1186. .status-first {
  1187. width: 100%;
  1188. height: 34%;
  1189. display: flex;
  1190. flex-direction: row;
  1191. align-items: center;
  1192. justify-content: space-between;
  1193. background-color: rgba(0, 70, 199, 0.48);
  1194. border-top: 1px solid #1e2341;
  1195. border-left: 1px solid #1e2341;
  1196. border-right: 1px solid #1e2341;
  1197. .matrix-status-left {
  1198. margin-left: 6px;
  1199. font-size: 14px;
  1200. font-family: Microsoft YaHei;
  1201. font-weight: 400;
  1202. color: #1c99ff;
  1203. }
  1204. .matrix-status-right {
  1205. margin-right: 6px;
  1206. font-size: 16px;
  1207. font-family: Arial;
  1208. font-weight: 400;
  1209. color: #1c99ff;
  1210. }
  1211. }
  1212. .status-end {
  1213. width: 100%;
  1214. height: 33%;
  1215. display: flex;
  1216. flex-direction: row;
  1217. align-items: center;
  1218. justify-content: space-between;
  1219. background-color: rgba(0, 70, 199, 0.16);
  1220. border-left: 1px solid #1e2341;
  1221. border-right: 1px solid #1e2341;
  1222. border-bottom: 1px solid #1e2341;
  1223. .matrix-status-left {
  1224. margin-left: 6px;
  1225. font-size: 12px;
  1226. font-family: Microsoft YaHei;
  1227. font-weight: 400;
  1228. color: #1c99ff;
  1229. }
  1230. .matrix-status-right {
  1231. margin-right: 6px;
  1232. font-size: 14px;
  1233. font-family: Arial;
  1234. font-weight: 400;
  1235. color: #1c99ff;
  1236. }
  1237. }
  1238. .matrix-status-right {
  1239. margin-right: 6px;
  1240. }
  1241. }
  1242. &.pink {
  1243. .status-first {
  1244. width: 100%;
  1245. height: 34%;
  1246. display: flex;
  1247. flex-direction: row;
  1248. align-items: center;
  1249. justify-content: space-between;
  1250. background-color: rgba(197, 48, 200, 0.28);
  1251. border-top: 1px solid #3e1a48;
  1252. border-left: 1px solid #3e1a48;
  1253. border-right: 1px solid #3e1a48;
  1254. .matrix-status-left {
  1255. margin-left: 6px;
  1256. font-size: 14px;
  1257. font-family: Microsoft YaHei;
  1258. font-weight: 400;
  1259. color: #c530c8;
  1260. }
  1261. .matrix-status-right {
  1262. margin-right: 6px;
  1263. font-size: 16px;
  1264. font-family: Arial;
  1265. font-weight: 400;
  1266. color: #c530c8;
  1267. }
  1268. }
  1269. .status-end {
  1270. width: 100%;
  1271. height: 33%;
  1272. display: flex;
  1273. flex-direction: row;
  1274. align-items: center;
  1275. justify-content: space-between;
  1276. background-color: rgba(197, 48, 200, 0.16);
  1277. border-left: 1px solid #3e1a48;
  1278. border-right: 1px solid #3e1a48;
  1279. border-bottom: 1px solid #3e1a48;
  1280. .matrix-status-left {
  1281. margin-left: 6px;
  1282. font-size: 12px;
  1283. font-family: Microsoft YaHei;
  1284. font-weight: 400;
  1285. color: #c530c8;
  1286. }
  1287. .matrix-status-right {
  1288. margin-right: 6px;
  1289. font-size: 14px;
  1290. font-family: Arial;
  1291. font-weight: 400;
  1292. color: #c530c8;
  1293. }
  1294. }
  1295. .matrix-status-right {
  1296. margin-right: 6px;
  1297. }
  1298. }
  1299. &.red {
  1300. .status-first {
  1301. width: 100%;
  1302. height: 34%;
  1303. display: flex;
  1304. flex-direction: row;
  1305. align-items: center;
  1306. justify-content: space-between;
  1307. background-color: rgba(186, 50, 55, 0.28);
  1308. border-top: 1px solid #3c1c1f;
  1309. border-left: 1px solid #3c1c1f;
  1310. border-right: 1px solid #3c1c1f;
  1311. .matrix-status-left {
  1312. margin-left: 6px;
  1313. font-size: 14px;
  1314. font-family: Microsoft YaHei;
  1315. font-weight: 400;
  1316. color: #ba3237;
  1317. }
  1318. .matrix-status-right {
  1319. margin-right: 6px;
  1320. font-size: 16px;
  1321. font-family: Arial;
  1322. font-weight: 400;
  1323. color: #ba3237;
  1324. }
  1325. }
  1326. .status-end {
  1327. width: 100%;
  1328. height: 33%;
  1329. display: flex;
  1330. flex-direction: row;
  1331. align-items: center;
  1332. justify-content: space-between;
  1333. background-color: rgba(186, 50, 55, 0.16);
  1334. border-left: 1px solid #3c1c1f;
  1335. border-right: 1px solid #3c1c1f;
  1336. border-bottom: 1px solid #3c1c1f;
  1337. .matrix-status-left {
  1338. margin-left: 6px;
  1339. font-size: 12px;
  1340. font-family: Microsoft YaHei;
  1341. font-weight: 400;
  1342. color: #ba3237;
  1343. }
  1344. .matrix-status-right {
  1345. margin-right: 6px;
  1346. font-size: 14px;
  1347. font-family: Arial;
  1348. font-weight: 400;
  1349. color: #ba3237;
  1350. }
  1351. }
  1352. .matrix-status-right {
  1353. margin-right: 6px;
  1354. }
  1355. }
  1356. &.orange {
  1357. .status-first {
  1358. width: 100%;
  1359. height: 34%;
  1360. display: flex;
  1361. flex-direction: row;
  1362. align-items: center;
  1363. justify-content: space-between;
  1364. background-color: rgba(225, 125, 36, 0.28);
  1365. border-top: 1px solid #46301a;
  1366. border-left: 1px solid #46301a;
  1367. border-right: 1px solid #46301a;
  1368. .matrix-status-left {
  1369. margin-left: 6px;
  1370. font-size: 14px;
  1371. font-family: Microsoft YaHei;
  1372. font-weight: 400;
  1373. color: #e17d24;
  1374. }
  1375. .matrix-status-right {
  1376. margin-right: 6px;
  1377. font-size: 16px;
  1378. font-family: Arial;
  1379. font-weight: 400;
  1380. color: #e17d24;
  1381. }
  1382. }
  1383. .status-end {
  1384. width: 100%;
  1385. height: 33%;
  1386. display: flex;
  1387. flex-direction: row;
  1388. align-items: center;
  1389. justify-content: space-between;
  1390. background-color: rgba(225, 125, 36, 0.16);
  1391. border-left: 1px solid #46301a;
  1392. border-right: 1px solid #46301a;
  1393. border-bottom: 1px solid #46301a;
  1394. .matrix-status-left {
  1395. margin-left: 6px;
  1396. font-size: 12px;
  1397. font-family: Microsoft YaHei;
  1398. font-weight: 400;
  1399. color: #e17d24;
  1400. }
  1401. .matrix-status-right {
  1402. margin-right: 6px;
  1403. font-size: 14px;
  1404. font-family: Arial;
  1405. font-weight: 400;
  1406. color: #e17d24;
  1407. }
  1408. }
  1409. .matrix-status-right {
  1410. margin-right: 6px;
  1411. }
  1412. }
  1413. &.gray {
  1414. .status-first {
  1415. width: 100%;
  1416. height: 34%;
  1417. display: flex;
  1418. flex-direction: row;
  1419. align-items: center;
  1420. justify-content: space-between;
  1421. background-color: rgba(96, 103, 105, 0.28);
  1422. border-top: 1px solid #262b32;
  1423. border-left: 1px solid #262b32;
  1424. border-right: 1px solid #262b32;
  1425. .matrix-status-left {
  1426. margin-left: 6px;
  1427. font-size: 14px;
  1428. font-family: Microsoft YaHei;
  1429. font-weight: 400;
  1430. color: #606769;
  1431. }
  1432. .matrix-status-right {
  1433. margin-right: 6px;
  1434. font-size: 16px;
  1435. font-family: Arial;
  1436. font-weight: 400;
  1437. color: #606769;
  1438. }
  1439. }
  1440. .status-end {
  1441. width: 100%;
  1442. height: 33%;
  1443. display: flex;
  1444. flex-direction: row;
  1445. align-items: center;
  1446. justify-content: space-between;
  1447. background-color: rgba(96, 103, 105, 0.16);
  1448. border-left: 1px solid #262b32;
  1449. border-right: 1px solid #262b32;
  1450. border-bottom: 1px solid #262b32;
  1451. .matrix-status-left {
  1452. margin-left: 6px;
  1453. font-size: 12px;
  1454. font-family: Microsoft YaHei;
  1455. font-weight: 400;
  1456. color: #606769;
  1457. }
  1458. .matrix-status-right {
  1459. margin-right: 6px;
  1460. font-size: 14px;
  1461. font-family: Arial;
  1462. font-weight: 400;
  1463. color: #606769;
  1464. }
  1465. }
  1466. .matrix-status-right {
  1467. margin-right: 6px;
  1468. }
  1469. }
  1470. &.write {
  1471. .status-first {
  1472. width: 100%;
  1473. height: 34%;
  1474. display: flex;
  1475. flex-direction: row;
  1476. align-items: center;
  1477. justify-content: space-between;
  1478. background-color: rgba(255, 255, 255, 0.28);
  1479. border-top: 1px solid #3f4349;
  1480. border-left: 1px solid #3f4349;
  1481. border-right: 1px solid #3f4349;
  1482. .matrix-status-left {
  1483. margin-left: 6px;
  1484. font-size: 14px;
  1485. font-family: Microsoft YaHei;
  1486. font-weight: 400;
  1487. color: #ffffff;
  1488. }
  1489. .matrix-status-right {
  1490. margin-right: 6px;
  1491. font-size: 16px;
  1492. font-family: Arial;
  1493. font-weight: 400;
  1494. color: #ffffff;
  1495. }
  1496. }
  1497. .status-end {
  1498. width: 100%;
  1499. height: 33%;
  1500. display: flex;
  1501. flex-direction: row;
  1502. align-items: center;
  1503. justify-content: space-between;
  1504. background-color: rgba(255, 255, 255, 0.16);
  1505. border-left: 1px solid #3f4349;
  1506. border-right: 1px solid #3f4349;
  1507. border-bottom: 1px solid #3f4349;
  1508. .matrix-status-left {
  1509. margin-left: 6px;
  1510. font-size: 12px;
  1511. font-family: Microsoft YaHei;
  1512. font-weight: 400;
  1513. color: #ffffff;
  1514. }
  1515. .matrix-status-right {
  1516. margin-right: 6px;
  1517. font-size: 14px;
  1518. font-family: Arial;
  1519. font-weight: 400;
  1520. color: #ffffff;
  1521. }
  1522. }
  1523. .matrix-status-right {
  1524. margin-right: 6px;
  1525. }
  1526. }
  1527. }
  1528. }
  1529. .unpaid {
  1530. display: flex;
  1531. flex-direction: row;
  1532. align-items: center;
  1533. width: 40%;
  1534. height: 100%;
  1535. .unpaid-item {
  1536. width: 20%;
  1537. height: 80%;
  1538. margin-right: 5px;
  1539. padding: 0 10px;
  1540. .unpaid-img {
  1541. width: 115px;
  1542. height: 39px;
  1543. }
  1544. .unpaid-value {
  1545. width: 90%;
  1546. display: flex;
  1547. flex-direction: row-reverse;
  1548. font-size: 18px;
  1549. font-family: Arial;
  1550. font-weight: 400;
  1551. color: #ff9f1f;
  1552. margin-top: -20px;
  1553. }
  1554. .unpaid-name {
  1555. width: 90%;
  1556. font-size: 14px;
  1557. font-family: Microsoft YaHei;
  1558. font-weight: 400;
  1559. color: #b3b3b3;
  1560. transform: translate(50%, -100%);
  1561. }
  1562. }
  1563. .unpaid-item1 {
  1564. width: 20%;
  1565. height: 80%;
  1566. margin-right: 5px;
  1567. &.upGreen {
  1568. .percent {
  1569. background-color: rgba(87, 207, 58, 0.8);
  1570. border-top: 1px solid rgba(87, 207, 58, 0.35);
  1571. border-left: 1px solid rgba(87, 207, 58, 0.35);
  1572. border-right: 1px solid rgba(87, 207, 58, 0.35);
  1573. }
  1574. .nums {
  1575. background-color: rgba(87, 207, 58, 0.35);
  1576. border-left: 1px solid rgba(87, 207, 58, 0.35);
  1577. border-right: 1px solid rgba(87, 207, 58, 0.35);
  1578. border-bottom: 1px solid rgba(87, 207, 58, 0.35);
  1579. }
  1580. }
  1581. &.upSkyBlue {
  1582. .percent {
  1583. background-color: rgba(14, 199, 220, 0.8);
  1584. border-top: 1px solid rgba(14, 199, 220, 0.35);
  1585. border-left: 1px solid rgba(14, 199, 220, 0.35);
  1586. border-right: 1px solid rgba(14, 199, 220, 0.35);
  1587. }
  1588. .nums {
  1589. background-color: rgba(14, 199, 220, 0.35);
  1590. border-left: 1px solid rgba(14, 199, 220, 0.35);
  1591. border-right: 1px solid rgba(14, 199, 220, 0.35);
  1592. border-bottom: 1px solid rgba(14, 199, 220, 0.35);
  1593. }
  1594. }
  1595. &.upBlue {
  1596. .percent {
  1597. background-color: rgba(25, 116, 255, 0.8);
  1598. border-top: 1px solid rgba(25, 116, 255, 0.35);
  1599. border-left: 1px solid rgba(25, 116, 255, 0.35);
  1600. border-right: 1px solid rgba(25, 116, 255, 0.35);
  1601. }
  1602. .nums {
  1603. background-color: rgba(25, 116, 255, 0.35);
  1604. border-left: 1px solid rgba(25, 116, 255, 0.35);
  1605. border-right: 1px solid rgba(25, 116, 255, 0.35);
  1606. border-bottom: 1px solid rgba(25, 116, 255, 0.35);
  1607. }
  1608. }
  1609. &.upPurple {
  1610. .percent {
  1611. background-color: rgba(205, 76, 221, 0.8);
  1612. border-top: 1px solid rgba(205, 76, 221, 0.35);
  1613. border-left: 1px solid rgba(205, 76, 221, 0.35);
  1614. border-right: 1px solid rgba(205, 76, 221, 0.35);
  1615. }
  1616. .nums {
  1617. background-color: rgba(205, 76, 221, 0.35);
  1618. border-left: 1px solid rgba(205, 76, 221, 0.35);
  1619. border-right: 1px solid rgba(205, 76, 221, 0.35);
  1620. border-bottom: 1px solid rgba(205, 76, 221, 0.35);
  1621. }
  1622. }
  1623. &.upPink {
  1624. .percent {
  1625. background-color: rgba(255, 60, 128, 0.8);
  1626. border-top: 1px solid rgba(255, 60, 128, 0.35);
  1627. border-left: 1px solid rgba(255, 60, 128, 0.35);
  1628. border-right: 1px solid rgba(255, 60, 128, 0.35);
  1629. }
  1630. .nums {
  1631. background-color: rgba(255, 60, 128, 0.35);
  1632. border-left: 1px solid rgba(255, 60, 128, 0.35);
  1633. border-right: 1px solid rgba(255, 60, 128, 0.35);
  1634. border-bottom: 1px solid rgba(255, 60, 128, 0.35);
  1635. }
  1636. }
  1637. .percent {
  1638. width: 100%;
  1639. height: 50%;
  1640. display: flex;
  1641. align-items: center;
  1642. justify-content: center;
  1643. font-size: 14px;
  1644. font-family: Arial;
  1645. font-weight: 400;
  1646. color: #ffffff;
  1647. }
  1648. .nums {
  1649. width: 100%;
  1650. height: 50%;
  1651. display: flex;
  1652. flex-direction: row;
  1653. align-items: center;
  1654. justify-content: center;
  1655. font-size: 16px;
  1656. font-family: Arial;
  1657. font-weight: 400;
  1658. color: #ffffff;
  1659. padding: 0 8px;
  1660. }
  1661. }
  1662. }
  1663. }
  1664. .matrix-box {
  1665. background-color: rgba(0, 0, 0, 0.45);
  1666. }
  1667. .matrixs {
  1668. width: 100%;
  1669. margin-top: 7px;
  1670. .matrix-title {
  1671. display: flex;
  1672. flex-direction: row;
  1673. align-items: center;
  1674. width: 100%;
  1675. height: 32px;
  1676. background-color: rgba(96, 103, 105, 0.4);
  1677. font-size: 12px;
  1678. font-family: SourceHanSansCN;
  1679. font-weight: 400;
  1680. color: #05bb4c;
  1681. padding: 0 12px;
  1682. .matrix-svg {
  1683. flex: 0 0 auto;
  1684. margin-right: 10px;
  1685. display: flex;
  1686. align-items: center;
  1687. }
  1688. &.active {
  1689. color: #fc8004;
  1690. }
  1691. .station-name {
  1692. margin-left: 5px;
  1693. margin-right: 18px;
  1694. }
  1695. .indicator {
  1696. display: flex;
  1697. flex-direction: row;
  1698. align-items: center;
  1699. width: 93%;
  1700. height: 100%;
  1701. white-space: nowrap;
  1702. }
  1703. .sub-title-item {
  1704. display: flex;
  1705. flex-direction: row;
  1706. align-items: center;
  1707. // width: 7%;
  1708. width: 8%;
  1709. height: 100%;
  1710. margin-right: 20px;
  1711. font-size: 12px;
  1712. font-family: Microsoft YaHei;
  1713. font-weight: 400;
  1714. color: #b3b3b3;
  1715. &.active {
  1716. cursor: pointer;
  1717. }
  1718. &.active1 {
  1719. // width: 5%;
  1720. width: 6%;
  1721. }
  1722. .sub-value {
  1723. font-size: 14px;
  1724. font-family: Arial;
  1725. font-weight: 400;
  1726. margin-left: 5px;
  1727. }
  1728. }
  1729. }
  1730. .matrix-list {
  1731. display: grid;
  1732. justify-content: space-between;
  1733. grid-template-columns: repeat(auto-fill, 114px);
  1734. width: 100%;
  1735. margin-top: 5px;
  1736. .matrix-card {
  1737. display: flex;
  1738. flex-direction: column;
  1739. width: 114px;
  1740. height: 59px;
  1741. margin-right: 2px;
  1742. margin-bottom: 2px;
  1743. background-color: rgba(0, 0, 0, 0.5);
  1744. .info {
  1745. display: flex;
  1746. flex-direction: row;
  1747. align-items: center;
  1748. width: 100%;
  1749. height: 50px;
  1750. .card-left {
  1751. width: 45px;
  1752. height: 100%;
  1753. display: flex;
  1754. flex-direction: column;
  1755. align-items: center;
  1756. position: relative;
  1757. .lock {
  1758. width: 0;
  1759. height: 0;
  1760. border-top: 8px solid #fff;
  1761. border-right: 8px solid transparent;
  1762. position: absolute;
  1763. top: 0;
  1764. left: 0;
  1765. }
  1766. .card-name {
  1767. font-size: 13px;
  1768. font-family: Arial;
  1769. font-weight: 400;
  1770. margin-top: 5px;
  1771. margin-bottom: 5px;
  1772. }
  1773. }
  1774. .card-right {
  1775. display: flex;
  1776. flex-direction: column;
  1777. padding: 0px 4px;
  1778. position: relative;
  1779. .right-item {
  1780. display: flex;
  1781. flex-direction: row;
  1782. align-items: center;
  1783. height: 15px;
  1784. .right-value {
  1785. font-size: 12px;
  1786. font-family: Arial;
  1787. font-weight: 400;
  1788. margin-left: 3px;
  1789. }
  1790. }
  1791. .card-hover {
  1792. position: absolute;
  1793. // width: 100px;
  1794. // height: 50px;
  1795. background-color: rgba(0, 0, 0, 1);
  1796. left: -30px;
  1797. top: -50px;
  1798. display: none;
  1799. }
  1800. }
  1801. .card-right:hover {
  1802. .card-hover {
  1803. display: block;
  1804. }
  1805. }
  1806. }
  1807. .matrix-progress {
  1808. display: flex;
  1809. flex-direction: row;
  1810. align-items: center;
  1811. width: 100%;
  1812. padding: 0 4px;
  1813. height: 8px;
  1814. .progress-block {
  1815. // width: 19px;
  1816. height: 3px;
  1817. background-color: #05bb4c;
  1818. // margin-right: 2px;
  1819. &.upGreen {
  1820. background-color: rgba(87, 207, 58, 1);
  1821. }
  1822. &.upSkyBlue {
  1823. background-color: rgba(14, 199, 220, 1);
  1824. }
  1825. &.upBlue {
  1826. background-color: rgba(25, 116, 255, 1);
  1827. }
  1828. &.upPurple {
  1829. background-color: rgba(205, 76, 221, 1);
  1830. }
  1831. &.upPink {
  1832. background-color: rgba(255, 60, 128, 1);
  1833. }
  1834. }
  1835. }
  1836. &.green {
  1837. border: 1px solid #05bb4c;
  1838. color: #05bb4c;
  1839. .info {
  1840. border-bottom: 1px solid #05bb4c;
  1841. background-color: rgba(5, 187, 76, 0.15);
  1842. .dashed {
  1843. width: 1px;
  1844. height: 100%;
  1845. background-image: linear-gradient(
  1846. #05bb4c 0%,
  1847. #05bb4c 40%,
  1848. transparent 50%
  1849. );
  1850. background-size: 1px 9px;
  1851. }
  1852. }
  1853. }
  1854. &.blue {
  1855. border: 1px solid #074ead;
  1856. color: #1c99ff;
  1857. .info {
  1858. border-bottom: 1px solid #074ead;
  1859. background-color: rgba(0, 70, 199, 0.25);
  1860. .dashed {
  1861. width: 1px;
  1862. height: 100%;
  1863. background-image: linear-gradient(
  1864. #074ead 0%,
  1865. #074ead 40%,
  1866. transparent 50%
  1867. );
  1868. background-size: 1px 9px;
  1869. }
  1870. }
  1871. }
  1872. &.pink {
  1873. border: 1px solid #c530c8;
  1874. color: #c530c8;
  1875. .info {
  1876. border-bottom: 1px solid #c530c8;
  1877. background-color: rgba(197, 48, 200, 0.15);
  1878. .dashed {
  1879. width: 1px;
  1880. height: 100%;
  1881. background-image: linear-gradient(
  1882. #c530c8 0%,
  1883. #c530c8 40%,
  1884. transparent 50%
  1885. );
  1886. background-size: 1px 9px;
  1887. }
  1888. }
  1889. }
  1890. &.red {
  1891. border: 1px solid #ba3237;
  1892. color: #ffffff;
  1893. .info {
  1894. border-bottom: 1px solid #ba3237;
  1895. background-color: rgba(186, 50, 55, 1);
  1896. .dashed {
  1897. width: 1px;
  1898. height: 100%;
  1899. background-image: linear-gradient(
  1900. #e17d24 0%,
  1901. #e17d24 40%,
  1902. transparent 50%
  1903. );
  1904. background-size: 1px 9px;
  1905. }
  1906. }
  1907. }
  1908. &.orange {
  1909. border: 1px solid #e17d24;
  1910. color: #e17d24;
  1911. .info {
  1912. border-bottom: 1px solid #e17d24;
  1913. background-color: rgba(225, 125, 36, 0.15);
  1914. .dashed {
  1915. width: 1px;
  1916. height: 100%;
  1917. background-image: linear-gradient(
  1918. #e17d24 0%,
  1919. #e17d24 40%,
  1920. transparent 50%
  1921. );
  1922. background-size: 1px 9px;
  1923. }
  1924. }
  1925. }
  1926. &.write {
  1927. border: 1px solid #51555a;
  1928. color: #ffffff;
  1929. .info {
  1930. border-bottom: 1px solid #51555a;
  1931. background-color: rgba(81, 85, 90, 1);
  1932. .dashed {
  1933. width: 1px;
  1934. height: 100%;
  1935. background-image: linear-gradient(
  1936. #262626 0%,
  1937. #262626 40%,
  1938. transparent 50%
  1939. );
  1940. background-size: 1px 9px;
  1941. }
  1942. }
  1943. }
  1944. &.gray {
  1945. border: 1px solid #606769;
  1946. color: #a7a7a7;
  1947. .info {
  1948. border-bottom: 1px solid #606769;
  1949. background-color: rgba(96, 103, 105, 0.2);
  1950. .dashed {
  1951. width: 1px;
  1952. height: 100%;
  1953. background-image: linear-gradient(
  1954. #262626 0%,
  1955. #262626 40%,
  1956. transparent 50%
  1957. );
  1958. background-size: 1px 9px;
  1959. }
  1960. }
  1961. }
  1962. }
  1963. }
  1964. }
  1965. .active_vie {
  1966. width: 100%;
  1967. margin-top: 0;
  1968. margin-bottom: 5px;
  1969. .matrix-list {
  1970. display: grid;
  1971. justify-content: space-between;
  1972. grid-template-columns: repeat(auto-fill, 114px);
  1973. width: 100%;
  1974. margin-top: 0;
  1975. }
  1976. }
  1977. }
  1978. }
  1979. .clearfix::after {
  1980. content: "";
  1981. clear: both;
  1982. height: 0;
  1983. line-height: 0;
  1984. visibility: hidden;
  1985. display: block;
  1986. }
  1987. .clearfix {
  1988. zoom: 1;
  1989. }
  1990. </style>