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

33 lines
498 B
Vue
Raw Normal View History

2023-09-25 10:50:49 +00:00
<template>
<view>
<web-view :src="fddUrl" bindmessage="handleMessage"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
fddUrl: ""
};
},
onLoad() {
uni.getStorage({
key: "fddUrl",
success: res => {
this.$nextTick(() => {
this.fddUrl = res.data;
});
}
});
},
methods: {
handleMessage(e) {
console.log(e, "fffffffffffffffffffffffffffff");
}
}
};
</script>
<style>
</style>