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

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