index.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544
  1. <template>
  2. <div class="camera-container">
  3. <div class="left-area">
  4. <cameraTree :selected="selected" :list="listArr" :draggable="true" @detail-node="onDetail" @on-click="onClick">
  5. <template #icon="{ item }">
  6. <template v-if="item.isFolder">
  7. <SvgIcon v-if="item.expanded" size="18" name="file-open" />
  8. <SvgIcon v-else size="18" name="file-close" />
  9. </template>
  10. <treeIcon class="iconfont" :title="item.title" v-else />
  11. </template>
  12. <template #operation="{ type }">
  13. <!-- <i class="iconfont icon-eyeoutlined"></i> -->
  14. <span style="color: #ccc; font-size: 12px">详情</span>
  15. </template>
  16. </cameraTree>
  17. </div>
  18. <div class="right-area" v-if="addrList.length != 0">
  19. <div class="vent-flex-row-wrap" :class="addrList.length == 1 ? 'camera-box1' : 'camera-box'">
  20. <div v-for="(item, index) in addrList" :key="index" class="player-box">
  21. <div class="player-name">{{ item.name }}</div>
  22. <div style="padding-top: 3px">
  23. <template v-if="item.addr.startsWith('rtsp://')">
  24. <video :id="`video${index}`" muted autoplay></video>
  25. <div class="click-box" @dblclick="goFullScreen(`video${index}`)"></div>
  26. </template>
  27. <template v-else>
  28. <div :id="'player' + index"></div>
  29. </template>
  30. </div>
  31. </div>
  32. </div>
  33. <div class="pagination">
  34. <Pagination v-model:current="current" v-model:page-size="pageSize" :total="total" @change="onChange" />
  35. </div>
  36. </div>
  37. <div class="camera-box" v-else>
  38. <Empty />
  39. </div>
  40. </div>
  41. </template>
  42. <script lang="ts" setup>
  43. import { onMounted, onUnmounted, ref, reactive, computed } from 'vue';
  44. import { useRouter } from 'vue-router';
  45. import { Pagination, Empty } from 'ant-design-vue';
  46. import { list, cameraAddr, getCameraDevKind, getDevice, getVentanalyCamera } from './camera.api';
  47. import Player, { I18N } from 'xgplayer';
  48. import ZH from 'xgplayer/es/lang/zh-cn';
  49. import HlsPlugin from 'xgplayer-hls';
  50. import FlvPlugin from 'xgplayer-flv';
  51. import 'xgplayer/dist/index.min.css';
  52. import cameraTree from './common/cameraTree.vue';
  53. import { SvgIcon } from '/@/components/Icon';
  54. import treeIcon from './common/Icon/treeIcon.vue';
  55. //当前选中树节点
  56. let selected = reactive<any>({
  57. id: null,
  58. pid: null,
  59. title: '',
  60. isFolder: false,
  61. });
  62. //tree菜单列表
  63. let listArr = reactive<any[]>([]);
  64. let searchParam = reactive({
  65. devKind: '',
  66. strType: '',
  67. });
  68. I18N.use(ZH);
  69. let router = useRouter(); //路由
  70. const pageSize = ref(4);
  71. const current = ref(1);
  72. const total = ref(0);
  73. const playerList = ref([]);
  74. const webRtcServerList = <any[]>[];
  75. let addrList = ref<{ name: string; addr: string; cameraRate: number; devicekind: string }[]>([]);
  76. async function getCameraDevKindList() {
  77. let res = await getCameraDevKind();
  78. if (res.length != 0) {
  79. listArr.length = 0;
  80. listArr.push({
  81. pid: 'root',
  82. isFolder: true,
  83. expanded: true,
  84. title: '全部',
  85. id: 0,
  86. children: [],
  87. });
  88. res.forEach((el) => {
  89. el.pid = 0;
  90. el.isFolder = true; el.expanded = false; el.title = el.itemText;
  91. el.id = el.subDictId;
  92. el.children = [];
  93. listArr[0].children.push(el);
  94. });
  95. selected.id = listArr[0].id;
  96. selected.pid = listArr[0].pid;
  97. selected.title = listArr[0].title;
  98. selected.isFolder = listArr[0].isFolder;
  99. }
  100. }
  101. //点击目录
  102. async function onClick(node) {
  103. if (selected.title === node.title && selected.id === node.id) return;
  104. current.value = 1;
  105. selected.id = node.id;
  106. selected.pid = node.pid;
  107. selected.title = node.title;
  108. selected.isFolder = node.isFolder;
  109. if (node.pid != 'root') {
  110. if (node.isFolder) {
  111. let types, devicetype;
  112. if (node.itemValue.indexOf('&') != -1) {
  113. types = node.itemValue.substring(node.itemValue.indexOf('&') + 1);
  114. devicetype = node.itemValue.substring(0, node.itemValue.indexOf('&'));
  115. } else {
  116. types = '';
  117. devicetype = '';
  118. }
  119. let res = await getDevice({ ids: types, devicetype: devicetype });
  120. if (res.msgTxt.length != 0) {
  121. res.msgTxt[0].datalist.forEach((el) => {
  122. el.pid = node.id;
  123. el.isFolder = false;
  124. el.title = el.strinstallpos;
  125. el.id = el.deviceID;
  126. });
  127. listArr[0].children.forEach((v) => {
  128. if (v.id == node.id) {
  129. v.children = res.msgTxt[0].datalist;
  130. }
  131. });
  132. }
  133. searchParam.devKind = node.itemValue;
  134. searchParam.strType = '';
  135. await getVideoAddrs();
  136. getVideo();
  137. } else {
  138. await getVideoAddrsSon(node.deviceID);
  139. getVideo();
  140. }
  141. } else {
  142. searchParam.devKind = '';
  143. searchParam.strType = '';
  144. await getVideoAddrs();
  145. getVideo();
  146. }
  147. }
  148. //点击详情跳转
  149. function onDetail(node) {
  150. let str = listArr[0].children.filter((v) => v.id == node.pid)[0].itemValue;
  151. let type = str.indexOf('&') != -1 ? str.substring(0, str.indexOf('&')) : '';
  152. console.log(type, 'type--------');
  153. switch (type) {
  154. case 'pulping': //注浆
  155. router.push('/grout-home');
  156. break;
  157. case 'window': //自动风窗
  158. router.push('/monitorChannel/monitor-window?id=' + node.deviceID);
  159. break;
  160. case 'gate': //自动风门
  161. router.push('/monitorChannel/monitor-gate?id=' + node.deviceID + '&deviceType=' + node.deviceType);
  162. break;
  163. case 'fanlocal': //局部风机
  164. router.push('/monitorChannel/monitor-fanlocal?id=' + node.deviceID + '&deviceType=fanlocal');
  165. break;
  166. case 'fanmain': //主风机
  167. router.push('/monitorChannel/monitor-fanmain?id=' + node.deviceID);
  168. break;
  169. case 'forcFan': //压风机
  170. router.push('/forcFan/home');
  171. break;
  172. case 'pump': //瓦斯抽采泵
  173. router.push('/monitorChannel/gasPump-home');
  174. break;
  175. case 'nitrogen': //制氮
  176. router.push('/nitrogen-home');
  177. break;
  178. }
  179. }
  180. async function getVideoAddrs() {
  181. clearCamera();
  182. playerList.value = [];
  183. let paramKind = searchParam.devKind.substring(0, searchParam.devKind.indexOf('&'));
  184. let res = await list({ devKind: paramKind, strType: searchParam.strType, pageSize: pageSize.value, pageNo: current.value });
  185. total.value = res['total'] || 0;
  186. if (res.records.length != 0) {
  187. const cameraList = <{ name: string; addr: string; cameraRate: number; devicekind: string }[]>[];
  188. const cameras = res.records;
  189. for (let i = 0; i < cameras.length; i++) {
  190. const item = cameras[i];
  191. if (item['devicekind'] === 'toHKRtsp' || item['devicekind'] === 'toHKHLs' || item['devicekind'] === 'HLL') {
  192. // 从海康平台接口获取视频流
  193. const videoType = item['devicekind'] === 'toHKRtsp' ? 'rtsp' : '';
  194. try {
  195. const data = await cameraAddr({ cameraCode: item['addr'], videoType });
  196. if (data && data['url']) {
  197. cameraList.push({ name: item['name'], addr: data['url'], cameraRate: item['cameraRate'], devicekind: item['devicekind'] });
  198. }
  199. // cameraList.push({
  200. // name: item['name'],
  201. // // addr: 'http://219.151.31.38/liveplay-kk.rtxapp.com/live/program/live/hnwshd/4000000/mnf.m3u8'
  202. // addr: 'https://demo.unified-streaming.com/k8s/features/stable/video/tears-of-steel/tears-of-steel.mp4/.m3u8',
  203. // });
  204. } catch (error) { }
  205. } else {
  206. if (item['addr'].includes('0.0.0.0')) {
  207. item['addr'] = item['addr'].replace('0.0.0.0', window.location.hostname);
  208. }
  209. cameraList.push({ name: item['name'], addr: item['addr'], cameraRate: item['cameraRate'], devicekind: item['devicekind'] });
  210. }
  211. }
  212. addrList.value = cameraList;
  213. console.log(addrList.value, ' addrList.value-------------');
  214. }
  215. }
  216. async function getVideoAddrsSon(Id) {
  217. clearCamera();
  218. playerList.value = [];
  219. let res = await getVentanalyCamera({ deviceid: Id });
  220. if (res.records.length != 0) {
  221. const cameraList = <{ name: string; addr: string; cameraRate: number; devicekind: string }[]>[];
  222. const cameras = res.records;
  223. for (let i = 0; i < cameras.length; i++) {
  224. const item = cameras[i];
  225. if (item['devicekind'] === 'toHKRtsp' || item['devicekind'] === 'toHKHLs' || item['devicekind'] === 'HLL') {
  226. // 从海康平台接口获取视频流
  227. const videoType = item['devicekind'] === 'toHKRtsp' ? 'rtsp' : '';
  228. try {
  229. const data = await cameraAddr({ cameraCode: item['addr'], videoType });
  230. if (data && data['url']) {
  231. cameraList.push({ name: item['name'], addr: data['url'], cameraRate: item['cameraRate'], devicekind: item['devicekind'] });
  232. }
  233. // cameraList.push({
  234. // name: item['name'],
  235. // // addr: 'http://219.151.31.38/liveplay-kk.rtxapp.com/live/program/live/hnwshd/4000000/mnf.m3u8'
  236. // addr: 'https://demo.unified-streaming.com/k8s/features/stable/video/tears-of-steel/tears-of-steel.mp4/.m3u8',
  237. // });
  238. } catch (error) { }
  239. } else {
  240. if (item['addr'].includes('0.0.0.0')) {
  241. item['addr'] = item['addr'].replace('0.0.0.0', window.location.hostname);
  242. }
  243. cameraList.push({ name: item['name'], addr: item['addr'], cameraRate: item['cameraRate'], devicekind: item['devicekind'] });
  244. }
  245. }
  246. addrList.value = cameraList;
  247. }
  248. }
  249. async function onChange(page) {
  250. current.value = page;
  251. await getVideoAddrs();
  252. getVideo();
  253. }
  254. function getVideo() {
  255. const ip = VUE_APP_URL.webRtcUrl;
  256. for (let i = 0; i < addrList.value.length; i++) {
  257. const item = addrList.value[i];
  258. if (item.addr.startsWith('rtsp://')) {
  259. const dom = document.getElementById('video' + i) as HTMLVideoElement;
  260. dom.muted = true;
  261. dom.volume = 0;
  262. const webRtcServer = new window['WebRtcStreamer'](dom, location.protocol + ip);
  263. webRtcServerList.push(webRtcServer);
  264. webRtcServer.connect(item.addr);
  265. } else {
  266. setNoRtspVideo('player' + i, item.addr, item.cameraRate, item.devicekind);
  267. }
  268. }
  269. }
  270. function setNoRtspVideo(id, videoAddr, cameraRate, devicekind) {
  271. debugger;
  272. const fileExtension = videoAddr.split('.').pop();
  273. if (fileExtension === 'flv' || devicekind == 'flv') {
  274. const player = new Player({
  275. lang: 'zh',
  276. id: id,
  277. url: videoAddr,
  278. width: 589,
  279. height: 330,
  280. poster: '/src/assets/images/vent/noSinge.png',
  281. plugins: [FlvPlugin],
  282. fluid: true,
  283. autoplay: true,
  284. isLive: true,
  285. playsinline: true,
  286. screenShot: true,
  287. whitelist: [''],
  288. ignores: ['time', 'progress', 'play', 'i18n', 'volume', 'fullscreen', 'screenShot', 'playbackRate'],
  289. closeVideoClick: true,
  290. customConfig: {
  291. isClickPlayBack: false,
  292. },
  293. defaultPlaybackRate: cameraRate || 1,
  294. controls: false,
  295. flv: {
  296. retryCount: 3, // 重试 3 次,默认值
  297. retryDelay: 1000, // 每次重试间隔 1 秒,默认值
  298. loadTimeout: 10000, // 请求超时时间为 10 秒,默认值
  299. fetchOptions: {
  300. // 该参数会透传给 fetch,默认值为 undefined
  301. mode: 'cors',
  302. },
  303. targetLatency: 10, // 直播目标延迟,默认 10 秒
  304. maxLatency: 20, // 直播允许的最大延迟,默认 20 秒
  305. disconnectTime: 10, // 直播断流时间,默认 0 秒,(独立使用时等于 maxLatency)
  306. maxJumpDistance: 10,
  307. },
  308. });
  309. playerList.value.push(player);
  310. }
  311. if (fileExtension === 'm3u8' || devicekind == 'm3u8') {
  312. let player;
  313. if (document.createElement('video').canPlayType('application/vnd.apple.mpegurl')) {
  314. // 原生支持 hls 播放
  315. player = new Player({
  316. lang: 'zh',
  317. id: id,
  318. url: videoAddr,
  319. width: 589,
  320. height: 330,
  321. isLive: true,
  322. autoplay: true,
  323. autoplayMuted: true,
  324. cors: true,
  325. ignores: ['time', 'progress', 'play', 'i18n', 'volume', 'fullscreen', 'screenShot', 'playbackRate'],
  326. poster: '/src/assets/images/vent/noSinge.png',
  327. defaultPlaybackRate: cameraRate || 1,
  328. controls: false,
  329. hls: {
  330. retryCount: 3, // 重试 3 次,默认值
  331. retryDelay: 1000, // 每次重试间隔 1 秒,默认值
  332. loadTimeout: 10000, // 请求超时时间为 10 秒,默认值
  333. fetchOptions: {
  334. // 该参数会透传给 fetch,默认值为 undefined
  335. mode: 'cors',
  336. },
  337. targetLatency: 10, // 直播目标延迟,默认 10 秒
  338. maxLatency: 20, // 直播允许的最大延迟,默认 20 秒
  339. disconnectTime: 10, // 直播断流时间,默认 0 秒,(独立使用时等于 maxLatency)
  340. maxJumpDistance: 10,
  341. },
  342. });
  343. } else if (HlsPlugin.isSupported()) {
  344. // 第一步
  345. player = new Player({
  346. lang: 'zh',
  347. id: id,
  348. url: videoAddr,
  349. width: 589,
  350. height: 330,
  351. isLive: true,
  352. autoplay: true,
  353. autoplayMuted: true,
  354. plugins: [HlsPlugin], // 第二步
  355. poster: '/src/assets/images/vent/noSinge.png',
  356. ignores: ['time', 'progress', 'play', 'i18n', 'volume', 'fullscreen', 'screenShot', 'playbackRate'],
  357. defaultPlaybackRate: cameraRate || 1,
  358. controls: false,
  359. hls: {
  360. retryCount: 3, // 重试 3 次,默认值
  361. retryDelay: 1000, // 每次重试间隔 1 秒,默认值
  362. loadTimeout: 10000, // 请求超时时间为 10 秒,默认值
  363. fetchOptions: {
  364. // 该参数会透传给 fetch,默认值为 undefined
  365. mode: 'cors',
  366. },
  367. targetLatency: 10, // 直播目标延迟,默认 10 秒
  368. maxLatency: 20, // 直播允许的最大延迟,默认 20 秒
  369. disconnectTime: 10, // 直播断流时间,默认 0 秒,(独立使用时等于 maxLatency)
  370. maxJumpDistance: 10,
  371. },
  372. });
  373. }
  374. playerList.value.push(player);
  375. }
  376. }
  377. function goFullScreen(domId) {
  378. const videoDom = document.getElementById(domId) as HTMLVideoElement;
  379. if (videoDom.requestFullscreen) {
  380. videoDom.requestFullscreen();
  381. videoDom.play();
  382. } else if (videoDom.mozRequestFullscreen) {
  383. videoDom.mozRequestFullscreen();
  384. videoDom.play();
  385. } else if (videoDom.webkitRequestFullscreen) {
  386. videoDom.webkitRequestFullscreen();
  387. videoDom.play();
  388. } else if (videoDom.msRequestFullscreen) {
  389. videoDom.msRequestFullscreen();
  390. videoDom.play();
  391. }
  392. }
  393. function clearCamera() {
  394. const num = webRtcServerList.length;
  395. for (let i = 0; i < num; i++) {
  396. if (webRtcServerList[i]) {
  397. webRtcServerList[i].disconnect();
  398. webRtcServerList[i] = null;
  399. }
  400. }
  401. for (let i = 0; i < playerList.value.length; i++) {
  402. const player = playerList.value[i];
  403. if (player.destroy) player.destroy();
  404. }
  405. playerList.value = [];
  406. }
  407. onMounted(async () => {
  408. await getCameraDevKindList();
  409. await getVideoAddrs();
  410. getVideo();
  411. });
  412. onUnmounted(() => {
  413. clearCamera();
  414. });
  415. </script>
  416. <style lang="less">
  417. @import '/@/design/theme.less';
  418. @{theme-deepblue} {
  419. .camera-container {
  420. --image-camera_bg: url('/@/assets/images/themify/deepblue/vent/camera_bg.png');
  421. }
  422. }
  423. .camera-container {
  424. --image-camera_bg: url('/@/assets/images/vent/camera_bg.png');
  425. position: relative;
  426. width: calc(100% - 30px);
  427. height: calc(100% - 84px);
  428. display: flex;
  429. margin: 15px;
  430. justify-content: space-between;
  431. align-items: center;
  432. .left-area {
  433. width: 15%;
  434. height: 100%;
  435. padding: 20px;
  436. border: 1px solid #99e8ff66;
  437. background: #27546e1a;
  438. box-shadow: 0px 0px 20px 7px rgba(145, 233, 254, 0.7) inset;
  439. -moz-box-shadow: 0px 0px 20px 7px rgba(145, 233, 254, 0.7) inset;
  440. -webkit-box-shadow: 0px 0px 50px 1px rgb(149 235 255 / 5%) inset;
  441. box-sizing: border-box;
  442. // lxh
  443. .iconfont {
  444. color: #fff;
  445. font-size: 12px;
  446. margin-left: 5px;
  447. }
  448. }
  449. .right-area {
  450. width: 85%;
  451. height: 100%;
  452. padding: 0px 0px 0px 15px;
  453. box-sizing: border-box;
  454. .camera-box {
  455. width: 100%;
  456. height: calc(100% - 60px);
  457. display: flex;
  458. justify-content: space-around;
  459. align-items: flex-start;
  460. flex-wrap: wrap;
  461. overflow-y: auto;
  462. }
  463. .camera-box1 {
  464. width: 100%;
  465. height: calc(100% - 60px);
  466. display: flex;
  467. justify-content: flex-start;
  468. align-items: flex-start;
  469. flex-wrap: wrap;
  470. overflow-y: auto;
  471. }
  472. .player-box {
  473. width: 626px;
  474. height: 370px;
  475. padding: 17px 18px;
  476. background: var(--image-camera_bg);
  477. background-size: 100% 100%;
  478. position: relative;
  479. margin: 10px;
  480. .player-name {
  481. font-size: 14px;
  482. position: absolute;
  483. top: 35px;
  484. right: 15px;
  485. color: #fff;
  486. background-color: hsla(0, 0%, 50%, 0.5);
  487. border-radius: 2px;
  488. padding: 1px 5px;
  489. max-width: 120px;
  490. overflow: hidden;
  491. white-space: nowrap;
  492. text-overflow: ellipsis;
  493. z-index: 999;
  494. }
  495. .click-box {
  496. position: absolute;
  497. width: 100%;
  498. height: 100%;
  499. top: 0;
  500. left: 0;
  501. }
  502. }
  503. .pagination {
  504. width: 100%;
  505. height: 60px;
  506. display: flex;
  507. justify-content: center;
  508. align-items: center;
  509. }
  510. }
  511. }
  512. :deep(video) {
  513. width: 100% !important;
  514. height: 100% !important;
  515. object-fit: cover !important;
  516. }
  517. </style>