Index.vue 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063
  1. <template>
  2. <div id="hdsj">
  3. <div class="panel-left" :class="{'is-hide': aside_hide}">
  4. <div class="pl-b1">
  5. <span class="title1-left">水深管理</span>
  6. <div v-for="item in data_ssgl.value" class="plb1-item">
  7. <img :src="item.iconUrl" alt="">
  8. <div>
  9. <span @click="handleToggleSsgl(item)" :class="{'highlight': item.isHighlight}">{{ item.title }}</span>
  10. <div>
  11. <span :class="{'is-warning': item.value>0}">{{ item.value }}</span>
  12. <span>{{ item.unit }}</span>
  13. </div>
  14. </div>
  15. </div>
  16. </div>
  17. <ShowYuWarning v-if="showYujiList" @close="handleCloseYujiWhss" @pick="item => handlePickWhss(item)"/>
  18. <water-depth-list v-if="listShow_whss" @close="handleCloseWhss" @pick="item => handlePickWhss(item)"/>
  19. <div class="pl-b2">
  20. <span class="title1-left">工程管理</span>
  21. <span class="title2-left">工程统计</span>
  22. <ul class="gctj-main">
  23. <li
  24. v-for="item in data_gctj.value"
  25. class="gctj-item"
  26. :class="{'highlight': currentYear===item.YEAR}"
  27. @click="handleChangeYear(item)"
  28. >
  29. <div>{{ item.YEAR }}年</div>
  30. <div>
  31. <span>{{ item.TOTAL }}</span>
  32. <span>个</span>
  33. </div>
  34. </li>
  35. </ul>
  36. <span class="title2-left">工程信息</span>
  37. <ul v-if="listData_gcxx.value.length>0" class="gcxx-main" :class="{'is-short-list': listData_gcxx.value.length<3}">
  38. <li class="gcxx-item" v-for="item,index in listData_gcxx.value" @click="handleChangeProject(item)">
  39. <img :src="require('@/assets/imgs/page_hdsj/icon-gcxx.png')" alt="">
  40. <div>
  41. <div>
  42. <div :class="{'highlight': item.id===currentProject.id}"><span :title="item.prjName">{{ item.prjName }}</span></div>
  43. <span
  44. :class="{'status-wks': item.status==='未进行','status-jxz': item.status==='进行中','status-ywc': item.status==='已完成'}"
  45. >{{ item.status }}</span>
  46. <!-- <span class="status-ywc">已完成</span> -->
  47. </div>
  48. <div v-if="item.projectEndTime||item.projectStartTime">
  49. <span>{{ item.projectStartTime }}</span><span>至</span><span>{{ item.projectEndTime }}</span>
  50. </div>
  51. <div v-else></div>
  52. <div>
  53. <span>计划方量</span><span>{{ (item.quantities/10000).toFixed(2) }}</span><span>万方</span>
  54. <span>实际方量</span><span>{{ Math.floor(item.tonnage) }}</span><span>万方</span>
  55. </div>
  56. <div>
  57. <span>总投资</span><span>{{ Math.floor(item.investment) }}</span><span>万元</span>
  58. </div>
  59. </div>
  60. </li>
  61. </ul>
  62. <div v-else class="no-data"><span>无数据</span></div>
  63. </div>
  64. </div>
  65. <div class="panel-right" v-if="showRightDetail" :class="{'is-hide': aside_hide}">
  66. <div class="pr-b1 pr">
  67. <span class="title1-right">疏浚监控</span>
  68. <span class="title2-right">工程名称</span>
  69. <span class="pro-name">{{ currentProject.name }}</span>
  70. <span class="title2-right">工程概况</span>
  71. <div class="part1-item" v-for="item in data_gcgk.sta">
  72. <img :src="item.iconUrl" @click="item.title=='疏浚船舶' ? handleShowBoats(true) : handleShowBoats(false)" alt="">
  73. <div @click="item.title=='疏浚船舶' ? handleShowBoats(true) : handleShowBoats(false)" >
  74. <span>{{ item.title }}</span>
  75. <div>
  76. <span>{{ item.value }}</span>
  77. <span>{{ item.unit }}</span>
  78. </div>
  79. </div>
  80. </div>
  81. <div class="part2">
  82. <div v-if="currentProject.id=='1648916350938120192'" @click="toggleShujunState('before')" :class="{'highlight': shujunState==='before'}">
  83. <span class="text-emp1">疏浚前</span><span>地形</span>
  84. </div>
  85. <div v-if="currentProject.id=='1648916350938120192'" @click="toggleShujunState('after')" :class="{'highlight': shujunState==='after'}">
  86. <span class="text-emp2">疏浚后</span><span>地形</span>
  87. </div>
  88. </div>
  89. </div>
  90. <div class="pr-b2 pr">
  91. <span class="title2-right">分时统计</span>
  92. <div id="chart_fstj" v-show="!fstjListShow"></div>
  93. <div class="fstj-list table-carousel" v-show="fstjListShow">
  94. <div class="fl-btns">
  95. <i class="flb-play" @click="handlePlaySjByDay"></i>
  96. <i class="flb-back" @click="handleCloseList"></i>
  97. </div>
  98. <div class="head coloumn">
  99. <span>挖泥船</span><span>运泥船</span><span>运量</span><span>时间</span>
  100. </div>
  101. <el-carousel
  102. v-if="fstjListLen>0"
  103. trigger="click"
  104. indicator-position="outside"
  105. arrow="never"
  106. :autoplay="false"
  107. >
  108. <el-carousel-item v-for="page in fstjListLen" :key="page">
  109. <ul class="tc-list">
  110. <li
  111. v-for="item,index in fstjListData.value.slice((page-1)*4, (page-1)*4+4)"
  112. class="coloumn"
  113. :class="{'highlight': fstjCurrentId===item.id}"
  114. @click="handlePickFstjCurrent(item)"
  115. >
  116. <span>{{ item.wnName }}</span>
  117. <span>{{ item.ynName }}</span>
  118. <span>{{ item.tonnage }}</span>
  119. <span>{{ item.workTime }}</span>
  120. </li>
  121. </ul>
  122. </el-carousel-item>
  123. </el-carousel>
  124. <div v-else class="no-data">
  125. <span>无数据</span>
  126. </div>
  127. </div>
  128. </div>
  129. <div class="pr-b3 pr tab-table table-carousel">
  130. <span class="title2-right">越界预警</span>
  131. <!-- <el-carousel-->
  132. <!-- style="width: 100%"-->
  133. <!-- height="17vh"-->
  134. <!-- trigger="click"-->
  135. <!-- indicator-position="outside"-->
  136. <!-- arrow="never"-->
  137. <!-- :autoplay="true">-->
  138. <!-- <el-carousel-item style="width: 100%;height:100%;" v-for="page in data_yuejie_page" :key="page" >-->
  139. <!-- <ul class="prb3-main" >-->
  140. <!-- <li class="prb3-item2" v-for="item in data_yuejie.value.slice((page-1)*4, (page-1)*4+4)" >-->
  141. <!-- <img :src="require('@/assets/imgs/page_hdsj/icon-wgyj-list.png')" alt="">-->
  142. <!-- <span>{{ item.shipName }}</span>-->
  143. <!-- <span>{{ item.times? useDateFormat(item.times, 'MM-DD HH:mm').value: '-' }}</span>-->
  144. <!-- </li>-->
  145. <!-- </ul>-->
  146. <!-- </el-carousel-item>-->
  147. <!-- </el-carousel>-->
  148. <ul class="prb3-main" v-if="data_yuejie.value.length>0" >
  149. <li v-for="item in data_yuejie.value" class="prb3-item2">
  150. <img :src="require('@/assets/imgs/page_hdsj/icon-wgyj-list.png')" alt="">
  151. <span>{{ item.shipName }}</span>
  152. <span>{{ item.times? useDateFormat(item.times, 'MM-DD HH:mm').value: '-' }}</span>
  153. </li>
  154. </ul>
  155. <el-pagination
  156. class="pageForDown pagi-default"
  157. style="opacity: 0.6;color: #eff7fb"
  158. small
  159. pager-count="4"
  160. :current-page="currentPage"
  161. :page-size="pageSize"
  162. :total="totals"
  163. layout="prev, pager, next"
  164. @current-change="handlePageChange"
  165. @size-change="handleSizeChange"
  166. >
  167. </el-pagination>
  168. </div>
  169. </div>
  170. <div v-else class="panel-right pr-no-data">无数据</div>
  171. <BingTu v-if="showSuJun" :datas="listData_gcxx.value" :types="type" @closeFun="handleCloseBingTu" />
  172. <BoatList v-if="showBoats" :objId="currentProject.id" @closeBoatList="handleShowBoats(false)"/>
  173. <ButonSuJun @backFunction="handleShowBingTu" />
  174. </div>
  175. </template>
  176. <script>
  177. export default {
  178. name: 'HdsjHome',
  179. }
  180. </script>
  181. <script setup>
  182. import { onMounted, reactive, ref, computed, onBeforeUnmount, watch } from 'vue';
  183. import { setSjjk } from '../../echarts/options'
  184. import { ElCarousel, ElCarouselItem ,ElPagination} from 'element-plus'
  185. import 'element-plus/es/components/pagination/style/css'
  186. import 'element-plus/es/components/carousel/style/css'
  187. import 'element-plus/es/components/carousel-item/style/css'
  188. import { GetBoatNum, GetFstj, GetFstjByDay, GetYjWarning, GetGctj, GetGcxx } from '@/apis/hdsj'
  189. import { useDateFormat } from '@vueuse/core';
  190. import {
  191. ueCallInitShujun, ueCallClickShujun, ueCallRunShujun, ueCallBeforeShujun, ueCallClearShujun,
  192. ueCallAfterShujun, ueCallBackShujun, ueCallInitWaterShujun, ueCallStartYjyj, ueCallCloseYjyj,
  193. ueCallOpenWater, ueCallCloseWater, ueCallOpenMaintain, ueCallCloseMaintain
  194. } from '@/utils/UIInteractions'
  195. import BingTu from "@/views/hdsj/cpns/BingTu"
  196. import ButonSuJun from "@/views/hdsj/cpns/ButtonSuJun"
  197. import BoatList from "@/views/hdsj/cpns/BoatList";
  198. import bus from '@/utils/bus';
  199. import WaterDepthList from './cpns/WaterDepthList.vue'
  200. import { asideShow } from '@/store/index'
  201. import ShowYuWarning from '@/views/hdsj/cpns/ShowYuWarning'
  202. import {addLayerByName} from "@/utils/map/Layer"
  203. import {compareSjBeforeAfter, showWhss} from "@/utils/map/Channel";
  204. const type =ref('计划方量')
  205. const aside_hide = asideShow().isHide
  206. function handleShowBingTu(){
  207. showSuJun.value=true
  208. }
  209. onMounted(() => {
  210. // setSjjk(document.getElementById('chart_fstj'), chartData_fstj.value)
  211. // getGctj()
  212. bus.on('changeYuJiNum',(val)=> {
  213. data_ssgl.value[1].value = val
  214. })
  215. })
  216. const data_ssgl = reactive({value: [
  217. { title: '维护水深', isHighlight: false, value: '-', unit: '米', iconUrl: require('@/assets/imgs/page_hdsj/logo-whss.png') },
  218. { title: '淤积预警', isHighlight: false, value: 0, unit: '处', iconUrl: require('@/assets/imgs/page_hdsj/logo-yjyj.png') },
  219. ]})
  220. const listShow_whss = ref(false)
  221. const showYujiList = ref(false)
  222. const showSuJun = ref(false)
  223. const showBoats = ref(false)
  224. function handlePickWhss(item) {
  225. data_ssgl.value[0].value = Math.abs(+item.height)
  226. ueCallCloseMaintain()
  227. setTimeout(() => {
  228. ueCallOpenMaintain(item.id)
  229. }, 500);
  230. }
  231. function handleShowBoats(value)
  232. {
  233. showBoats.value=value
  234. }
  235. function handleCloseBingTu() {
  236. showSuJun.value=false
  237. }
  238. function handleCloseWhss() {
  239. showWhss(false)
  240. data_ssgl.value[0].isHighlight = false
  241. data_ssgl.value[0].value = '-'
  242. listShow_whss.value = false
  243. ueCallCloseMaintain()
  244. }
  245. function handleCloseYujiWhss() {
  246. addLayerByName('yjyj',false)
  247. data_ssgl.value[0].isHighlight = false
  248. data_ssgl.value[0].value = '-'
  249. data_ssgl.value[1].isHighlight = false
  250. showYujiList.value = false
  251. ueCallCloseMaintain()
  252. }
  253. function handleToggleSsgl(item) {
  254. if(item.title==='淤积预警'&&item.value>0) {
  255. if(data_ssgl.value[1].isHighlight === false) {
  256. showYujiList.value = true
  257. addLayerByName('yjyj',true)
  258. // ueCallCloseWater()
  259. // ueCallStartYjyj()
  260. } else {
  261. addLayerByName('yjyj',false)
  262. showYujiList.value = false
  263. // ueCallOpenWater()
  264. // ueCallCloseYjyj()
  265. }
  266. data_ssgl.value[1].isHighlight = !data_ssgl.value[1].isHighlight
  267. }
  268. if(item.title==='维护水深') {
  269. showWhss(true)
  270. if(listShow_whss.value) {
  271. handleCloseWhss()
  272. } else {
  273. data_ssgl.value[0].isHighlight = true
  274. listShow_whss.value = true
  275. }
  276. }
  277. }
  278. const listData_gcxx = reactive({value: []})
  279. function handleChangeProject(item) {
  280. currentProject.id = item.id
  281. currentProject.name = item.prjName
  282. currentProject.status = item.status
  283. if( currentProject.id!='1648916350938120192'){
  284. shujunState.value = null
  285. compareSjBeforeAfter(null,false)
  286. }
  287. }
  288. const currentProject = reactive({ id: '', name: '', status: '' })
  289. const showRightDetail = ref(true)
  290. watch(()=>currentProject.id, (val)=> {
  291. // if(val===null||+currentYear.value>2023) {
  292. if(val===null||currentProject.status==='未进行') {
  293. showRightDetail.value = false
  294. } else {
  295. fstjListShow.value = false
  296. getFstj(val)
  297. getYjWarning(val)
  298. console.log('工程入参:'+val)
  299. getBoatNum(val)
  300. showRightDetail.value = true
  301. }
  302. })
  303. const currentYear = ref('2022')
  304. watch(currentYear, (val)=> {
  305. getGcxx(val)
  306. },{immediate: true})
  307. function handleChangeYear(item) {
  308. currentYear.value = item.YEAR
  309. }
  310. const data_gctj = reactive({value: [
  311. { YEAR: '2022', TOTAL: 3 },
  312. { YEAR: '2023', TOTAL: 2 },
  313. { YEAR: '2024', TOTAL: 0 },
  314. ]})
  315. // function getGctj() {
  316. // GetGctj().then(res => {
  317. // data_gctj.value = res.data.Rows
  318. // currentYear.value = res.data.Rows[0].YEAR
  319. // })
  320. // }
  321. function getGcxx(year) {
  322. GetGcxx(year).then(res => {
  323. if(res.data?.Rows.length>0) {
  324. listData_gcxx.value = res.data.Rows
  325. listData_gcxx.value.forEach(i => {
  326. if(i.projectStartTime) {
  327. if(i.projectEndTime) {
  328. i.status = '已完成'
  329. } else {
  330. i.status = '进行中'
  331. }
  332. } else {
  333. i.status = '未进行'
  334. }
  335. })
  336. currentProject.id = res.data.Rows[0].id
  337. currentProject.name = res.data.Rows[0].prjName
  338. currentProject.status = listData_gcxx.value[0].status
  339. } else {
  340. listData_gcxx.value = []
  341. currentProject.id = null
  342. currentProject.name = null
  343. currentProject.status = null
  344. }
  345. })
  346. }
  347. const data_gcgk = reactive({
  348. sta: [
  349. { title: '河道总长', value: '-', unit: 'km', iconUrl: require('@/assets/imgs/page_hdsj/logo-hdzc.png') },
  350. { title: '疏浚船舶', value: '-', unit: '艘', iconUrl: require('@/assets/imgs/page_hdsj/logo-sjcb.png') },
  351. ]
  352. })
  353. function getBoatNum(id) {
  354. GetBoatNum(id).then(res => {
  355. let areaLength
  356. switch(id) {
  357. case '1648916350938120192':
  358. areaLength = 1.469
  359. break
  360. case '1648912989748723712':
  361. areaLength = 2.781
  362. break
  363. case '1648914259771392000':
  364. areaLength = 1.364
  365. break
  366. case '1FAF5519-C64E-4414-A616-2CE989C7560B':
  367. areaLength=2.9
  368. break
  369. }
  370. data_gcgk.sta[0].value = areaLength || '-'
  371. data_gcgk.sta[1].value = res.data.data || '-'
  372. })
  373. }
  374. const shujunState = ref(null)
  375. watch(shujunState, (val, oldVal) => {
  376. if(val&&!oldVal) {
  377. if(currentProject.id!='1648916350938120192') {
  378. bus.emit('toggleUnderWaterLegend', {from: 'show_hdsj', state: true})
  379. }
  380. }else if(!val&&oldVal){
  381. bus.emit('toggleUnderWaterLegend',{from: 'show_hdsj', state: false})
  382. }
  383. })
  384. function toggleShujunState(type) {
  385. if(type===shujunState.value) {
  386. shujunState.value = null
  387. compareSjBeforeAfter(null,false)
  388. // ueCallInitWaterShujun()
  389. }else {
  390. if(currentProject.id=='1648916350938120192') {
  391. if(type==='before')
  392. {
  393. compareSjBeforeAfter('2022LjzBefore',true)
  394. }else {
  395. compareSjBeforeAfter('2022LjzAfter',true)
  396. }
  397. }
  398. // if(type==='before') {
  399. // // ueCallBeforeShujun()
  400. // } else if(type==='after') {
  401. // // ueCallAfterShujun()
  402. // }
  403. shujunState.value = type
  404. }
  405. }
  406. const chartData_fstj = reactive({
  407. default: [
  408. { TIME: '-/-', TOTAL: 0, SUM: 0 },
  409. { TIME: '-/-', TOTAL: 0, SUM: 0 },
  410. { TIME: '-/-', TOTAL: 0, SUM: 0 },
  411. { TIME: '-/-', TOTAL: 0, SUM: 0 },
  412. { TIME: '-/-', TOTAL: 0, SUM: 0 },
  413. { TIME: '-/-', TOTAL: 0, SUM: 0 },
  414. ],
  415. value: []
  416. })
  417. function getFstj(id) {
  418. GetFstj(id).then(res => {
  419. if(!res.data) {
  420. setSjjk(document.getElementById('chart_fstj'), chartData_fstj.default)
  421. return
  422. }
  423. chartData_fstj.value = res.data.Rows.slice(-6)
  424. let chartFstj = setSjjk(document.getElementById('chart_fstj'), chartData_fstj.value)
  425. chartFstj.on('click', (params)=> {
  426. fstjListShow.value = true
  427. GetFstjByDay(params.name, id).then(res => {
  428. fstjListData.value = res.data.Rows
  429. })
  430. })
  431. })
  432. }
  433. const fstjListShow = ref(false)
  434. const fstjListData = reactive({value: []})
  435. const fstjListLen = computed(() => {
  436. return Math.ceil(fstjListData.value.length/4)
  437. })
  438. const fstjCurrentId = ref('')
  439. const shujunRunTime = ref(1)
  440. function handlePickFstjCurrent(item) {
  441. ueCallClearShujun()
  442. setTimeout(() => {
  443. fstjCurrentId.value = item.id
  444. shujunRunTime.value = 1
  445. ueCallInitShujun()
  446. }, 1000);
  447. }
  448. function handlePlaySjByDay() {
  449. ueCallClearShujun()
  450. setTimeout(() => {
  451. fstjCurrentId.value = ''
  452. shujunRunTime.value = fstjListData.value.length
  453. ueCallInitShujun()
  454. }, 1000);
  455. }
  456. function handleCloseList() {
  457. fstjCurrentId.value = ''
  458. fstjListShow.value = false
  459. ueCallClearShujun()
  460. }
  461. bus.on('ueRec_InitShujun', (data) => {
  462. if(data.isOk=='true') {
  463. ueCallClickShujun()
  464. }
  465. })
  466. bus.on('ueRec_ClickShujun', (data) => {
  467. if(data.isOk=='true') {
  468. ueCallRunShujun()
  469. shujunRunTime.value -= 1
  470. }
  471. })
  472. bus.on('ueRec_RunShujun', (data) => {
  473. if(data.isOk=='true' && shujunRunTime.value>0) {
  474. ueCallBackShujun()
  475. }
  476. })
  477. bus.on('ueRec_BackShujun', (data) => {
  478. if(data.isOk=='true' && shujunRunTime.value>0) {
  479. ueCallRunShujun()
  480. shujunRunTime.value -= 1
  481. }
  482. })
  483. const data_yuejie = reactive({
  484. default: [
  485. { shipName: '-', times: '' },
  486. { shipName: '-', times: '' },
  487. { shipName: '-', times: '' },
  488. { shipName: '-', times: '' },
  489. ],
  490. value: []
  491. })
  492. function getYjWarning(id) {
  493. GetYjWarning(currentPage.value,pageSize.value,id).then(res => {
  494. if(res.code=="200") {
  495. // data_yuejie.value = res.data.Rows.sort((a,b) => b.TIME - a.TIME)
  496. data_yuejie.value = res.data.Rows.sort((a,b) => b.TIME - a.TIME)
  497. totals.value = res.data.TotalRowCount
  498. } else {
  499. data_yuejie.value = data_yuejie.default
  500. }
  501. })
  502. }
  503. const currentPage = ref(1)
  504. const pageSize = ref(3)
  505. const totals = ref(0)
  506. function indexCreate(row, column, cellValue, index) {
  507. return index + 1 + pageSize.value*(currentPage.value - 1)
  508. }
  509. function handlePageChange(val) {
  510. currentPage.value = val
  511. getYjWarning(currentProject.id)
  512. }
  513. function handleSizeChange(val) {
  514. // debugger
  515. pageSize.value = val
  516. currentPage.value = 1
  517. getYjWarning(currentProject.id)
  518. }
  519. onBeforeUnmount(() => {
  520. bus.off('ueRec_InitShujun')
  521. bus.off('ueRec_ClickShujun')
  522. bus.off('ueRec_RunShujun')
  523. bus.off('ueRec_BackShujun')
  524. ueCallClearShujun()
  525. bus.emit('toggleUnderWaterLegend',{from: 'show_hdsj', state: false})
  526. })
  527. </script>
  528. <style lang="scss" scoped>
  529. #hdsj {
  530. .panel-left, .panel-right {
  531. box-sizing: border-box;
  532. position: absolute;
  533. top: 105px;
  534. width: 380px;
  535. height: calc(100vh - 105px);
  536. text-align: left;
  537. display: flex;
  538. flex-direction: column;
  539. justify-content: space-between;
  540. transition: all 0.5s ease;
  541. }
  542. .panel-left {
  543. left: 0;
  544. padding: 0 30px 30px;
  545. justify-content: flex-start;
  546. &.is-hide {
  547. left: -380px;
  548. }
  549. }
  550. .panel-right {
  551. right: 0;
  552. padding: 0 30px 30px;
  553. &.is-hide {
  554. right: -380px;
  555. }
  556. .pr {
  557. display: flex;
  558. flex-direction: column;
  559. align-items: flex-end;
  560. }
  561. &.pr-no-data {
  562. justify-content: center;
  563. align-items: center;
  564. font-size: 18px;
  565. }
  566. }
  567. .pl-b1 {
  568. margin-bottom: 2vh;
  569. .plb1-item {
  570. display: flex;
  571. align-items: center;
  572. &>img {
  573. width: 105px;
  574. height: 95px;
  575. }
  576. &>div {
  577. display: flex;
  578. flex-direction: column;
  579. &>span {
  580. display: block;
  581. box-sizing: border-box;
  582. width: 174px;
  583. height: 27px;
  584. margin: 6px 0 5px;
  585. padding-left: 15px;
  586. background: url('@/assets/imgs/page_hdsj/bg-ssgl-text.png') no-repeat;
  587. background-size: contain;
  588. font-size: 24px;
  589. font-family: YSBTH;
  590. color: #FFFFFF;
  591. line-height: 25px;
  592. text-shadow: 1px 2px 0px rgba(17,20,22,0.22);
  593. cursor: pointer;
  594. &.highlight {
  595. background: url('@/assets/imgs/page_hdsj/bg-ssgl-text2.png') no-repeat;
  596. background-size: contain;
  597. }
  598. }
  599. &>div {
  600. padding-left: 15px;
  601. display: flex;
  602. align-items:flex-end;
  603. span:nth-child(1) {
  604. margin-right: 9px;
  605. font-size: 34px;
  606. line-height: 34px;
  607. font-family: BarlowBold;
  608. color: transparent;
  609. background: linear-gradient(0deg, rgba(29,128,224,0.9) 0%, rgba(255,255,255,0.9) 70%);
  610. -webkit-background-clip: text;
  611. &.is-warning {
  612. background: linear-gradient(0deg, rgba(224,159,29,0.9) 0%, rgba(255,255,255,0.9) 70%);
  613. -webkit-background-clip: text;
  614. }
  615. }
  616. span:nth-child(2) {
  617. font-size: 16px;
  618. line-height: 22px;
  619. color: #FFFFFF;
  620. text-shadow: 1px 2px 0px rgba(17,20,22,0.22);
  621. }
  622. }
  623. }
  624. }
  625. }
  626. .pl-b2 {
  627. .title2-left {
  628. margin-bottom: 2vh;
  629. }
  630. .gctj-main {
  631. width: 95%;
  632. display: flex;
  633. justify-content: space-between;
  634. align-items: center;
  635. margin-bottom: 2.5vh;
  636. .gctj-item {
  637. width: 93px;
  638. height: 95px;
  639. background: url('../../assets/imgs/page_hdsj/bg-gctj.png') no-repeat;
  640. background-size: contain;
  641. background-position-y: bottom;
  642. cursor: pointer;
  643. &>div:first-child {
  644. font-size: 18px;
  645. font-family: Barlow;
  646. color: #FFFFFF;
  647. text-align: center;
  648. }
  649. &>div:last-child {
  650. text-align: center;
  651. color: #72D0FF;
  652. text-shadow: 0px 3px 3px rgba(0,0,0,0.47);
  653. &>span:first-child {
  654. font-size: 26px;
  655. font-family: BarlowBold;
  656. }
  657. &>span:last-child {
  658. font-size: 16px;
  659. }
  660. }
  661. &.highlight {
  662. background-image: url('../../assets/imgs/page_hdsj/bg-gctj-s.png');
  663. &>div:last-child {
  664. color: #FFFF73;
  665. }
  666. }
  667. }
  668. }
  669. .gcxx-main {
  670. height: 36vh;
  671. overflow: hidden;
  672. display: flex;
  673. flex-direction: column;
  674. justify-content: space-evenly;
  675. &.is-short-list {
  676. justify-content: flex-start;
  677. padding-top: 2.1vh;
  678. }
  679. .gcxx-item {
  680. display: flex;
  681. align-items: flex-start;
  682. margin-bottom: 10px;
  683. cursor: pointer;
  684. &>img {
  685. width: 37px;
  686. height: 39px;
  687. }
  688. &>div {
  689. margin-left: 5px;
  690. &>div:nth-child(1) {
  691. display: flex;
  692. align-items: center;
  693. margin-top: 4px;
  694. &>div:nth-child(1) {
  695. width: 210px;
  696. height: 24px;
  697. background: url('@/assets/imgs/page_hdsj/bg-gcxx-title.png') no-repeat;
  698. background-size: contain;
  699. span {
  700. display: block;
  701. width: 100%;
  702. height: 100%;
  703. font-size: 16px;
  704. font-weight: bold;
  705. font-style: italic;
  706. color: transparent;
  707. line-height: 24px;
  708. background: linear-gradient(0deg, #ACDDFF 0%, #FFFFFF 90%);
  709. -webkit-background-clip: text;
  710. white-space: nowrap;
  711. overflow: hidden;
  712. text-overflow: ellipsis;
  713. }
  714. &.highlight {
  715. background: url('@/assets/imgs/page_hdsj/bg-gcxx-title2.png') no-repeat;
  716. background-size: contain;
  717. &>span {
  718. background: linear-gradient(0deg, #f0d60d 0%, #FFFFFF 90%);
  719. -webkit-background-clip: text;
  720. }
  721. }
  722. }
  723. span:nth-child(2) {
  724. display: block;
  725. width: 66px;
  726. height: 31px;
  727. font-size: 13px;
  728. font-weight: bold;
  729. font-style: italic;
  730. color: #FFFFFF;
  731. line-height: 33px;
  732. text-align: center;
  733. &.status-wks {
  734. background: url('@/assets/imgs/page_hdsj/gcxx-wks.png') no-repeat;
  735. background-size: contain;
  736. }
  737. &.status-jxz {
  738. background: url('@/assets/imgs/page_hdsj/gcxx-jxz.png') no-repeat;
  739. background-size: contain;
  740. }
  741. &.status-ywc {
  742. background: url('@/assets/imgs/page_hdsj/gcxx-ywc.png') no-repeat;
  743. background-size: contain;
  744. }
  745. }
  746. }
  747. &>div:nth-child(2) {
  748. margin: 8px 0 6px;
  749. span {
  750. margin-right: 10px;
  751. font-size: 13px;
  752. font-family: BarlowBold;
  753. opacity: 0.8;
  754. }
  755. span:nth-child(4), span:nth-child(6) {
  756. margin-right: 2px;
  757. color: #FFFFFF;
  758. font-size: 13px;
  759. opacity: 1;
  760. }
  761. span:nth-child {
  762. font-size: 12px;
  763. opacity: 0.8;
  764. }
  765. }
  766. &>div:nth-child(3) {
  767. height: 20px;
  768. span {
  769. margin-right: 5px;
  770. font-size: 12px;
  771. font-family: BarlowBold;
  772. color: #FFFFFF;
  773. opacity: 0.7;
  774. }
  775. span:nth-child(2), span:nth-child(3), span:nth-child(5), span:nth-child(6){
  776. color: #FFFFFF;
  777. font-size: 13px;
  778. opacity: 1;
  779. }
  780. }
  781. &>div:nth-child(4) {
  782. height: 20px;
  783. span {
  784. margin-right: 10px;
  785. font-size: 12px;
  786. font-family: BarlowBold;
  787. color: #FFFFFF;
  788. opacity: 0.7;
  789. }
  790. span:nth-child(2), span:nth-child(3){
  791. margin-right: 2px;
  792. color: #FFFFFF;
  793. font-size: 13px;
  794. opacity: 1;
  795. }
  796. }
  797. }
  798. }
  799. }
  800. .no-data {
  801. position: relative;
  802. height: 36vh;
  803. span {
  804. position: absolute;
  805. top: 40%;
  806. width: 100%;
  807. text-align: center;
  808. font-size: 16px;
  809. }
  810. }
  811. }
  812. .pr-b1 {
  813. .pro-name {
  814. width: 80%;
  815. display: block;
  816. font-family: YSBTH;
  817. font-size: 20px;
  818. color: #f8ec95;
  819. line-height: 26px;
  820. }
  821. .part1-item {
  822. width: 80%;
  823. display: flex;
  824. align-items: center;
  825. // &:not(:last-child) {
  826. // margin-bottom: 15px;
  827. // }
  828. &>img {
  829. width: 89px;
  830. height: 95px;
  831. }
  832. &>div {
  833. margin-left: 17px;
  834. &>span {
  835. font-size: 20px;
  836. font-style: italic;
  837. color: rgba($color: #EAF2FF, $alpha: 0.85);
  838. }
  839. &>div {
  840. margin-top: 8px;
  841. span:nth-child(1) {
  842. margin-right: 11px;
  843. font-size: 32px;
  844. font-family: BarlowBold;
  845. color: #FFFFFF;
  846. line-height: 32px;
  847. }
  848. span:nth-child(2) {
  849. font-size: 16px;
  850. color: rgba($color: #A6C8FF, $alpha: 0.8);
  851. }
  852. }
  853. }
  854. }
  855. .part2 {
  856. width: 90%;
  857. display: flex;
  858. justify-content: space-between;
  859. margin-top: 10px;
  860. &>div {
  861. width: 140px;
  862. height: 49px;
  863. background: url('../../assets/imgs/page_hdsj/bg-sj-btn.png');
  864. background-size: contain;
  865. cursor: pointer;
  866. text-align: center;
  867. &>span {
  868. font-size: 18px;
  869. font-family: YSBTH;
  870. color: #eee;
  871. line-height: 49px;
  872. }
  873. .text-emp1 {
  874. color: #fcd049;
  875. }
  876. .text-emp2 {
  877. color: #46c6fe;
  878. }
  879. &.highlight {
  880. filter: brightness(130%);
  881. transform: scale(1.1);
  882. }
  883. }
  884. }
  885. }
  886. .pr-b2 {
  887. #chart_fstj {
  888. width: 90%;
  889. height: 20vh;
  890. }
  891. .fstj-list {
  892. // margin-top: 0.5vh;
  893. height: 23vh;
  894. width: 90%;
  895. position: relative;
  896. .fl-btns {
  897. display: flex;
  898. justify-content: flex-end;
  899. align-items: center;
  900. margin-bottom: 10px;
  901. &>i {
  902. display: block;
  903. width: 20px;
  904. height: 20px;
  905. margin-left: 10px;
  906. cursor: pointer;
  907. }
  908. .flb-back {
  909. background: url('@/assets/imgs/page_hdsj/btn-back.png');
  910. background-size: contain;
  911. }
  912. .flb-play {
  913. background: url('@/assets/imgs/page_hdsj/btn-play.png');
  914. background-size: contain;
  915. }
  916. }
  917. .coloumn {
  918. span:nth-child(1) {
  919. width: 30%;
  920. }
  921. span:nth-child(2) {
  922. width: 30%;
  923. }
  924. span:nth-child(3) {
  925. width: 20%;
  926. }
  927. span:nth-child(4) {
  928. width: 20%;
  929. }
  930. }
  931. .el-carousel {
  932. height: calc(100% - 50px);
  933. }
  934. .tc-list {
  935. &>li {
  936. height: 30px;
  937. margin-top: 10px;
  938. cursor: pointer;
  939. &.highlight>span {
  940. color: #f0d60d;
  941. }
  942. }
  943. }
  944. }
  945. }
  946. .pr-b3 {
  947. .prb3-main {
  948. display: flex;
  949. flex-direction: column;
  950. align-items: center;
  951. width: 100%;
  952. // height: 20vh;
  953. // margin: 10px 0 25px;
  954. .prb3-item2 {
  955. width: 85%;
  956. height: 25px;
  957. display: flex;
  958. align-items: center;
  959. margin: 10px 0;
  960. background: url('@/assets/imgs/page_hdsj/bg-wgyj-list.png') no-repeat;
  961. background-size: 100% 100%;
  962. span:nth-child(2) {
  963. display: block;
  964. width: 51%;
  965. font-size: 16px;
  966. font-weight: 700;
  967. font-style: italic;
  968. color: transparent;
  969. background: linear-gradient(0deg, #ACDDFF 0%, #FFFFFF 100%);
  970. -webkit-background-clip: text;
  971. }
  972. span:nth-child(3) {
  973. display: block;
  974. font-size: 16px;
  975. font-family: BarlowBold;
  976. color: rgba($color: #fff, $alpha: 0.6);
  977. }
  978. }
  979. }
  980. }
  981. .pageForDown{
  982. height: 40px;
  983. width: 80%;
  984. margin: 0 auto;
  985. }
  986. }
  987. </style>