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

1 year ago
<template>
<view>
1 year ago
========={{groupCode}}========
1 year ago
</view>
</template>
<script>
1 year ago
import {getGroupContentByCode} from '@/Utils/groupBuying.js';
1 year ago
export default {
data(){
return{
1 year ago
groupCode:'',
1 year ago
}
},
onLoad(option){
1 year ago
if(option.orderKey){
this.groupCode = option.orderKey;
this.getGroupContentByCode();
}
},
methods:{
getGroupContentByCode(){
let params={
groupCode:this.groupCode
}
getGroupContentByCode(params).then(res=>{
})
},
1 year ago
}
}
</script>
<style scoped>
</style>