parent
4ef145b747
commit
ae0118a9ce
@ -0,0 +1,44 @@ |
|||||||
|
<template> |
||||||
|
<BaseContainer class="exam-link flex"> |
||||||
|
<!-- #ifndef MP-WEIXIN --> |
||||||
|
<NavBar title="考试链接" /> |
||||||
|
<!-- #endif --> |
||||||
|
<web-view :src="src" class="web-view"></web-view> |
||||||
|
</BaseContainer> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
export default { |
||||||
|
data() { |
||||||
|
return { |
||||||
|
src: '', |
||||||
|
}; |
||||||
|
}, |
||||||
|
onLoad({ src }) { |
||||||
|
this.src = decodeURIComponent(src); |
||||||
|
}, |
||||||
|
onReady() { |
||||||
|
// #ifdef APP-PLUS |
||||||
|
const currentWebview = this.$scope.$getAppWebview() |
||||||
|
this.pageTitle = uni.getAppBaseInfo().appName |
||||||
|
setTimeout(function() { |
||||||
|
const top = uni.getSystemInfoSync().statusBarHeight + 44 |
||||||
|
const wv = currentWebview.children()[0] |
||||||
|
wv.setStyle({ |
||||||
|
top |
||||||
|
}) |
||||||
|
}, 100); //如果是页面初始化调用时,需要延时一下 |
||||||
|
// #endif |
||||||
|
|
||||||
|
}, |
||||||
|
}; |
||||||
|
</script> |
||||||
|
|
||||||
|
<style scope lang="scss"> |
||||||
|
.exam-link { |
||||||
|
flex-direction: column; |
||||||
|
.web-view { |
||||||
|
flex: 1; |
||||||
|
} |
||||||
|
} |
||||||
|
</style> |
Loading…
Reference in new issue