You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
547 B
Vue
31 lines
547 B
Vue
8 months ago
|
<template>
|
||
|
<div class="body">
|
||
|
<iframe :src="iframeSrc" style="width: 100%;height: 100%"></iframe>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
|
||
|
import * as TWEEN from '@tweenjs/tween.js'
|
||
|
import {getAgvData, getHourProductionList} from "../../api/board/cs2";
|
||
|
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
iframeSrc:'http://192.168.202.20:8100/#/de-link/gXZdFzxH'
|
||
|
}
|
||
|
},
|
||
|
methods: {},
|
||
|
mounted() {}
|
||
|
}
|
||
|
</script>
|
||
|
<style scoped lang="less">
|
||
|
.body{
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
</style>
|