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.
 
 
 
 
xuan-pay-cweb/subpackages/groupBuyingConfiguration/groupVerify/groupVerify.vue

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>