<template>
<view class="page-container">
<web-view :src="src"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
src: '',
};
},
onLoad(option) {
console.log(option, 'option------------------');
this.src=option.url;
// 网约车 基础信息 默认跳转地
},
};
</script>
<style lang="scss" scoped>
</style>