WechatOwnerService/pages/mall/mall.vue
2021-06-03 00:52:02 +08:00

27 lines
471 B
Vue
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view>
 <web-view ref="webview"
        src="http://mallapp.homecommunity.cn/#/?hcCommunityId=7020181217000001&hcCode=123456789"  @message="reciveMessage"></web-view>
</view>
</template>
<script>
import conf from '../../conf/config.js'
export default {
data() {
return {
url:conf.mallUrl
}
},
methods: {
reciveMessage:function(event){
console.log('商城回传的参数',event);
}
}
}
</script>
<style>
</style>