You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
520 B
43 lines
520 B
<template>
|
|
<view>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
weixin
|
|
} from '@/utils/weixin.js'
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
getProductDetail(id) {
|
|
weixin.request({
|
|
newUrl: true,
|
|
api: '/api/member/get-confinement-product-item',
|
|
data: {
|
|
id
|
|
},
|
|
utilSuccess: (res) => {
|
|
console.log(res);
|
|
}
|
|
})
|
|
}
|
|
},
|
|
computed: {
|
|
|
|
},
|
|
onLoad(option) {
|
|
this.getProductDetail(option.id)
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
</style>
|