You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
472 B
Vue

12 months ago
<template>
<view>
<web-view :webview-styles="webviewStyles" :src="links"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
webviewStyles: {
progress: {
color: '#006647'
}
},
links: ''
};
},
onLoad(e) {
this.links = e.links;
console.log(this.links, '......')
uni.setNavigationBarTitle({
title: e.name
});
},
}
</script>
<style lang="scss">
</style>