积分兑换

This commit is contained in:
liuye
2023-04-13 16:26:56 +08:00
parent fe9ff22748
commit 94d54f85fd
6 changed files with 270 additions and 124 deletions

View File

@@ -0,0 +1,20 @@
<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>