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

33 lines
498 B
Vue

1 year ago
<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>