fix:更改监控设备端口号
This commit is contained in:
parent
1c4eb04604
commit
d07bdb77d8
|
@ -14,18 +14,18 @@
|
|||
</el-container>
|
||||
</template>
|
||||
<script>
|
||||
import { ThinRenderTargetTexture } from 'babylonjs';
|
||||
import { ThinRenderTargetTexture } from "babylonjs";
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
isZh: true,
|
||||
szIp: '192.168.1.64',
|
||||
ipPort: '80',
|
||||
username: 'admin',
|
||||
password: '9093QQww',
|
||||
iPrototocol: 1,//http协议:1:表示http协议2:表示https协议
|
||||
}
|
||||
szIp: "192.168.1.65",
|
||||
ipPort: "80",
|
||||
username: "admin",
|
||||
password: "9093QQww",
|
||||
iPrototocol: 1, //http协议:1:表示http协议2:表示https协议
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
let that = this;
|
||||
|
@ -36,23 +36,38 @@ export default {
|
|||
// alert('init')
|
||||
WebVideoCtrl.I_InsertOBJECTPlugin("divPlugin");
|
||||
WebVideoCtrl.I_InitPlugin("divPlugin", 500, 500, {
|
||||
iWndowType: 2,//分裂系数N*N
|
||||
bWndFull: true,//双击全屏
|
||||
iWndowType: 2, //分裂系数N*N
|
||||
bWndFull: true, //双击全屏
|
||||
cbInitPluginCompleted: function () {
|
||||
WebVideoCtrl.I_InsertOBJECTPlugin("divPlugin").then(() => {
|
||||
WebVideoCtrl.I_CheckPluginVersion().then((bFlog) => {
|
||||
WebVideoCtrl.I_InsertOBJECTPlugin("divPlugin").then(
|
||||
() => {
|
||||
WebVideoCtrl.I_CheckPluginVersion().then(
|
||||
(bFlog) => {
|
||||
if (bFlog) {
|
||||
alert("插件版本有更新,请双击开发包里的HCWebSDKPlugin.exe升级")
|
||||
alert(
|
||||
"插件版本有更新,请双击开发包里的HCWebSDKPlugin.exe升级"
|
||||
);
|
||||
}
|
||||
}
|
||||
);
|
||||
},
|
||||
() => {
|
||||
alert(
|
||||
"插件初始化失败,请确认是否安装插件,如果未安装,请请双击开发包里的HCWebSDKPlugin.exe安装"
|
||||
);
|
||||
}
|
||||
);
|
||||
},
|
||||
});
|
||||
}, () => {
|
||||
alert("插件初始化失败,请确认是否安装插件,如果未安装,请请双击开发包里的HCWebSDKPlugin.exe安装")
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
Login() {
|
||||
WebVideoCtrl.I_Login(this.szIp, this.iPrototocol, this.ipPort, this.username, this.password, {
|
||||
WebVideoCtrl.I_Login(
|
||||
this.szIp,
|
||||
this.iPrototocol,
|
||||
this.ipPort,
|
||||
this.username,
|
||||
this.password,
|
||||
{
|
||||
async: true,
|
||||
cgi: 1,
|
||||
success: (xmlDoc) => {
|
||||
|
@ -60,24 +75,25 @@ export default {
|
|||
},
|
||||
error: (xmlDoc) => {
|
||||
console.log("登录失败", xmlDoc);
|
||||
},
|
||||
}
|
||||
})
|
||||
);
|
||||
},
|
||||
//预览
|
||||
vShow() {
|
||||
WebVideoCtrl.I_StartRealPlay(this.szIp + '_' + this.ipPort, {
|
||||
WebVideoCtrl.I_StartRealPlay(this.szIp + "_" + this.ipPort, {
|
||||
success: () => {
|
||||
console.log("预览成功");
|
||||
}
|
||||
})
|
||||
},
|
||||
});
|
||||
},
|
||||
//停止单个预览
|
||||
stopShow() {
|
||||
WebVideoCtrl.I_Stop({
|
||||
iWndIndex: 1,//tingzhichuangkou
|
||||
iWndIndex: 1, //tingzhichuangkou
|
||||
success: () => {
|
||||
console.log("停止预览成功");
|
||||
}
|
||||
},
|
||||
});
|
||||
},
|
||||
//停止预览
|
||||
|
@ -86,16 +102,14 @@ export default {
|
|||
},
|
||||
//登出
|
||||
logOut() {
|
||||
WebVideoCtrl.I_Logout(this.szIp + '_' + this.ipPort, {
|
||||
|
||||
})
|
||||
WebVideoCtrl.I_Logout(this.szIp + "_" + this.ipPort, {});
|
||||
},
|
||||
//销毁插件
|
||||
breakdom() {
|
||||
WebVideoCtrl.I_DestroyPlugin();
|
||||
},
|
||||
}
|
||||
}
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style scoped>
|
||||
.plugin {
|
||||
|
|
Loading…
Reference in New Issue