Files
dvcp_v2_wxcp_app/library/project/fd/AppRedemptionPoints/jdH5.vue

20 lines
272 B
Vue
Raw Normal View History

2023-11-17 09:49:57 +08:00
<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>