修改字体
parent
0a993b277f
commit
e01a137237
|
@ -3,7 +3,7 @@ const t = {}
|
||||||
t.loading = '加载中...'
|
t.loading = '加载中...'
|
||||||
|
|
||||||
t.brand = {}
|
t.brand = {}
|
||||||
t.brand.lg = '疫情常态下人员精准检测识别系统'
|
t.brand.lg = '室外图像采集平台'
|
||||||
t.brand.mini = '人像'
|
t.brand.mini = '人像'
|
||||||
|
|
||||||
t.add = '新增'
|
t.add = '新增'
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
<template>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<!-- <iframe style="width: 800px; height: 600px;" src="../../../../020/index.html"/>-->
|
||||||
|
<!-- <iframe :src="this.txtUrl" width="100%" :style="{height:calHeight}" sandbox></iframe>-->
|
||||||
|
<!-- <iframe src="../../../../public/index.html" width="100%" :style="{height:calHeight}" ></iframe>-->
|
||||||
|
<iframe src="http://www.baidu.com/" width="100%" :style="{height:calHeight}" ></iframe>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
// txtUrl: "../../../../020/index.html",
|
||||||
|
txtUrl:"http://localhost:10101/github.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
//计算属性 , 设置iframe高度为窗口高度少100px
|
||||||
|
calHeight() {
|
||||||
|
return (window.innerHeight - 100) + 'px';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
Loading…
Reference in New Issue