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.
37 lines
541 B
37 lines
541 B
<template>
|
|
<view>
|
|
========={{groupCode}}========
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import {getGroupContentByCode} from '@/Utils/groupBuying.js';
|
|
export default {
|
|
data(){
|
|
return{
|
|
groupCode:'',
|
|
}
|
|
},
|
|
onLoad(option){
|
|
if(option.orderKey){
|
|
this.groupCode = option.orderKey;
|
|
this.getGroupContentByCode();
|
|
}
|
|
|
|
},
|
|
methods:{
|
|
getGroupContentByCode(){
|
|
let params={
|
|
groupCode:this.groupCode
|
|
}
|
|
getGroupContentByCode(params).then(res=>{
|
|
|
|
})
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |