entranceScreen.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548
  1. <template>
  2. <div class="enter-main">
  3. <div class="top-box">
  4. <div class="left">
  5. <!-- <img class="logo" :src="parseImgUrl('pac', 'logo.svg')" /> -->
  6. <img
  7. class="weather-icon"
  8. v-show="outWeather.imgname"
  9. :src="parseImgUrl('pac', 'weather/' + outWeather.imgname)"
  10. />
  11. <div class="wether-info">
  12. <div class="temp">{{ outWeather.temperature }} ℃</div>
  13. <div class="text">{{ outWeather.text }}</div>
  14. </div>
  15. <div class="line"></div>
  16. <div class="wether-pm">
  17. <div class="value-box">
  18. <span>PM 2.5</span>
  19. <span>{{ outWeather.pm25 ? outWeather.pm25 : '--' }}</span>
  20. </div>
  21. <div class="value-des">
  22. <span>室外空气质量</span>
  23. <span>{{ outWeather.quality ? outWeather.quality : '--' }}</span>
  24. </div>
  25. </div>
  26. </div>
  27. <div class="right">
  28. <div class="env-box">
  29. <div class="title-box">
  30. <img :src="parseImgUrl('pac', 'calendar.svg')" />
  31. <div class="title calendar-title">
  32. <span>{{ dateObj.month }}</span>
  33. <span>/</span>
  34. <span>{{ dateObj.day }}</span>
  35. </div>
  36. </div>
  37. <div class="index-box calendar-time">
  38. <span>{{ dateObj.hours }}</span>
  39. <span>:</span>
  40. <span>{{ dateObj.minute }}</span>
  41. </div>
  42. </div>
  43. <div
  44. class="env-box"
  45. :key="index + 'env'"
  46. v-for="(item, index) in envlist"
  47. >
  48. <div class="title-box">
  49. <img class="icon" :src="item.img" />
  50. <div class="title">{{ item.name }}</div>
  51. </div>
  52. <div class="index-box">
  53. <div class="num">{{ item.num }}</div>
  54. <div class="text" :class="index > 1 ? 'temp-text' : ''">
  55. {{ item.levelTxt }}
  56. </div>
  57. </div>
  58. </div>
  59. </div>
  60. </div>
  61. </div>
  62. </template>
  63. <script>
  64. import {
  65. defineComponent,
  66. reactive,
  67. toRefs,
  68. onBeforeMount,
  69. onMounted,
  70. ref,
  71. onBeforeUnmount,
  72. } from 'vue'
  73. import { parseImgUrl, setQueryConfig, formatDate, getRelNowTime } from '@/utils'
  74. import { getWeatherNew, getPacSpaceInfo } from '@/apis/envmonitor'
  75. import { setInterval, clearInterval } from 'timers'
  76. export default defineComponent({
  77. components: {},
  78. setup(props) {
  79. const envlist = [
  80. {
  81. id: 1,
  82. name: 'PM 2.5',
  83. unit: 'ug/m³',
  84. funcid: 'PM2d5',
  85. levelTxt: '',
  86. value: 10,
  87. img: parseImgUrl('pac', 'pm2.5.svg'),
  88. showNowData: 0, // 0:loading 1:暂无数据 2:暂无服务定制时间
  89. },
  90. {
  91. id: 2,
  92. value: 10,
  93. name: '甲醛',
  94. unit: 'mg/㎡',
  95. levelTxt: '',
  96. img: parseImgUrl('pac', 'HCHO.svg'),
  97. },
  98. {
  99. id: 3,
  100. value: 10,
  101. name: '温度',
  102. unit: '%',
  103. levelTxt: '',
  104. funcid: 'Tdb,RH',
  105. img: parseImgUrl('pac', 'Tdb.svg'),
  106. },
  107. {
  108. id: 3,
  109. value: 10,
  110. name: '湿度',
  111. levelTxt: '',
  112. unit: '%',
  113. funcid: 'Tdb,RH',
  114. img: parseImgUrl('pac', 'RH.svg'),
  115. },
  116. ]
  117. const proxyData = reactive({
  118. envlist: envlist,
  119. parseImgUrl: parseImgUrl,
  120. time1: '',
  121. time2: '',
  122. params: {
  123. spaceId: 'Sp31010600032517f22f3d6a4c71b18cab24c444d362',
  124. pubname: 'sagacarepad',
  125. projectId: 'Pj3101060003',
  126. },
  127. outWeather: {},
  128. getWeatherIconByText(text) {
  129. let imgname = '晴.svg'
  130. if (text.indexOf('晴') > -1) {
  131. imgname = '晴.svg'
  132. } else if (text.indexOf('雨') > -1) {
  133. imgname = '大雨.svg'
  134. } else if (text.indexOf('阴') > -1 || text.indexOf('云') > -1) {
  135. imgname = '阴.svg'
  136. } else if (text.indexOf('霾') > -1) {
  137. imgname = '雾.svg'
  138. } else if (text.indexOf('雾') > -1) {
  139. imgname = '雾.svg'
  140. } else if (text.indexOf('风') > -1) {
  141. imgname = '风.svg'
  142. } else if (text.indexOf('雷') > -1) {
  143. imgname = '雷阵雨.svg'
  144. }
  145. return imgname
  146. },
  147. getWeatherIconByCode(code) {
  148. let imgname = ''
  149. if (code <= 3) {
  150. imgname = '晴.svg'
  151. } else if (code <= 8) {
  152. imgname = '多云.svg'
  153. } else if (code <= 9) {
  154. imgname = '阴.svg'
  155. } else if (code <= 10) {
  156. imgname = '阵雨.svg'
  157. } else if (code <= 12) {
  158. imgname = '雷阵雨.svg'
  159. } else if (code <= 13) {
  160. imgname = '小雨.svg'
  161. } else if (code <= 15) {
  162. imgname = '大雨.svg'
  163. } else if (code <= 18) {
  164. imgname = '暴雨.svg'
  165. } else if (code <= 19) {
  166. // 冻雨
  167. imgname = '小雨.svg'
  168. } else if (code <= 20) {
  169. imgname = '雨夹雪.svg'
  170. } else if (code <= 23) {
  171. imgname = '小雪.svg'
  172. } else if (code <= 25) {
  173. imgname = '大雪.svg'
  174. } else if (code <= 29) {
  175. imgname = '阴.svg'
  176. } else if (code <= 31) {
  177. imgname = '雾.svg'
  178. } else if (code <= 35) {
  179. imgname = '风.svg'
  180. } else if (code <= 36) {
  181. imgname = '龙卷风.svg'
  182. } else if (code <= 37) {
  183. // 冷
  184. imgname = '阴.svg'
  185. } else if (code <= 38) {
  186. // 热
  187. imgname = '晴.svg'
  188. }
  189. return imgname
  190. },
  191. getWeatherInfo() {
  192. const str = setQueryConfig(proxyData.params)
  193. getWeatherNew(str).then((res) => {
  194. console.log(res)
  195. proxyData.outWeather = res.content ? res.content : {}
  196. let text = proxyData.outWeather.text || ''
  197. let code = proxyData.outWeather.code
  198. let imgname = proxyData.getWeatherIconByCode(code)
  199. if (!imgname) {
  200. imgname = proxyData.getWeatherIconByText(text)
  201. }
  202. console.log('imgname==', imgname)
  203. proxyData.outWeather.imgname = imgname
  204. })
  205. },
  206. getSpaceInfo() {
  207. const str = setQueryConfig(proxyData.params)
  208. getPacSpaceInfo({ criteria: proxyData.params }).then((res) => {
  209. const content = (res && res.content) || []
  210. if (content && content.length) {
  211. proxyData.formatSpaceInfo(content)
  212. }
  213. })
  214. },
  215. formatSpaceInfo(content = []) {
  216. for (let i = 0; i < content.length; i++) {
  217. let item = content[i]
  218. if (item.pm25 || item.pm25 === 0) {
  219. let obj = proxyData.checkLevel(item.pm25, 'pm25')
  220. // console.log("obj==", obj);
  221. proxyData.envlist[0].levelTxt = obj ? obj.levelTxt : '--'
  222. proxyData.envlist[0].num = item.pm25
  223. } else {
  224. proxyData.envlist[0].levelTxt = ''
  225. proxyData.envlist[0].num = '--'
  226. }
  227. if (item.hcho || item.hcho == 0) {
  228. let obj = proxyData.checkLevel(item.hcho, 'hcho')
  229. proxyData.envlist[1].levelTxt = obj.levelTxt
  230. proxyData.envlist[1].num = item.hcho
  231. } else {
  232. proxyData.envlist[1].levelTxt = ''
  233. proxyData.envlist[1].num = '--'
  234. }
  235. if (item.temperature || item.temperature == 0) {
  236. proxyData.envlist[2].num = item.temperature
  237. proxyData.envlist[2].levelTxt = '℃'
  238. }
  239. if (item.humidity || item.humidity == 0) {
  240. let obj = proxyData.checkLevel(item.humidity, 'humidity')
  241. proxyData.envlist[3].levelTxt = '%'
  242. proxyData.envlist[3].num = item.humidity
  243. } else {
  244. proxyData.envlist[3].num = '--'
  245. proxyData.envlist[3].levelTxt = '%'
  246. // proxyData.envlist[3].levelTxt = "";
  247. }
  248. }
  249. },
  250. checkLevel(value, name) {
  251. let objList = {
  252. humidity: {
  253. range: [30, 70],
  254. text: ['干燥', '健康', '潮湿'],
  255. },
  256. co2: {
  257. range: [800, 1000, 1500],
  258. text: ['健康', '达标', '略高', '超标'],
  259. },
  260. pm25: {
  261. range: [35, 75, 115, 150, 250],
  262. text: [
  263. '健康',
  264. '良',
  265. '轻度污染',
  266. '中度污染',
  267. '重度污染',
  268. '严重污染',
  269. ],
  270. },
  271. hcho: {
  272. range: [0.1],
  273. text: ['健康', '超标'],
  274. },
  275. temper: {
  276. range: [20, 24],
  277. text: ['偏冷', '舒适', '偏热'],
  278. },
  279. }
  280. let sortArr = [value, ...objList[name].range].sort((a, b) => {
  281. return a - b
  282. })
  283. let level = sortArr.findIndex((item) => item === value)
  284. let levelTxt = objList[name].text[level]
  285. return { level, levelTxt }
  286. },
  287. timeInit() {
  288. this.time1 = setInterval(() => {
  289. this.getWeatherInfo()
  290. }, 300000)
  291. this.time12 = setInterval(() => {
  292. this.getSpaceInfo()
  293. }, 300000)
  294. },
  295. dateObj: {},
  296. getNowDate() {
  297. let date = formatDate('YYYY.MM.DD HH:mm:ss')
  298. let dateArr = date.split(' ')
  299. proxyData.dateObj.month = dateArr[0].split('.')[1]
  300. proxyData.dateObj.day = dateArr[0].split('.')[2]
  301. let nowTime = dateArr[1]
  302. // console.log(nowTime)
  303. proxyData.dateObj.hours = nowTime.split(':')[0]
  304. proxyData.dateObj.minute = nowTime.split(':')[1]
  305. },
  306. dateTime: null,
  307. })
  308. onBeforeUnmount(() => {
  309. clearInterval(this.time1)
  310. clearInterval(this.time1)
  311. })
  312. onMounted(() => {
  313. proxyData.getWeatherInfo()
  314. proxyData.getSpaceInfo()
  315. proxyData.timeInit()
  316. proxyData.getNowDate()
  317. })
  318. return {
  319. ...toRefs(proxyData),
  320. }
  321. },
  322. })
  323. </script>
  324. <style lang="scss" scoped>
  325. // 因为像素转换的单位是96, 大屏的设计图是2160px,
  326. // 所以px大小除/2.25就可自定计算出rem了
  327. .enter-main {
  328. position: relative;
  329. width: 100%;
  330. height: 100%;
  331. background: rgba(160, 146, 137, 1);
  332. .top-box {
  333. box-sizing: border-box;
  334. // padding: 14.58vh 28vw;
  335. padding: 0 2.78vw;
  336. width: 100%;
  337. height: 100%;
  338. display: flex;
  339. justify-content: space-between;
  340. align-items: center;
  341. .left {
  342. display: flex;
  343. align-items: center;
  344. .logo {
  345. width: 34.23px;
  346. // height: 46px;
  347. margin-right: 26.6px;
  348. }
  349. .weather-icon {
  350. width: 53.4px;
  351. // height: 58.6px;
  352. margin-right: 23px;
  353. }
  354. .wether-info {
  355. color: #fff;
  356. .temp {
  357. font-family: Montserrat;
  358. font-size: 25.8px;
  359. font-weight: 600;
  360. line-height: 22px;
  361. text-align: left;
  362. margin-bottom: 9.8px;
  363. }
  364. .text {
  365. font-family: PingFang SC;
  366. font-size: 16.88px;
  367. font-weight: 600;
  368. line-height: 16.4px;
  369. text-align: left;
  370. }
  371. }
  372. .line {
  373. height: 46px;
  374. width: 1px;
  375. background: rgba(216, 185, 164, 1);
  376. margin-left: 17.77px;
  377. margin-right: 17.77px;
  378. }
  379. .wether-pm {
  380. color: #fff;
  381. .value-box {
  382. display: flex;
  383. align-items: center;
  384. font-size: 25.77px;
  385. line-height: 22.22px;
  386. text-align: left;
  387. margin-bottom: 8.88px;
  388. span {
  389. display: inline-block;
  390. &:nth-child(1) {
  391. width: 94px;
  392. margin-right: 7px;
  393. font-family: Montserrat;
  394. font-weight: 400;
  395. }
  396. &:nth-child(2) {
  397. font-family: Montserrat;
  398. font-weight: 600;
  399. }
  400. }
  401. }
  402. .value-des {
  403. display: flex;
  404. align-items: center;
  405. span {
  406. display: inline-block;
  407. font-family: PingFang SC;
  408. font-size: 13.33px;
  409. font-weight: 400;
  410. line-height: 16.6px;
  411. text-align: left;
  412. &:nth-child(1) {
  413. width: 94px;
  414. margin-right: 7px;
  415. }
  416. &:nth-child(2) {
  417. font-family: PingFang SC;
  418. font-size: 16.88px;
  419. font-weight: 600;
  420. text-align: left;
  421. }
  422. }
  423. }
  424. }
  425. }
  426. .right {
  427. width: 57.2vw;
  428. display: flex;
  429. justify-content: space-between;
  430. }
  431. }
  432. .env-box {
  433. box-sizing: border-box;
  434. padding: 0 40rpx;
  435. min-width: 8.33vw;
  436. max-width: 13.15vw;
  437. // height: 70.8vh;
  438. color: #fff;
  439. border: 2px solid rgba(255, 255, 255, 0.2);
  440. border-radius: 8.88px;
  441. background: radial-gradient(
  442. 103.15% 78.07% at -3.15% 51.76%,
  443. #a09289 0%,
  444. #9c8c82 100%
  445. );
  446. .title-box {
  447. display: flex;
  448. justify-content: center;
  449. align-items: center;
  450. padding: 8px;
  451. border-radius: 8.4px 8.4px 0 0;
  452. text-align: center;
  453. background: radial-gradient(
  454. 100% 100% at 0% 0%,
  455. rgba(255, 255, 255, 0.4) 0%,
  456. #a09289 100%
  457. );
  458. backdrop-filter: blur(18px);
  459. -webkit-backdrop-filter: blur(18px);
  460. box-shadow: -3px -3px 111px 0px rgba(255, 255, 255, 0.02) inset;
  461. border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  462. border-image-source: linear-gradient(
  463. 169.15deg,
  464. rgba(255, 255, 255, 0.4) 0%,
  465. rgba(238, 237, 237, 0.2) 96.79%
  466. );
  467. .icon {
  468. width: 13.3px;
  469. height: 13.3px;
  470. margin-right: 4px;
  471. }
  472. .title {
  473. font-family: Montserrat;
  474. font-size: 16px;
  475. font-weight: 500;
  476. line-height: 17.78px;
  477. text-align: left;
  478. text-underline-position: from-font;
  479. text-decoration-skip-ink: none;
  480. }
  481. .calendar-title {
  482. margin-left: 4.44px;
  483. span {
  484. &:nth-child(1) {
  485. }
  486. &:nth-child(2) {
  487. margin-left: 4.5px;
  488. margin-right: 4.5px;
  489. font-size: 12.45px;
  490. }
  491. &:nth-child(3) {
  492. }
  493. }
  494. }
  495. }
  496. .index-box {
  497. padding: 7.55px;
  498. display: flex;
  499. justify-content: center;
  500. align-items: center;
  501. .num {
  502. font-family: Montserrat;
  503. color: #fff;
  504. font-size: 20px;
  505. font-weight: 600;
  506. line-height: 26.66px;
  507. margin-right: 4px;
  508. }
  509. .text {
  510. font-family: PingFang SC;
  511. color: #fff;
  512. font-size: 16px;
  513. font-weight: 600;
  514. line-height: 26.66px;
  515. white-space: nowrap;
  516. overflow: hidden;
  517. text-overflow: ellipsis;
  518. }
  519. .temp-text {
  520. font-family: Montserrat;
  521. }
  522. }
  523. .calendar-time {
  524. span {
  525. display: block;
  526. font-family: Montserrat;
  527. font-size: 20.44px;
  528. font-weight: 600;
  529. line-height: 26.66px;
  530. // &:nth-child(1) {
  531. // line-height: 26.66px;
  532. // }
  533. // &:nth-child(3) {
  534. // line-height: 26.66px;
  535. // }
  536. &:nth-child(2) {
  537. padding-left: 11.55px;
  538. }
  539. }
  540. }
  541. }
  542. }
  543. </style>