index.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840
  1. <template>
  2. <view class="home">
  3. <view class="home_header">
  4. <view class="header_message" @click="changeMsg">
  5. <image src="../../static/jnImage/indexPage/alarmSet.png"></image>
  6. </view>
  7. <view class="header_title">
  8. <text class="titleName">发电场站生产实时运营管理平台</text>
  9. </view>
  10. <view class="header_more" @click="changeStation">
  11. <image src="../../static/jnImage/indexPage/moreNew.png"></image>
  12. </view>
  13. </view>
  14. <view class="home_main">
  15. <view class="main_time">
  16. <view class="mesTime">
  17. <image src="../../static/jnImage/indexPage/time.png"></image>
  18. <text>{{timeData.year}}年{{timeData.month}}月{{timeData.day}}日</text>
  19. <text>{{timeData.week}}</text>
  20. <text>{{timeData.hour}}{{timeData.minute}}</text>
  21. </view>
  22. <view class="mesAll">
  23. <uni-row class="mesEx">
  24. <uni-col :span="12" v-for="(item,index) in mesExData" :key="index">
  25. <view class="mesEx_left flex">
  26. <view class="mesEx_left_top">
  27. <text class="nameSty">{{item.leftName}}</text>
  28. </view>
  29. <view class="mesEx_left_end">
  30. <text>{{item.leftValue}}</text>
  31. <text>{{item.leftCode}}</text>
  32. </view>
  33. </view>
  34. </uni-col>
  35. </uni-row>
  36. <uni-row class="windpowerCl">
  37. <uni-col :span="12" v-for="(item,index) in windPowerData" :key="index">
  38. <view class="windpowerMsg">
  39. <view class="windpowerMsg_com flex justify-between">
  40. <text style="font-size: 28upx">{{item.name}}</text>
  41. <text>{{item.code}}</text>
  42. </view>
  43. <view class="windpowerMsg_Data">
  44. <text>{{item.value}}</text>
  45. </view>
  46. <view class="windpowerMsg_com flex justify-between">
  47. <text>min:{{item.min}}</text>
  48. <text>max:{{item.max}}</text>
  49. </view>
  50. </view>
  51. </uni-col>
  52. </uni-row>
  53. <view class="windMsg">
  54. <view class="flex justify-center" style="margin-bottom: 6px;" @click="watchWindStatus('wind')">
  55. <view class="windMsg_title">
  56. <image src="../../static/jnImage/indexPage/wancheng.png" mode=""></image>
  57. <text>风机状态</text>
  58. </view>
  59. </view>
  60. <view class="windMsg_main">
  61. <view class="windMsg_main_msg flex justify-between">
  62. <view class="windMsgSty flex">
  63. <view class="windMsgSty_left">
  64. <image src="../../static/jnImage/indexPage/jn_jieru.png" mode=""></image>
  65. <text>接入</text>
  66. </view>
  67. <view class="windMsgSty_right flex justify-between">
  68. <text>{{Math.ceil(powerstatusData.jr_fj_ts)}}</text>
  69. <text>台</text>
  70. </view>
  71. </view>
  72. <view class="windMsgSty flex">
  73. <view class="windMsgSty_left">
  74. <image src="../../static/jnImage/indexPage/jn_daiji.png" mode=""></image>
  75. <text>待机</text>
  76. </view>
  77. <view class="windMsgSty_right flex justify-between">
  78. <text>{{Math.ceil(windstatusData.fd_djnum)}}</text>
  79. <text>台</text>
  80. </view>
  81. </view>
  82. </view>
  83. <view class="windMsg_main_msg flex justify-between">
  84. <view class="windMsgSty flex">
  85. <view class="windMsgSty_left">
  86. <image src="../../static/jnImage/indexPage/jn_bingwang.png" mode=""></image>
  87. <text>并网</text>
  88. </view>
  89. <view class="windMsgSty_right flex justify-between">
  90. <text>{{Math.ceil(windstatusData.fd_yxnum)}}</text>
  91. <text>台</text>
  92. </view>
  93. </view>
  94. <view class="windMsgSty flex">
  95. <view class="windMsgSty_left">
  96. <image src="../../static/jnImage/indexPage/jn_guzhang.png" mode=""></image>
  97. <text>故障</text>
  98. </view>
  99. <view class="windMsgSty_right flex justify-between">
  100. <text>{{Math.ceil(windstatusData.fd_gznum)}}</text>
  101. <text>台</text>
  102. </view>
  103. </view>
  104. </view>
  105. <view class="windMsg_main_msg flex justify-between">
  106. <view class="windMsgSty flex">
  107. <view class="windMsgSty_left">
  108. <image src="../../static/jnImage/indexPage/jn_jianxiu.png" mode=""></image>
  109. <text>检修</text>
  110. </view>
  111. <view class="windMsgSty_right flex justify-between">
  112. <text>{{Math.ceil(windstatusData.fd_jxnum)}}</text>
  113. <text>台</text>
  114. </view>
  115. </view>
  116. <view class="windMsgSty flex">
  117. <view class="windMsgSty_left">
  118. <image src="../../static/jnImage/indexPage/jn_xiandian.png" mode=""></image>
  119. <text>限电</text>
  120. </view>
  121. <view class="windMsgSty_right flex justify-between">
  122. <text>{{Math.ceil(windstatusData.fd_xdnum)}}</text>
  123. <text>台</text>
  124. </view>
  125. </view>
  126. </view>
  127. <view class="windMsg_main_msg flex justify-between">
  128. <view class="windMsgSty flex">
  129. <view class="windMsgSty_left">
  130. <image src="../../static/jnImage/indexPage/jn_shoulei.png" mode=""></image>
  131. <text>受累</text>
  132. </view>
  133. <view class="windMsgSty_right flex justify-between">
  134. <text>{{Math.ceil(windstatusData.fd_slnum)}}</text>
  135. <text>台</text>
  136. </view>
  137. </view>
  138. <view class="windMsgSty flex">
  139. <view class="windMsgSty_left">
  140. <image src="../../static/jnImage/indexPage/jn_lixian.png" mode=""></image>
  141. <text>离线</text>
  142. </view>
  143. <view class="windMsgSty_right flex justify-between">
  144. <text>{{Math.ceil(windstatusData.fd_lxnum)}}</text>
  145. <text>台</text>
  146. </view>
  147. </view>
  148. </view>
  149. </view>
  150. </view>
  151. <view class="powerMsg">
  152. <view class="flex justify-center" style="margin-bottom: 6px;" @click="watchWindStatus('power')">
  153. <view class="windMsg_title">
  154. <image src="../../static/jnImage/indexPage/wancheng.png" mode=""></image>
  155. <text>光伏状态</text>
  156. </view>
  157. </view>
  158. <view class="windMsg_main">
  159. <view class="windMsg_main_msg flex justify-between">
  160. <view class="windMsgSty flex">
  161. <view class="windMsgSty_left">
  162. <image src="../../static/jnImage/indexPage/yunxingGFNew.png" mode=""></image>
  163. <text>接入</text>
  164. </view>
  165. <view class="windMsgSty_right flex justify-between">
  166. <text>{{Math.ceil(powerstatusData.jr_gf_jzts+powerstatusData.jr_gf_zcts)}}</text>
  167. <text>台</text>
  168. </view>
  169. </view>
  170. <view class="windMsgSty flex">
  171. <view class="windMsgSty_left">
  172. <image src="../../static/jnImage/indexPage/jn_daiji.png" mode=""></image>
  173. <text>待机</text>
  174. </view>
  175. <view class="windMsgSty_right flex justify-between">
  176. <text>{{Math.ceil(windstatusData.gf_djnum)}}</text>
  177. <text>台</text>
  178. </view>
  179. </view>
  180. </view>
  181. <view class="windMsg_main_msg flex justify-between">
  182. <view class="windMsgSty flex">
  183. <view class="windMsgSty_left">
  184. <image src="../../static/jnImage/indexPage/jn_bingwang.png" mode=""></image>
  185. <text>并网</text>
  186. </view>
  187. <view class="windMsgSty_right flex justify-between">
  188. <text>{{Math.ceil(windstatusData.gf_yxnum)}}</text>
  189. <text>台</text>
  190. </view>
  191. </view>
  192. <view class="windMsgSty flex">
  193. <view class="windMsgSty_left">
  194. <image src="../../static/jnImage/indexPage/jn_guzhang.png" mode=""></image>
  195. <text>故障</text>
  196. </view>
  197. <view class="windMsgSty_right flex justify-between">
  198. <text>{{Math.ceil(windstatusData.gf_gznum)}}</text>
  199. <text>台</text>
  200. </view>
  201. </view>
  202. </view>
  203. <view class="windMsg_main_msg flex justify-between">
  204. <view class="windMsgSty flex">
  205. <view class="windMsgSty_left">
  206. <image src="../../static/jnImage/indexPage/jn_jianxiu.png" mode=""></image>
  207. <text>检修</text>
  208. </view>
  209. <view class="windMsgSty_right flex justify-between">
  210. <text>{{Math.ceil(windstatusData.gf_jxnum)}}</text>
  211. <text>台</text>
  212. </view>
  213. </view>
  214. <view class="windMsgSty flex">
  215. <view class="windMsgSty_left">
  216. <image src="../../static/jnImage/indexPage/jn_xiandian.png" mode=""></image>
  217. <text>限电</text>
  218. </view>
  219. <view class="windMsgSty_right flex justify-between">
  220. <text>{{Math.ceil(windstatusData.gf_xdnum)}}</text>
  221. <text>台</text>
  222. </view>
  223. </view>
  224. </view>
  225. <view class="windMsg_main_msg flex justify-between">
  226. <view class="windMsgSty flex">
  227. <view class="windMsgSty_left">
  228. <image src="../../static/jnImage/indexPage/jn_shoulei.png" mode=""></image>
  229. <text>受累</text>
  230. </view>
  231. <view class="windMsgSty_right flex justify-between">
  232. <text>{{Math.ceil(windstatusData.gf_slnum)}}</text>
  233. <text>台</text>
  234. </view>
  235. </view>
  236. <view class="windMsgSty flex">
  237. <view class="windMsgSty_left">
  238. <image src="../../static/jnImage/indexPage/jn_lixian.png" mode=""></image>
  239. <text>离线</text>
  240. </view>
  241. <view class="windMsgSty_right flex justify-between">
  242. <text>{{Math.ceil(windstatusData.gf_lxnum)}}</text>
  243. <text>台</text>
  244. </view>
  245. </view>
  246. </view>
  247. </view>
  248. </view>
  249. <view class="ssjk">
  250. <view class="ssjk_title flex justify-center">
  251. <image src="../../static/jnImage/indexPage/timeNow.png" mode=""></image>
  252. <text>实时监控</text>
  253. </view>
  254. <view class="ssjk_main">
  255. <view class="ssjk_main_msg" v-for="(item, index) in windData" :key="index">
  256. <view class="ssjk_main_msg_tit flex">
  257. <image src="../../static/jnImage/indexPage/windIcon.png" mode=""></image>
  258. <text>{{item.name}}</text>
  259. </view>
  260. <view class="ssjk_main_msg_data flex">
  261. <view class="msg_data_sty flex">
  262. <view class="msg_data_name">
  263. <text>风速</text>
  264. </view>
  265. <view class="dataSty flex">
  266. <text>{{item.fs}}</text>
  267. <text>m/s</text>
  268. </view>
  269. </view>
  270. <view class="msg_data_sty flex">
  271. <view class="msg_data_name">
  272. <text>实际功率</text>
  273. </view>
  274. <view class="dataSty flex">
  275. <text>{{item.sjgl}}</text>
  276. <text>MW</text>
  277. </view>
  278. </view>
  279. <view class="msg_data_sty flex">
  280. <view class="msg_data_name">
  281. <text>出线功率</text>
  282. </view>
  283. <view class="dataSty flex">
  284. <text>{{item.cxgl}}</text>
  285. <text>MW</text>
  286. </view>
  287. </view>
  288. </view>
  289. </view>
  290. </view>
  291. <view class="ssjk_main">
  292. <view class="ssjk_main_msg" v-for="(item, index) in powerData" :key="index">
  293. <view class="ssjk_main_msg_tit flex">
  294. <image src="../../static/jnImage/indexPage/powerIcon.png" mode=""></image>
  295. <text>{{item.name}}</text>
  296. </view>
  297. <view class="ssjk_main_msg_data flex">
  298. <view class="msg_data_sty flex">
  299. <view class="msg_data_name">
  300. <text>光照强度</text>
  301. </view>
  302. <view class="dataSty flex">
  303. <text>{{item.gzqd}}</text>
  304. <text>Kw/m²</text>
  305. </view>
  306. </view>
  307. <view class="msg_data_sty flex">
  308. <view class="msg_data_name">
  309. <text>实际功率</text>
  310. </view>
  311. <view class="dataSty flex">
  312. <text>{{item.sjgl}}</text>
  313. <text>MW</text>
  314. </view>
  315. </view>
  316. <view class="msg_data_sty flex">
  317. <view class="msg_data_name">
  318. <text>出线功率</text>
  319. </view>
  320. <view class="dataSty flex">
  321. <text>{{item.cxgl}}</text>
  322. <text>MW</text>
  323. </view>
  324. </view>
  325. </view>
  326. </view>
  327. </view>
  328. </view>
  329. </view>
  330. </view>
  331. </view>
  332. </view>
  333. </template>
  334. </template>
  335. <script>
  336. import {
  337. cockpitMonitor,
  338. cockpitProjectplanApi
  339. } from '../../api/home.js'
  340. import {
  341. windPowerDataApi
  342. } from '../../api/common.js'
  343. export default {
  344. onLoad: function() {},
  345. data() {
  346. return {
  347. mesExData: [],
  348. windPowerData: [],
  349. timeData: {},
  350. windstatusData: {},
  351. powerstatusData: {},
  352. windData: [],
  353. powerData: []
  354. }
  355. },
  356. created() {
  357. this.getTimeDaya()
  358. this.getHomeData()
  359. this.getwindPowerData("0", "-1");
  360. this.getwindPowerData("0", "-2");
  361. },
  362. methods: {
  363. //获取时间
  364. getTimeDaya() {
  365. let currentDate = new Date()
  366. this.timeData.year = currentDate.getFullYear()
  367. this.timeData.month = currentDate.getMonth() + 1
  368. this.timeData.day = currentDate.getDate()
  369. this.timeData.hour = currentDate.getHours() + ':'
  370. this.timeData.minute = currentDate.getMinutes() < 10 ? '0' + currentDate.getMinutes() : currentDate
  371. .getMinutes()
  372. this.timeData.week = new Array('星期天', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六')[currentDate.getDay()]
  373. },
  374. //获取首页整体数据
  375. getHomeData() {
  376. let that = this
  377. cockpitMonitor({
  378. wpId: 'KGDL_FGS0'
  379. }).then(res => {
  380. if (res.data) {
  381. if (res.data.qt) {
  382. let datas = res.data.qt
  383. let arr = [{
  384. leftName: '容量',
  385. leftValue: datas.zzjrl,
  386. leftCode: '(MW)',
  387. },
  388. {
  389. leftName: '安全天数',
  390. leftValue: Math.ceil(datas.aqts),
  391. leftCode: '(天)',
  392. },
  393. {
  394. leftName: '利用小时',
  395. leftValue: Math.ceil(datas.fdnlyxs),
  396. leftCode: '(h/年)'
  397. }
  398. ]
  399. that.windPowerData = [{
  400. name: '风速',
  401. value: datas.ssfs,
  402. code: '(m/s)',
  403. min: 6,
  404. max: 8
  405. }, {
  406. name: '日照强度',
  407. value: datas.gzzs,
  408. code: '(W/m²)',
  409. min: 6,
  410. max: 20
  411. }, {
  412. name: '功率',
  413. value: datas.sjgl,
  414. code: '(MW)',
  415. min: 0,
  416. max: 200
  417. }, {
  418. name: '理论功率',
  419. value: datas.llgl,
  420. code: '(万kW)',
  421. min: 0,
  422. max: 500
  423. }]
  424. that.getHomeData2(arr)
  425. }
  426. if (res.data.cblpoint) {
  427. that.powerstatusData = res.data.cblpoint
  428. }
  429. if (res.data.mxztmap) {
  430. that.windstatusData = res.data.mxztmap
  431. }
  432. }
  433. })
  434. },
  435. getHomeData2(arr) {
  436. let that = this
  437. cockpitProjectplanApi({
  438. wpId: 'KGDL_FGS0'
  439. }).then(res => {
  440. if (res && res.data) {
  441. let item = res.data.proplanmap
  442. let arr2 = [{
  443. leftName: '日发电量',
  444. leftValue: Math.ceil(item.qy_r_sjdl / 10000),
  445. leftCode: '(万kWh)'
  446. },
  447. {
  448. leftName: '月发电量',
  449. leftValue: Math.ceil(item.qy_y_sjdl / 10000),
  450. leftCode: '(万kWh)'
  451. },
  452. {
  453. leftName: '年发电量',
  454. leftValue: Math.ceil(item.qy_n_sjdl / 10000 / 10000),
  455. leftCode: '(亿kWh)'
  456. },
  457. ]
  458. that.mesExData = [...arr, ...arr2]
  459. }
  460. })
  461. },
  462. getwindPowerData(type1, type2) {
  463. windPowerDataApi({
  464. company: type1,
  465. type: type2
  466. })
  467. .then((res) => {
  468. if (Object.values(res.data.data).length) {
  469. if (res.data.data.powerVos.length > 0) {
  470. res.data.data.powerVos.forEach(item => {
  471. if (type2 === "-1") {
  472. let obj = {
  473. name: item.wpname,
  474. fs: Math.ceil(item.spped),
  475. sjgl: Math.ceil(item.sjgl / 1000),
  476. cxgl: Math.ceil(item.cxgl)
  477. }
  478. this.windData.push(obj)
  479. } else {
  480. let obj = {
  481. name: item.wpname,
  482. gzqd: Math.ceil(item.spped),
  483. sjgl: Math.ceil(item.sjgl / 1000),
  484. cxgl: Math.ceil(item.cxgl)
  485. }
  486. this.powerData.push(obj)
  487. }
  488. })
  489. }
  490. } else {
  491. this.windData = [];
  492. this.powerData = [];
  493. }
  494. });
  495. },
  496. changeMsg() {
  497. this.$tab.navigateTo('/pages/common/messagePage')
  498. },
  499. changeStation() {
  500. this.$tab.navigateTo('/pages/common/stationListPage')
  501. },
  502. watchWindStatus(type) {
  503. this.$tab.navigateTo(`/pages/common/windStatusPage?status=${type}`)
  504. }
  505. }
  506. }
  507. </script>
  508. <style lang="scss">
  509. page {
  510. background-color: #202246;
  511. }
  512. .home {
  513. width: 100vw;
  514. background: url('../../static/jnImage/loginPage/windBack.png'), url('../../static/jnImage/loginPage/backWav.png');
  515. background-repeat: no-repeat, repeat;
  516. background-size: 100% 260px, 100% 5px;
  517. .home_header {
  518. width: calc(100% -32px);
  519. display: flex;
  520. justify-content: space-between;
  521. height: 60px;
  522. padding-top: 16px;
  523. // position: fixed;
  524. .header_message {
  525. width: 15%;
  526. image {
  527. position: relative;
  528. top: 5px;
  529. left: 10px;
  530. width: 25px;
  531. height: 25px;
  532. }
  533. }
  534. .header_title {
  535. width: 70%;
  536. position: relative;
  537. left: 5px;
  538. image {
  539. width: 28px;
  540. height: 22px;
  541. position: relative;
  542. top: 5px;
  543. }
  544. .titleName {
  545. line-height: 20px;
  546. font-size: 36upx;
  547. font-family: FZZhengHeiS-M-GB;
  548. font-weight: 600;
  549. color: #fff;
  550. position: relative;
  551. top: 8px;
  552. }
  553. }
  554. .header_more {
  555. width: 15%;
  556. position: relative;
  557. top: 10px;
  558. left: 10px;
  559. image {
  560. width: 25px;
  561. height: 18px;
  562. }
  563. }
  564. }
  565. .home_main {
  566. padding: 0 20px;
  567. .main_time {
  568. margin-top: 10px;
  569. .mesTime {
  570. display: flex;
  571. padding: 3px 0;
  572. border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  573. image {
  574. width: 20px;
  575. height: 20px;
  576. }
  577. text {
  578. font-size: 34upx;
  579. color: #fff;
  580. margin-left: 15px;
  581. }
  582. text:nth-of-type(3) {
  583. position: relative;
  584. top: 3px;
  585. }
  586. }
  587. .mesAll {
  588. .mesEx {
  589. // display: flex;
  590. line-height: 30px;
  591. color: #fff;
  592. .mesEx_left {
  593. width: 100%;
  594. border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  595. padding: 3px 0;
  596. .mesEx_left_top {
  597. width: 40%;
  598. font-size: 28upx;
  599. .nameSty {
  600. width: 100%;
  601. display: inline-block;
  602. position: relative;
  603. text-align-last: justify;
  604. text-align: justify;
  605. }
  606. }
  607. .mesEx_left_end {
  608. width: 56%;
  609. margin: 0 10px;
  610. display: flex;
  611. justify-content: space-between;
  612. text:nth-of-type(1) {
  613. font-size: 34upx;
  614. }
  615. text:nth-of-type(2) {
  616. font-size: 20upx;
  617. color: #92949B;
  618. }
  619. }
  620. }
  621. }
  622. .windpowerCl {
  623. .windpowerMsg {
  624. margin-top: 10px;
  625. padding: 5px 10px;
  626. color: #fff;
  627. background-image: url('../../static/jnImage/indexPage/windpower.png');
  628. background-repeat: no-repeat;
  629. background-size: cover;
  630. .windpowerMsg_com {
  631. text {
  632. font-size: 24upx;
  633. color: #AFB2C1;
  634. }
  635. }
  636. .windpowerMsg_Data {
  637. margin: 5px;
  638. text-align: center;
  639. font-size: 40upx;
  640. }
  641. }
  642. }
  643. .windMsg,
  644. .powerMsg {
  645. margin-top: 15px;
  646. .windMsg_title {
  647. width: 40%;
  648. height: 30px;
  649. display: flex;
  650. justify-content: center;
  651. align-items: center;
  652. padding: 6px 13px;
  653. background: rgba(51, 57, 118, 0.7);
  654. border-radius: 5px;
  655. image {
  656. width: 18px;
  657. height: 18px;
  658. }
  659. text {
  660. margin-left: 5px;
  661. font-size: 34upx;
  662. color: #fff;
  663. }
  664. }
  665. .windMsg_main {
  666. .windMsg_main_msg {
  667. margin-bottom: 8px;
  668. .windMsgSty {
  669. padding: 5px 8px;
  670. width: 49%;
  671. background: #3F4572;
  672. border-radius: 5px;
  673. .windMsgSty_left {
  674. width: 49%;
  675. height: 32px;
  676. image {
  677. width: 32px;
  678. height: 32px;
  679. }
  680. text {
  681. width: 100px;
  682. display: inline-block;
  683. color: #9A9BA6;
  684. font-size: 28upx;
  685. margin-left: 10px;
  686. position: relative;
  687. top: -26px;
  688. left: 28px;
  689. }
  690. .fourFont {
  691. top: -38px;
  692. }
  693. }
  694. .windMsgSty_right {
  695. width: 49%;
  696. position: relative;
  697. top: 9px;
  698. text:nth-of-type(1) {
  699. margin-left: 5px;
  700. width: 50%;
  701. font-size: 34upx;
  702. color: #fff;
  703. }
  704. text:nth-of-type(2) {
  705. font-size: 28upx;
  706. color: #9A9BA6;
  707. }
  708. }
  709. }
  710. }
  711. }
  712. }
  713. .ssjk {
  714. margin-top: 15px;
  715. margin-bottom: 30px;
  716. .ssjk_title {
  717. width: 120px;
  718. height: 45px;
  719. // background: #333976;
  720. background: linear-gradient(90deg, #333976, transparent);
  721. align-items: center;
  722. image {
  723. width: 22px;
  724. height: 22px;
  725. }
  726. text {
  727. margin-left: 10px;
  728. font-size: 16px;
  729. color: #fff;
  730. }
  731. }
  732. .ssjk_main {
  733. .ssjk_main_msg {
  734. margin-top: 15px;
  735. .ssjk_main_msg_tit {
  736. image {
  737. width: 18px;
  738. height: 18px;
  739. }
  740. text {
  741. margin-left: 10px;
  742. font-size: 14px;
  743. color: #A49EAC;
  744. position: relative;
  745. top: -2px;
  746. }
  747. }
  748. .ssjk_main_msg_data {
  749. width: 100%;
  750. color: #fff;
  751. font-size: 10px;
  752. .msg_data_sty {
  753. width: 33%;
  754. margin-right: 2px;
  755. background: #2E336D;
  756. .msg_data_name {
  757. width: 50%;
  758. padding: 3px 0;
  759. display: inline-block;
  760. background: #3F4572;
  761. text-align: center;
  762. }
  763. .dataSty {
  764. width: 50%;
  765. background: #2E336D;
  766. padding: 0 3px;
  767. justify-content: space-between;
  768. text {
  769. position: relative;
  770. top: 5px;
  771. }
  772. }
  773. }
  774. }
  775. }
  776. }
  777. }
  778. }
  779. }
  780. }
  781. }
  782. </style>