easypay-app/pages/users/inbound/index.vue

36 lines
597 B
Vue
Raw Normal View History

2024-01-22 14:30:38 +08:00
<template>
<view class="">
2024-02-01 21:14:26 +08:00
<web-view ref="webview" :src="https" @message="handleGetMessage"></web-view>
2024-01-22 14:30:38 +08:00
</view>
</template>
<script>
export default {
data() {
return {
https:''
}
},
onShow() {
},
2024-02-01 21:14:26 +08:00
onLoad() {
this.https = this.$Cache.get('https')
// this.https = decodeURIComponent(option)
console.log(this.https,111)
2024-01-22 14:30:38 +08:00
},
methods: {
handleGetMessage:function(e){
console.log(e)
if(e.detail.data[0].result == 'success'){
2024-02-01 21:14:26 +08:00
uni.redirectTo({
2024-01-22 14:30:38 +08:00
url:'/pages/users/signin/index'
})
}
}
}
}
</script>
<style>
</style>