修改字体

main
coco1986509808 2024-01-05 11:44:11 +08:00
parent 0a993b277f
commit e01a137237
2 changed files with 28 additions and 1 deletions

View File

@ -3,7 +3,7 @@ const t = {}
t.loading = '加载中...'
t.brand = {}
t.brand.lg = '疫情常态下人员精准检测识别系统'
t.brand.lg = '室外图像采集平台'
t.brand.mini = '人像'
t.add = '新增'

View File

@ -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: {
// , iframe100px
calHeight() {
return (window.innerHeight - 100) + 'px';
}
}
}
</script>