47 lines
635 B
Vue
47 lines
635 B
Vue
<template>
|
|
<div class="app-container print-work">
|
|
<iframe
|
|
:src="'http://192.168.42.57:8080/QinHuangDao'"
|
|
style="width: 100%;height: 80vh;"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
props: {
|
|
id: {
|
|
type: String,
|
|
default() {
|
|
return ''
|
|
}
|
|
},
|
|
type: {
|
|
type: String,
|
|
default() {
|
|
return ''
|
|
}
|
|
}
|
|
},
|
|
data() {
|
|
return {}
|
|
},
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
#main4{
|
|
width: 340px;
|
|
height: 380px;
|
|
}
|
|
#main5{
|
|
width: 340px;
|
|
height: 380px;
|
|
}
|
|
#main6{
|
|
width: 340px;
|
|
height: 380px;
|
|
}
|
|
</style>
|