Files
dvcp_v2_wxcp_app/library/project/fd/AppRedemptionPoints/jdH5.vue
2024-10-31 14:34:57 +08:00

20 lines
272 B
Vue

<template>
<div class="jdH5">
<web-view :src="goodsJdUrl"></web-view>
</div>
</template>
<script>
export default {
name: 'jdH5',
data() {
return {
goodsJdUrl: ''
}
},
onLoad(option) {
this.goodsJdUrl = option.goodsJdUrl
},
}
</script>