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.
 
 
 
 

53 lines
853 B

<template>
<view>
<web-view :webview-styles="webviewStyles" :src="url"></web-view>
</view>
</template>
<script>
export default {
onShareAppMessage(res) {
return {
title: '',
path: '/pages/index/index'
};
},
data() {
return {
url: '',
webviewStyles: {
progress: {
color: '#FF3333'
}
}
};
},
onLoad(e) {
console.log(e)
if (e.title) {
uni.setNavigationBarTitle({
title: e.title
});
}
if (e.url) {
let uurl = this.$queue.getData('rechargeUrl');
if (uurl) {
console.log(uurl)
this.url = uurl;
} else {
this.url = e.url;
}
} else {
uni.navigateBack();
}
},
onPullDownRefresh: function() {
uni.stopPullDownRefresh(); // 停止刷新
},
methods: {}
};
</script>
<style>
@import '../../static/css/index.css';
</style>