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.

35 lines
544 B

<template>
<view class="page">
<view class="pageMain" v-if="showPage">
<web-view :src="url"></web-view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
showPage:false,
url:''
}
},
onLoad(options) {
},
onReady() {
this.rq.getData('project/api/Config/getMpweixinConfig').then(res => {
if (res.code == 0) {
this.url = res.data.mpweixin.auto_subscribe_weixin_news_url;
this.showPage = true;
}
})
},
methods: {
},
}
</script>
<style scoped>
</style>