You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
410 B
23 lines
410 B
1 year ago
|
<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>
|