roamfuding-xcx/page_user/daolan.vue

42 lines
713 B
Vue

<template>
<view class="page">
<u-navbar title=" " :border-bottom="false" :background="bgc" back-icon-color="#262B37" title-color='#262B37'
title-size='36' height='36' id="navbar">
</u-navbar>
<web-view :src="http"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: "#fff",
},
http:''
}
},
onLoad() {
this.getcha()
},
methods: {
getcha(){
this.$u.get(`/system/config/configKey/guide.h5.url`).then(res =>{
if(res.code == 200){
this.http = res.data
}
})
}
}
}
</script>
<style lang="scss">
page {
background: #fff;
}
</style>