Index.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722
  1. <template>
  2. <div id="hdsj">
  3. <div class="panel-left">
  4. <div class="pl-b1">
  5. <span class="title1-left">水深管理</span>
  6. <div v-for="item,index in data_ssgl.value" class="plb1-item" :class="{'highlight': index===1}">
  7. <img :src="item.iconUrl" alt="">
  8. <div>
  9. <span>{{ item.title }}</span>
  10. <div>
  11. <span>{{ item.value }}</span>
  12. <span>{{ item.unit }}</span>
  13. </div>
  14. </div>
  15. </div>
  16. </div>
  17. <div class="pl-b2">
  18. <span class="title1-left">工程管理</span>
  19. <span class="title2-left">工程信息</span>
  20. <ul class="plb2-main">
  21. <li class="plb2-item" v-for="item,index in listData_gcxx.value">
  22. <img :src="require('@/assets/imgs/page_hdsj/icon-gcxx.png')" alt="">
  23. <div>
  24. <div :class="{'highlight': index===1}"><span>{{ item.name }}</span></div>
  25. <div>
  26. <span>{{ item.date }}</span>
  27. <span
  28. :class="{'status-wks': item.status==='未开始','status-jxz': item.status==='进行中','status-ywc': item.status==='已完成'}"
  29. >{{ item.status }}</span>
  30. </div>
  31. </div>
  32. </li>
  33. </ul>
  34. </div>
  35. <div class="pl-b3">
  36. <span class="title2-left">工程统计</span>
  37. <div class="plb3-main">
  38. <div v-for="item in data_gctj.value">
  39. <div>
  40. <span>{{ item.year }}:</span>
  41. <span>{{ item.value }}</span>
  42. <span>个</span>
  43. </div>
  44. </div>
  45. </div>
  46. </div>
  47. </div>
  48. <div class="panel-right">
  49. <div class="pr-b1 pr">
  50. <span class="title1-right">疏浚监控</span>
  51. <span class="title2-right">工程概况</span>
  52. <div class="part1-item" v-for="item in data_gcgk.sta">
  53. <img :src="item.iconUrl" alt="">
  54. <div>
  55. <span>{{ item.title }}</span>
  56. <div>
  57. <span>{{ item.value }}</span>
  58. <span>{{ item.unit }}</span>
  59. </div>
  60. </div>
  61. </div>
  62. <div class="part2">
  63. <div @click="toggleShujunState('before')" :class="{'highlight': shujunState==='before'}">
  64. <span class="text-emp1">疏浚前</span><span>地形</span>
  65. </div>
  66. <div @click="toggleShujunState('after')" :class="{'highlight': shujunState==='after'}">
  67. <span class="text-emp2">疏浚后</span><span>地形</span>
  68. </div>
  69. </div>
  70. </div>
  71. <div class="pr-b2 pr">
  72. <span class="title2-right">分时统计</span>
  73. <div id="chart_fstj" v-show="!fstjListShow"></div>
  74. <div class="fstj-list table-carousel" v-show="fstjListShow">
  75. <div class="fl-btns">
  76. <i class="flb-play" @click="handlePlaySjByDay"></i>
  77. <i class="flb-back" @click="handleCloseList"></i>
  78. </div>
  79. <div class="head coloumn">
  80. <span>挖泥船</span><span>运泥船</span><span>运量</span><span>时间</span>
  81. </div>
  82. <el-carousel
  83. v-if="fstjListLen>0"
  84. trigger="click"
  85. indicator-position="outside"
  86. arrow="never"
  87. :autoplay="false"
  88. >
  89. <el-carousel-item v-for="page in fstjListLen" :key="page">
  90. <ul class="tc-list">
  91. <li
  92. v-for="item,index in fstjListData.value.slice((page-1)*4, (page-1)*4+4)"
  93. class="coloumn"
  94. :class="{'highlight': fstjCurrentId===item.ID}"
  95. @click="handlePickFstjCurrent(item)"
  96. >
  97. <span>{{ item.WNNAME }}</span>
  98. <span>{{ item.YNNAME }}</span>
  99. <span>{{ item.TONNAGE }}</span>
  100. <span>{{ item.WORKTIME }}</span>
  101. </li>
  102. </ul>
  103. </el-carousel-item>
  104. </el-carousel>
  105. <div v-else class="no-data">
  106. <span>无数据</span>
  107. </div>
  108. </div>
  109. </div>
  110. <div class="pr-b3 pr">
  111. <span class="title2-right">越界预警</span>
  112. <ul class="prb3-main" >
  113. <li v-for="item in data_yuejie.value" class="prb3-item2">
  114. <img :src="require('@/assets/imgs/page_hdsj/icon-wgyj-list.png')" alt="">
  115. <span>{{ item.SHIPNAME }}</span>
  116. <span>{{ useDateFormat(item.TIME, 'MM-DD HH:mm').value }}</span>
  117. </li>
  118. </ul>
  119. </div>
  120. </div>
  121. </div>
  122. </template>
  123. <script>
  124. export default {
  125. name: 'HdsjHome',
  126. }
  127. </script>
  128. <script setup>
  129. import { onMounted, reactive, ref, computed, onBeforeUnmount } from 'vue';
  130. import { setSjjk } from '../../echarts/options'
  131. import { ElCarousel, ElCarouselItem } from 'element-plus'
  132. import 'element-plus/es/components/carousel/style/css'
  133. import 'element-plus/es/components/carousel-item/style/css'
  134. import { GetBoatNum, GetFstj, GetFstjByDay, GetYjWarning } from '@/apis/hdsj'
  135. import { useDateFormat } from '@vueuse/core';
  136. import {
  137. ueCallInitShujun, ueCallClickShujun, ueCallRunShujun, ueCallBeforeShujun, ueCallClearShujun, ueCallAfterShujun, ueCallBackShujun, ueCallInitWaterShujun
  138. } from '@/utils/UIInteractions'
  139. import bus from '@/utils/bus';
  140. onMounted(() => {
  141. setSjjk(document.getElementById('chart_fstj'), chartData_fstj.value)
  142. getData()
  143. })
  144. function getData() {
  145. getBoatNum()
  146. getFstj()
  147. getYjWarning()
  148. }
  149. const data_ssgl = reactive({value: [
  150. { title: '维护水深', value: 8, unit: '米', iconUrl: require('@/assets/imgs/page_hdsj/logo-whss.png') },
  151. { title: '淤积预警', value: 1, unit: '处', iconUrl: require('@/assets/imgs/page_hdsj/logo-yjyj.png') },
  152. ]})
  153. const listData_gcxx = reactive({value: [
  154. { name: '2022年董家渡弯道疏浚项目', date:'2022-11', status: '已完成' },
  155. { name: '2022年陆家嘴弯道疏浚项目', date:'2022-10', status: '已完成' },
  156. { name: '2021-2022年黄浦江深水航道疏浚项目', date:'2021-07', status: '已完成' },
  157. ]})
  158. const data_gctj = reactive({value: [
  159. { year: '2019', value: 3 },
  160. { year: '2020', value: 5 },
  161. { year: '2021', value: 2 },
  162. { year: '2022', value: 3 },
  163. { year: '2023', value: 1 },
  164. ]})
  165. const data_gcgk = reactive({
  166. sta: [
  167. { title: '河道总长', value: '-', unit: 'km', iconUrl: require('@/assets/imgs/page_hdsj/logo-hdzc.png') },
  168. { title: '疏浚船舶', value: '-', unit: '艘', iconUrl: require('@/assets/imgs/page_hdsj/logo-sjcb.png') },
  169. ],
  170. cata: [
  171. { name: '工区', value: '-' },
  172. { name: '排泥场', value: '-' },
  173. { name: '固化场', value: '-' },
  174. ]
  175. })
  176. function getBoatNum() {
  177. GetBoatNum().then(res => {
  178. data_gcgk.sta[0].value = 22.15
  179. data_gcgk.sta[1].value = res.data || '-'
  180. data_gcgk.cata[0].value = 6
  181. data_gcgk.cata[1].value = 17
  182. data_gcgk.cata[2].value = 3
  183. })
  184. }
  185. const shujunState = ref(null)
  186. function toggleShujunState(type) {
  187. if(type===shujunState.value) {
  188. shujunState.value = null
  189. ueCallInitWaterShujun()
  190. }else {
  191. if(type==='before') {
  192. ueCallBeforeShujun()
  193. } else if(type==='after') {
  194. ueCallAfterShujun()
  195. }
  196. shujunState.value = type
  197. }
  198. }
  199. const chartData_fstj = reactive({value: [
  200. { TIME: '-/-', TOTAL: 0, SUM: 0 },
  201. { TIME: '-/-', TOTAL: 0, SUM: 0 },
  202. { TIME: '-/-', TOTAL: 0, SUM: 0 },
  203. { TIME: '-/-', TOTAL: 0, SUM: 0 },
  204. { TIME: '-/-', TOTAL: 0, SUM: 0 },
  205. { TIME: '-/-', TOTAL: 0, SUM: 0 },
  206. ]})
  207. function getFstj() {
  208. GetFstj().then(res => {
  209. chartData_fstj.value = res.data.Rows.slice(-6)
  210. let chartFstj = setSjjk(document.getElementById('chart_fstj'), chartData_fstj.value)
  211. chartFstj.on('click', (params)=> {
  212. fstjListShow.value = true
  213. GetFstjByDay(params.name).then(res => {
  214. fstjListData.value = res.data.Rows
  215. })
  216. })
  217. })
  218. }
  219. const fstjListShow = ref(false)
  220. const fstjListData = reactive({value: []})
  221. const fstjListLen = computed(() => {
  222. return Math.ceil(fstjListData.value.length/4)
  223. })
  224. const fstjCurrentId = ref('')
  225. const shujunRunTime = ref(1)
  226. function handlePickFstjCurrent(item) {
  227. ueCallClearShujun()
  228. setTimeout(() => {
  229. fstjCurrentId.value = item.ID
  230. shujunRunTime.value = 1
  231. ueCallInitShujun()
  232. }, 1000);
  233. }
  234. function handlePlaySjByDay() {
  235. ueCallClearShujun()
  236. setTimeout(() => {
  237. fstjCurrentId.value = ''
  238. shujunRunTime.value = fstjListData.value.length
  239. ueCallInitShujun()
  240. }, 1000);
  241. }
  242. function handleCloseList() {
  243. fstjListShow.value = false
  244. ueCallClearShujun()
  245. }
  246. bus.on('ueRec_InitShujun', (data) => {
  247. if(data.isOk=='true') {
  248. ueCallClickShujun()
  249. }
  250. })
  251. bus.on('ueRec_ClickShujun', (data) => {
  252. if(data.isOk=='true') {
  253. ueCallRunShujun()
  254. shujunRunTime.value -= 1
  255. }
  256. })
  257. bus.on('ueRec_RunShujun', (data) => {
  258. if(data.isOk=='true' && shujunRunTime.value>0) {
  259. ueCallBackShujun()
  260. }
  261. })
  262. bus.on('ueRec_BackShujun', (data) => {
  263. if(data.isOk=='true' && shujunRunTime.value>0) {
  264. ueCallRunShujun()
  265. shujunRunTime.value -= 1
  266. }
  267. })
  268. const data_yuejie = reactive({value: [
  269. { SHIPNAME: '-', TIME: '-' },
  270. { SHIPNAME: '-', TIME: '-' },
  271. { SHIPNAME: '-', TIME: '-' },
  272. { SHIPNAME: '-', TIME: '-' },
  273. ]})
  274. function getYjWarning() {
  275. GetYjWarning().then(res => {
  276. data_yuejie.value = res.data.Rows.sort((a,b) => b.TIME - a.TIME).slice(0,4)
  277. })
  278. }
  279. onBeforeUnmount(() => {
  280. bus.off('ueRec_InitShujun')
  281. bus.off('ueRec_ClickShujun')
  282. bus.off('ueRec_RunShujun')
  283. bus.off('ueRec_BackShujun')
  284. ueCallClearShujun()
  285. })
  286. </script>
  287. <style lang="scss" scoped>
  288. #hdsj {
  289. .panel-left, .panel-right {
  290. box-sizing: border-box;
  291. position: absolute;
  292. top: 105px;
  293. width: 380px;
  294. height: calc(100vh - 105px);
  295. text-align: left;
  296. display: flex;
  297. flex-direction: column;
  298. justify-content: space-between;
  299. }
  300. .panel-left {
  301. left: 0;
  302. padding: 0 30px 10px;
  303. }
  304. .panel-right {
  305. right: 0;
  306. padding: 0 30px 10px;
  307. .pr {
  308. display: flex;
  309. flex-direction: column;
  310. align-items: flex-end;
  311. }
  312. }
  313. .pl-b1 {
  314. .plb1-item {
  315. display: flex;
  316. align-items: center;
  317. &.highlight {
  318. &>div>span {
  319. background: url('@/assets/imgs/page_hdsj/bg-ssgl-text2.png') no-repeat;
  320. background-size: contain;
  321. }
  322. }
  323. &>img {
  324. width: 105px;
  325. height: 95px;
  326. }
  327. &>div {
  328. display: flex;
  329. flex-direction: column;
  330. &>span {
  331. display: block;
  332. box-sizing: border-box;
  333. width: 174px;
  334. height: 27px;
  335. margin: 6px 0 5px;
  336. padding-left: 15px;
  337. background: url('@/assets/imgs/page_hdsj/bg-ssgl-text.png') no-repeat;
  338. background-size: contain;
  339. font-size: 24px;
  340. font-family: YSBTH;
  341. color: #FFFFFF;
  342. line-height: 25px;
  343. text-shadow: 1px 2px 0px rgba(17,20,22,0.22);
  344. }
  345. &>div {
  346. padding-left: 15px;
  347. display: flex;
  348. align-items:flex-end;
  349. span:nth-child(1) {
  350. margin-right: 9px;
  351. font-size: 34px;
  352. line-height: 34px;
  353. font-family: BarlowBold;
  354. color: transparent;
  355. background: linear-gradient(0deg, rgba(29,128,224,0.9) 0%, rgba(255,255,255,0.9) 70%);
  356. -webkit-background-clip: text;
  357. }
  358. span:nth-child(2) {
  359. font-size: 14px;
  360. line-height: 22px;
  361. color: #FFFFFF;
  362. text-shadow: 1px 2px 0px rgba(17,20,22,0.22);
  363. }
  364. }
  365. }
  366. }
  367. .plb1-item:nth-last-child(1) {
  368. &>div>div>span:nth-child(1) {
  369. background: linear-gradient(0deg, rgba(224,159,29,0.9) 0%, rgba(255,255,255,0.9) 70%);
  370. -webkit-background-clip: text;
  371. }
  372. }
  373. }
  374. .pl-b2 {
  375. .plb2-main {
  376. .plb2-item {
  377. display: flex;
  378. align-items: center;
  379. margin-bottom: 20px;
  380. &>img {
  381. width: 62px;
  382. height: 67px;
  383. }
  384. &>div {
  385. margin-left: 5px;
  386. &>div:nth-child(1) {
  387. width: 220px;
  388. height: 24px;
  389. background: url('@/assets/imgs/page_hdsj/bg-gcxx-title.png') no-repeat;
  390. background-size: contain;
  391. margin-bottom: 5px;
  392. span {
  393. display: block;
  394. width: 100%;
  395. height: 100%;
  396. font-size: 16px;
  397. font-weight: bold;
  398. font-style: italic;
  399. color: transparent;
  400. line-height: 24px;
  401. background: linear-gradient(0deg, #ACDDFF 0%, #FFFFFF 90%);
  402. -webkit-background-clip: text;
  403. }
  404. &.highlight {
  405. background: url('@/assets/imgs/page_hdsj/bg-gcxx-title2.png') no-repeat;
  406. background-size: contain;
  407. &>span {
  408. background: linear-gradient(0deg, #f0d60d 0%, #FFFFFF 90%);
  409. -webkit-background-clip: text;
  410. }
  411. }
  412. }
  413. &>div:nth-child(2) {
  414. display: flex;
  415. justify-content: space-between;
  416. align-items: center;
  417. padding-right: 18px;
  418. span:nth-child(1) {
  419. font-size: 14px;
  420. font-family: BarlowBold;
  421. color: rgba($color: #fff, $alpha: 0.6);
  422. }
  423. span:nth-child(2) {
  424. display: block;
  425. width: 66px;
  426. height: 31px;
  427. font-size: 13px;
  428. font-weight: bold;
  429. font-style: italic;
  430. color: #FFFFFF;
  431. line-height: 31px;
  432. text-align: center;
  433. &.status-wks {
  434. background: url('@/assets/imgs/page_hdsj/gcxx-wks.png') no-repeat;
  435. background-size: contain;
  436. }
  437. &.status-jxz {
  438. background: url('@/assets/imgs/page_hdsj/gcxx-jxz.png') no-repeat;
  439. background-size: contain;
  440. }
  441. &.status-ywc {
  442. background: url('@/assets/imgs/page_hdsj/gcxx-ywc.png') no-repeat;
  443. background-size: contain;
  444. }
  445. }
  446. }
  447. }
  448. }
  449. }
  450. }
  451. .pl-b3 {
  452. .plb3-main {
  453. position: relative;
  454. width: 254px;
  455. height: 279px;
  456. background: url('@/assets/imgs/page_hdsj/bg-gctj.png') no-repeat;
  457. background-size: 100% 100%;
  458. &::after {
  459. content: '工程统计';
  460. position: absolute;
  461. left: 37%;
  462. bottom: 37%;
  463. transform: rotateZ(4deg);
  464. }
  465. &>div {
  466. position: absolute;
  467. width: 94px;
  468. height: 32px;
  469. background: url('@/assets/imgs/page_hdsj/bg-gctj-text.png') no-repeat;
  470. background-size: contain;
  471. &>div {
  472. height: 100%;
  473. transform: rotateZ(5deg);
  474. display: flex;
  475. align-items: center;
  476. span:nth-child(1) {
  477. margin-left: 7px;
  478. font-size: 14px;
  479. font-family: BarlowBold;
  480. color: #A5E4FF;
  481. }
  482. span:nth-child(2) {
  483. margin: 0 3px 0 5px;
  484. font-size: 18px;
  485. font-family: BarlowBold;
  486. color: #CCE6FF;
  487. }
  488. span:nth-child(3) {
  489. font-size: 12px;
  490. color: #CCE6FF;
  491. }
  492. }
  493. }
  494. &>div:nth-child(1) {
  495. top: 15%;
  496. right: 5%;
  497. }
  498. &>div:nth-child(2) {
  499. top: 43%;
  500. right: -8%;
  501. }
  502. &>div:nth-child(3) {
  503. bottom: 17%;
  504. right: 5%;
  505. }
  506. &>div:nth-child(4) {
  507. bottom: 32%;
  508. left: 5%;
  509. }
  510. &>div:nth-child(5) {
  511. top: 26%;
  512. left: 5%;
  513. }
  514. }
  515. }
  516. .pr-b1 {
  517. .part1-item {
  518. width: 80%;
  519. display: flex;
  520. align-items: center;
  521. &:not(:last-child) {
  522. margin-bottom: 15px;
  523. }
  524. &>img {
  525. width: 89px;
  526. height: 95px;
  527. }
  528. &>div {
  529. margin-left: 17px;
  530. &>span {
  531. font-size: 20px;
  532. font-style: italic;
  533. color: rgba($color: #EAF2FF, $alpha: 0.7);
  534. }
  535. &>div {
  536. margin-top: 8px;
  537. span:nth-child(1) {
  538. margin-right: 11px;
  539. font-size: 32px;
  540. font-family: BarlowBold;
  541. color: #FFFFFF;
  542. line-height: 32px;
  543. }
  544. span:nth-child(2) {
  545. font-size: 16px;
  546. color: rgba($color: #A6C8FF, $alpha: 0.54);
  547. }
  548. }
  549. }
  550. }
  551. .part2 {
  552. width: 90%;
  553. display: flex;
  554. justify-content: space-between;
  555. &>div {
  556. width: 140px;
  557. height: 49px;
  558. background: url('../../assets/imgs/page_hdsj/bg-sj-btn.png');
  559. background-size: contain;
  560. cursor: pointer;
  561. text-align: center;
  562. &>span {
  563. font-size: 18px;
  564. font-family: YSBTH;
  565. color: #eee;
  566. line-height: 49px;
  567. }
  568. .text-emp1 {
  569. color: #fcd049;
  570. }
  571. .text-emp2 {
  572. color: #46c6fe;
  573. }
  574. &.highlight {
  575. filter: brightness(130%);
  576. transform: scale(1.1);
  577. }
  578. }
  579. }
  580. }
  581. .pr-b2 {
  582. #chart_fstj {
  583. width: 90%;
  584. height: 23vh;
  585. }
  586. .fstj-list {
  587. // margin-top: 0.5vh;
  588. height: 23vh;
  589. width: 90%;
  590. position: relative;
  591. .fl-btns {
  592. display: flex;
  593. justify-content: flex-end;
  594. align-items: center;
  595. margin-bottom: 10px;
  596. &>i {
  597. display: block;
  598. width: 20px;
  599. height: 20px;
  600. margin-left: 10px;
  601. cursor: pointer;
  602. }
  603. .flb-back {
  604. background: url('@/assets/imgs/page_hdsj/btn-back.png');
  605. background-size: contain;
  606. }
  607. .flb-play {
  608. background: url('@/assets/imgs/page_hdsj/btn-play.png');
  609. background-size: contain;
  610. }
  611. }
  612. .coloumn {
  613. span:nth-child(1) {
  614. width: 30%;
  615. }
  616. span:nth-child(2) {
  617. width: 30%;
  618. }
  619. span:nth-child(3) {
  620. width: 20%;
  621. }
  622. span:nth-child(4) {
  623. width: 20%;
  624. }
  625. }
  626. .el-carousel {
  627. height: calc(100% - 50px);
  628. }
  629. .tc-list {
  630. &>li {
  631. height: 30px;
  632. margin-top: 10px;
  633. cursor: pointer;
  634. &.highlight>span {
  635. color: #f0d60d;
  636. }
  637. }
  638. }
  639. }
  640. }
  641. .pr-b3 {
  642. .prb3-main {
  643. display: flex;
  644. flex-direction: column;
  645. align-items: flex-end;
  646. width: 100%;
  647. // height: 20vh;
  648. margin: 10px 0 25px;
  649. .prb3-item2 {
  650. width: 85%;
  651. height: 24px;
  652. display: flex;
  653. align-items: center;
  654. margin: 14px 0;
  655. background: url('@/assets/imgs/page_hdsj/bg-wgyj-list.png') no-repeat;
  656. background-size: 100% 100%;
  657. span:nth-child(2) {
  658. display: block;
  659. width: 51%;
  660. font-size: 14px;
  661. font-weight: 700;
  662. font-style: italic;
  663. color: transparent;
  664. background: linear-gradient(0deg, #ACDDFF 0%, #FFFFFF 100%);
  665. -webkit-background-clip: text;
  666. }
  667. span:nth-child(3) {
  668. display: block;
  669. font-size: 14px;
  670. font-family: BarlowBold;
  671. color: rgba($color: #fff, $alpha: 0.6);
  672. }
  673. }
  674. }
  675. }
  676. }
  677. </style>