groutHome.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525
  1. <template>
  2. <div class="monitor-container">
  3. <div class="lr left-box">
  4. <div class="monitor-info item-box">
  5. <ventBox1>
  6. <template #title>
  7. <div>设备信息监测</div>
  8. </template>
  9. <template #container v-if="dataSource.length > 0 ">
  10. <div v-for="(monitor, key) in deviceMonitorData" :key="key" class="monitor-item">
  11. <div class="item-title">{{ monitor.text }}</div>
  12. <div class="item-val">{{ key.startsWith('1#') ? dataSource[0][key.split('_')[1]]||'-' : key.startsWith('2#') ? dataSource[1][key.split('_')[1]]||'-' : (dataSource[0][key] || '-') }}</div>
  13. <div class="item-unit">{{ monitor.unit }}</div>
  14. </div>
  15. </template>
  16. </ventBox1>
  17. </div>
  18. <div class="warning-group">
  19. <ventBox1>
  20. <template #title>
  21. <div>近一月报警情况</div>
  22. </template>
  23. <template #container>
  24. <dv-scroll-board ref="scrollBoard" :config="warningConfig"
  25. style="width: 100%; height: 240px; overflow-y: auto; " />
  26. </template>
  27. </ventBox1>
  28. </div>
  29. </div>
  30. <div class="lr right-box">
  31. <div class="control-container item-box">
  32. <ventBox1>
  33. <template #title>
  34. <div>设备设施集中控制</div>
  35. </template>
  36. <template #container >
  37. <div class="control-group">
  38. <div class="control-item" v-for="(item, key) in deviceControlData" :key="key">
  39. <div class="control-item-title">{{ item }}</div>
  40. <div class="control-item-state" v-if="!key.startsWith('2#')">
  41. <a-switch v-model="dataSource[0][key.split('_')[1]]" size="small" checked-children="开启"
  42. un-checked-children="关闭"
  43. @change="handlerDevice(dataSource[0][key.split('_')[1]])">
  44. </a-switch>
  45. </div>
  46. <div class="control-item-state" v-else>
  47. <a-switch v-model="dataSource[1][key.split('_')[1]]" size="small" checked-children="开启"
  48. un-checked-children="关闭"
  49. @change="handlerDevice(dataSource[1][key.split('_')[1]])">
  50. </a-switch>
  51. </div>
  52. </div>
  53. </div>
  54. <a-divider style="height: 1px; background-color: #d7d7d755" />
  55. <div class="control-btn-group">
  56. <div class="control-left-box">
  57. <div class="btn-box">
  58. <span @click="handlerDevice({ remote : true})">远程</span>
  59. <span @click="handlerDevice({ remote: false })">就地</span>
  60. </div>
  61. <div class="icon-box" :class="{'remote-icon-box': true}">
  62. <div class="icon"></div>
  63. </div>
  64. </div>
  65. <div class="control-right-box">
  66. <a-button class="btn" type="primary" @click="handlerDevice({run: true})">一键启动</a-button>
  67. <a-button type="primary" danger @click="handlerDevice({ run: false })">紧急停止</a-button>
  68. </div>
  69. </div>
  70. <a-divider style="height: 1px; background-color: #d7d7d755" />
  71. <div class="parameter-btn-group">
  72. <a-button type="primary" @click="openModal('RunParameterModal')">参数设置</a-button>
  73. <a-button type="primary" @click="openModal('WarningParameterModal')">报警设置</a-button>
  74. </div>
  75. </template>
  76. </ventBox1>
  77. </div>
  78. <div class="control-container item-box echarts-box">
  79. <ventBox1>
  80. <template #title>
  81. <div>设备实时监测曲线</div>
  82. </template>
  83. <template #container >
  84. <div class="btn-group">
  85. <span class="active">注浆流量</span>
  86. <span>注浆压力</span>
  87. <span>水舱液位</span>
  88. <span>注浆筒液位</span>
  89. </div>
  90. <div class="item-box echarts-container">
  91. <div class="echarts-group">
  92. <div class="echarts-item">
  93. <BarAndLineCustom xAxisPropType="readTime" :chartData="dataSource" height="240px" :propTypeArr="['flowRate']" :option="zhujiangOption" />
  94. </div>
  95. <div class="echarts-item">
  96. <BarAndLineCustom xAxisPropType="readTime" :chartData="dataSource" height="240px" :propTypeArr="['pressure']" :option="yaliOption" />
  97. </div>
  98. <div class="echarts-item">
  99. <BarAndLineCustom xAxisPropType="readTime" :chartData="dataSource" height="240px" :propTypeArr="['flowRate']" :option="zhujiangOption" />
  100. </div>
  101. <div class="echarts-item">
  102. <BarAndLineCustom xAxisPropType="readTime" :chartData="dataSource" height="240px" :propTypeArr="['flowRate']" :option="zhujiangOption" />
  103. </div>
  104. </div>
  105. </div>
  106. </template>
  107. </ventBox1>
  108. </div>
  109. <!-- <div class="item-box" >
  110. <LivePlayer id="fm-player1" style="height: 250px;" ref="player1" :videoUrl="flvURL1()" muted live loading controls />
  111. </div> -->
  112. </div>
  113. </div>
  114. <component v-if="modalVisible" :is="currentModal" v-model:visible="modalVisible" />
  115. </template>
  116. <script setup lang="ts">
  117. import { onBeforeMount, ref, onMounted, onUnmounted, shallowRef, defineProps, ComponentOptions, reactive } from 'vue';
  118. import { mountedThree, destroy, setModelType } from '../grout.threejs';
  119. import { ScrollBoard as DvScrollBoard } from '@kjgl77/datav-vue3';
  120. import { SvgIcon } from '/@/components/Icon';
  121. import ventBox1 from '/@/components/vent/ventBox1.vue';
  122. import RunParameterModal from './runParameter.modal.vue'
  123. import WarningParameterModal from './warningParameter.modal.vue'
  124. import { warningConfig, zhujiangOption, yaliOption } from '../grout.data'
  125. import { list } from '../grout.api';
  126. import LivePlayer from '@liveqing/liveplayer-v3';
  127. import BarAndLineCustom from '/@/components/chart/BarAndLineCustom.vue';
  128. const props = defineProps({
  129. deviceId: {
  130. type: String,
  131. require: true
  132. }
  133. })
  134. const left: string = "0px";
  135. const currentModal = shallowRef<Nullable<ComponentOptions>>(null); //模态框
  136. const modalVisible = ref<Boolean>(false); // 模态框是否可见
  137. const loading = ref(false);
  138. // 默认初始是第一行
  139. const dataSource = ref([
  140. {
  141. waterSupply : '-',
  142. beltVla: '-',
  143. density: '-',
  144. pressure: '-',
  145. liquidLevel: '-',
  146. flowRate: '-',
  147. readTime: '',
  148. },
  149. {
  150. waterSupply: '-',
  151. beltVla: '-',
  152. density: '-',
  153. pressure: '-',
  154. liquidLevel: '-',
  155. flowRate: '-',
  156. readTime: '',
  157. }
  158. ]); //dusting
  159. const deviceMonitorData = {
  160. '1#_waterSupply': { text: '1#制浆机供水流量', unit: 'm³/h' },
  161. '1#_beltVla': { text: '1#皮带秤数值', unit: 'T' },
  162. '2#_waterSupply': { text: '2#制浆机供水流量', unit: 'm³/h' },
  163. '2#_beltVla': { text: '2#皮带秤数值', unit: 'T' },
  164. density: {text: '密度' , unit: 'g/cm'},
  165. pressure: { text: '压力', unit: 'MPa' },
  166. liquidLevel: { text: '缓冲池液位', unit: 'm' },
  167. flowRate: { text: '注浆流量', unit: 'm³/h' },
  168. }
  169. const deviceControlData = {
  170. '1#_waterPump': '1#清水泵',
  171. '1#_groutingPump': '1#注浆泵',
  172. '1#_pulpingMachine': '1#制浆机',
  173. '2#_waterPump': '2#清水泵',
  174. '2#_groutingPump': '2#注浆泵',
  175. '2#_pulpingMachine': '2#制浆机',
  176. 'liquidLevelProtect ':'液位保护'
  177. }
  178. const flvURL1 = () => {
  179. return `https://sf1-hscdn-tos.pstatp.com/obj/media-fe/xgplayer_doc_video/flv/xgplayer-demo-360p.flv`;
  180. // return ''
  181. };
  182. const openModal = (modalName) => {
  183. modalVisible.value = true
  184. if(modalName == 'RunParameterModal'){
  185. currentModal.value = RunParameterModal
  186. }else{
  187. currentModal.value = WarningParameterModal
  188. }
  189. }
  190. // https获取监测数据
  191. let timer: null | NodeJS.Timeout = null;
  192. function getMonitor() {
  193. if (Object.prototype.toString.call(timer) === '[object Null]') {
  194. timer = setTimeout(async () => {
  195. await getDataSource()
  196. if (timer) {
  197. timer = null;
  198. }
  199. await getMonitor();
  200. }, 1000);
  201. }
  202. };
  203. async function getDataSource() {
  204. const res = await list({ devicetype: 'pulping_auto', pagetype: 'normal' });
  205. const dataList = res.msgTxt[0].datalist || [];
  206. dataSource.value = dataList.filter((data) => {
  207. const item = data.readData;
  208. Object.assign(data, item);
  209. return item
  210. });
  211. }
  212. function handlerDevice(param: string | Object) {
  213. }
  214. function controlDevice(flag){
  215. }
  216. onBeforeMount(() => {
  217. });
  218. onMounted(() => {
  219. loading.value = true;
  220. mountedThree().then(async () => {
  221. await setModelType('groutBase');
  222. loading.value = false;
  223. timer = null
  224. await getMonitor()
  225. });
  226. });
  227. onUnmounted(() => {
  228. destroy();
  229. if (timer) {
  230. clearTimeout(timer);
  231. timer = undefined;
  232. }
  233. });
  234. </script>
  235. <style lang="less" scoped>
  236. @import '/@/design/vent/modal.less';
  237. @ventSpace: zxm;
  238. .monitor-container {
  239. width: 100%;
  240. height: 100%;
  241. // height: 550px;
  242. // border: 1px solid #fff;
  243. margin-top: 40px;
  244. display: flex;
  245. justify-content: space-between;
  246. padding: 0 5px;
  247. .lr {
  248. width: 350px;
  249. height: 100%;
  250. display: flex;
  251. flex-direction: column;
  252. margin-top: 10px;
  253. pointer-events: auto;
  254. }
  255. .right-box {
  256. width: 320px;
  257. .control-group{
  258. display: flex;
  259. // justify-content: space-around;
  260. flex-wrap: wrap;
  261. .control-item {
  262. display: flex;
  263. flex-direction: column;
  264. justify-content: center;
  265. align-items: center;
  266. padding: 0 2px;
  267. .control-item-title{
  268. color: #A6DCE9;
  269. position: relative;
  270. top: 5px;
  271. }
  272. .control-item-state{
  273. width: 94px;
  274. height: 47px;
  275. background: url('/@/assets/images/vent/control-switch-bg.png');
  276. display: flex;
  277. justify-content: center;
  278. align-items: center;
  279. color: #fff;
  280. }
  281. .button-box {
  282. position: relative;
  283. padding: 5px;
  284. border: 1px transparent solid;
  285. background-clip: border-box;
  286. border-radius: 5px;
  287. margin-left: 8px;
  288. }
  289. .a-button {
  290. pointer-events: auto;
  291. }
  292. &::v-deep .a-button--mini {
  293. padding: 6px 10px;
  294. }
  295. &::v-deep .a-button--mini.is-round {
  296. padding: 6px 10px;
  297. }
  298. }
  299. }
  300. .control-btn-group{
  301. display: flex;
  302. flex-direction: row;
  303. justify-content: space-between;
  304. .control-left-box{
  305. display: flex;
  306. flex-direction: column;
  307. justify-content: center;
  308. align-items: center;
  309. padding: 0 20px;
  310. .btn-box{
  311. width: 100px;
  312. color: #fff;
  313. display: flex;
  314. justify-content: space-between;
  315. span{
  316. display: inline-block;
  317. padding: 2px 8px;
  318. background: #007099;
  319. border-radius: 4px;
  320. border: 1px solid rgb(125, 230, 249);
  321. cursor: pointer;
  322. &:hover{
  323. background: #005574;
  324. }
  325. }
  326. }
  327. .icon-box{
  328. width: 60px;
  329. height: 60px;
  330. border-radius: 30px;
  331. border: 2px solid #00bcdd;
  332. box-shadow: 0 0 20px #ffffff88;
  333. display: flex;
  334. justify-content: center;
  335. align-items: center;
  336. margin-top: 20px;
  337. .icon{
  338. width: 18px;
  339. height: 18px;
  340. border-radius: 9px;
  341. border: 3px solid #d7f9ff;
  342. position: relative;
  343. background: #00bcdd;
  344. &::before{
  345. position: absolute;
  346. content: '';
  347. width: 2px;
  348. height: 12px;
  349. background-color: #00bcdd;
  350. left: 6px;
  351. top: -16px;
  352. }
  353. &::after{
  354. position: absolute;
  355. content: '';
  356. width: 2px;
  357. height: 12px;
  358. left: 6px;
  359. top: 17px;
  360. background-color: #00d9ff;
  361. }
  362. }
  363. }
  364. .remote-icon-box{
  365. transform: rotate(30deg);
  366. animation: iconRotate 1s linear;
  367. }
  368. .remote-icon-box1{
  369. transform: rotate(-30deg);
  370. animation: iconRotate1 1s linear;
  371. }
  372. @keyframes iconRotate{
  373. from{
  374. transform: rotate(-30deg);
  375. }
  376. to {
  377. transform: rotate(30deg);
  378. }
  379. }
  380. @keyframes iconRotate1{
  381. from {
  382. transform: rotate(30deg);
  383. }
  384. to {
  385. transform: rotate(-30deg);
  386. }
  387. }
  388. }
  389. .control-right-box{
  390. width: 100px;
  391. .btn{
  392. margin-bottom: 30px;
  393. }
  394. }
  395. }
  396. .parameter-btn-group{
  397. display: flex;
  398. justify-content: space-between;
  399. padding: 0 20px;
  400. margin-bottom: 10px;
  401. }
  402. .echarts-box{
  403. width: 100%;
  404. height: 332px;
  405. position: relative;
  406. &:deep(.box-container){
  407. padding: 0px !important;
  408. }
  409. .btn-group{
  410. line-height: 30px;
  411. color: #fff;
  412. text-align: center;
  413. margin-top: 3px;
  414. span{
  415. padding: 3px 5px;
  416. margin: 0 2px;
  417. border-radius: 2px;
  418. background-image: linear-gradient( #32475B, #5b95c7);
  419. border: 1px solid #32475B;
  420. cursor: pointer;
  421. }
  422. .active{
  423. background-image: linear-gradient( #2E4659, #37A7B4);
  424. border-top: 1px solid #3DF6FF;
  425. }
  426. }
  427. .echarts-container{
  428. width: 100%;
  429. height: 240px;
  430. overflow: hidden;
  431. position: relative;
  432. .echarts-group{
  433. display: flex;
  434. flex-direction: row;
  435. position: absolute;
  436. left: v-bind(left);
  437. .echarts-item{
  438. width: 305px;
  439. }
  440. }
  441. }
  442. }
  443. }
  444. .left-box {
  445. margin-top: 30px;
  446. .monitor-item{
  447. display: flex;
  448. color: #fff;
  449. justify-content: space-between;
  450. background-image: linear-gradient(to left, #3df6ff10, #3df6ff00);
  451. margin: 10px 0;
  452. .item-title{
  453. width: 200px;
  454. margin-left: 10px;
  455. }
  456. .item-val{
  457. width: 80px;
  458. color: #00eefffe;
  459. }
  460. .item-unit{
  461. width: 80px;
  462. }
  463. }
  464. }
  465. .item-box{
  466. margin-bottom: 15px;
  467. }
  468. }
  469. :deep(.@{ventSpace}-tabs-tabpane-active) {
  470. overflow: auto;
  471. }
  472. .input-box {
  473. display: flex;
  474. align-items: center;
  475. padding-left: 10px;
  476. .input-title {
  477. color: #73e8fe;
  478. width: auto;
  479. }
  480. .@{ventSpace}-input-number {
  481. border-color: #ffffff88 !important;
  482. }
  483. margin-right: 10px;
  484. }
  485. </style>