main
parent
29a2aa92d0
commit
6ae244338e
@ -0,0 +1,23 @@ |
|||||||
|
<template> |
||||||
|
<view> |
||||||
|
<!-- 动态绑定需要跳转的网址 --> |
||||||
|
<web-view :src="url"></web-view> |
||||||
|
</view> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
export default { |
||||||
|
data() { |
||||||
|
return { |
||||||
|
url: '' |
||||||
|
}; |
||||||
|
}, |
||||||
|
onLoad(item) {//接收上个界面传递来的参数 |
||||||
|
this.url = item.item |
||||||
|
} |
||||||
|
} |
||||||
|
</script> |
||||||
|
|
||||||
|
<style lang="scss"> |
||||||
|
|
||||||
|
</style> |
Loading…
Reference in new issue