lj_zhgd-app/pages/monitor/realTime.vue

28 lines
449 B
Vue

<template>
<view>
<iframe :src="videoUrl + '?playId=' + playId" style="width: 100vw; height: 100vh;" frameBorder="0"></iframe>
</view>
</template>
<script>
export default {
data() {
return {
playId: '',
videoUrl: 'http://192.168.0.7:8000/web-app/video/html/videoDevice.html'
}
},
methods: {
},
onLoad(params) {
console.log(params);
this.playId = params.playId
}
}
</script>
<style lang="scss">
</style>