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.
uni-Identify-quality/pages/realName/FDDRegister.vue

26 lines
328 B
Vue

<template>
<view>
<web-view :src="fddUrl"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
fddUrl: ""
};
},
onLoad() {
this.fddUrl = uni.getStorageSync("fddUrl");
},
methods: {
reloadPage(url) {
this.fddUrl = url;
}
}
};
</script>
<style>
</style>