uni-Identify-quality/pages/realName/FDDRegister.vue

26 lines
328 B
Vue
Raw Normal View History

2023-09-25 10:50:49 +00:00
<template>
<view>
2023-10-07 08:10:32 +00:00
<web-view :src="fddUrl"></web-view>
2023-09-25 10:50:49 +00:00
</view>
</template>
<script>
export default {
data() {
return {
fddUrl: ""
};
},
onLoad() {
2023-09-26 05:59:35 +00:00
this.fddUrl = uni.getStorageSync("fddUrl");
2023-09-25 10:50:49 +00:00
},
methods: {
2023-10-07 08:10:32 +00:00
reloadPage(url) {
this.fddUrl = url;
2023-09-25 10:50:49 +00:00
}
}
};
</script>
<style>
</style>