Commit 3c0feb75 authored by 程恺文's avatar 程恺文

视频组件新增网关配置

parent 00c27473
...@@ -41,6 +41,7 @@ group: ...@@ -41,6 +41,7 @@ group:
| password | 密码 | string | "78b7dc88f9f4bf19c2b1aabfdd995244" | | password | 密码 | string | "78b7dc88f9f4bf19c2b1aabfdd995244" |
| address | 地址 | string | "123638446" | | address | 地址 | string | "123638446" |
| protocol | 协议类型 | string | "萤石 EZOPEN" | | protocol | 协议类型 | string | "萤石 EZOPEN" |
| gateway | 是否走网关 | boolean | false |
| pandavmsHost | pandavms后端主机地址 eg | string | ws://172.16.19.19:8080/ | | pandavmsHost | pandavms后端主机地址 eg | string | ws://172.16.19.19:8080/ |
| useFullUrl | 是否为完整 url,是,则取 fullUrl,否,则会用 pandavmsHost和id 去拼接 | boolean | false | | useFullUrl | 是否为完整 url,是,则取 fullUrl,否,则会用 pandavmsHost和id 去拼接 | boolean | false |
| id | 摄像头唯一标识,一串 GUID | string | "" | | id | 摄像头唯一标识,一串 GUID | string | "" |
......
...@@ -2,7 +2,15 @@ ...@@ -2,7 +2,15 @@
* @Author: 634665781 634665781@qq.com * @Author: 634665781 634665781@qq.com
* @Date: 2023-04-11 13:40:18 * @Date: 2023-04-11 13:40:18
* @LastEditors: 634665781 634665781@qq.com * @LastEditors: 634665781 634665781@qq.com
* @LastEditTime: 2023-04-13 15:40:30 * @LastEditTime: 2023-04-26 10:22:43
* @FilePath: \wisdom-components\packages\base-components\VmsVideo\src\index.jsx
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
*/
/*
* @Author: 634665781 634665781@qq.com
* @Date: 2023-04-11 13:40:18
* @LastEditors: 634665781 634665781@qq.com
* @LastEditTime: 2023-04-26 09:42:48
* @FilePath: \wisdom-components\packages\base-components\TestVideo\src\index.jsx * @FilePath: \wisdom-components\packages\base-components\TestVideo\src\index.jsx
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
*/ */
...@@ -78,10 +86,10 @@ const Video = (props, ref) => { ...@@ -78,10 +86,10 @@ const Video = (props, ref) => {
} else { } else {
getToken(); getToken();
} }
const CommonPath = window?.globalConfig?.hasGateWay?'/PandaCore/GateWay/Video':'';
VideoInfo.url = VideoInfo.useFullUrl VideoInfo.url = VideoInfo.useFullUrl
? VideoInfo.fullUrl ? VideoInfo.fullUrl
: VideoInfo.pandavmsHost + 'jessica/' + VideoInfo.id; : VideoInfo.pandavmsHost+ VideoInfo.gateway?CommonPath:'' + '/jessica/' + VideoInfo.id;
let operateBtns = { let operateBtns = {
fullscreen: true, fullscreen: true,
screenshot: true, screenshot: true,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment