团购列表

This commit is contained in:
duan
2024-05-09 15:29:48 +08:00
parent e11d6ffd76
commit a647b6123e
5 changed files with 156 additions and 2 deletions

View File

@@ -0,0 +1,35 @@
<template>
<view>
</view>
</template>
<script>
export default {
onLoad(e) {
this.orderId = e.orderId
this.orderorderInfo()
},
data() {
return {
orderId:"",
listinfo:null
}
},
methods: {
async orderorderInfo() {
let res = await this.api.groupOrderInfoDetail({
orderId: this.orderId
})
if (res.code == 0) {
this.listinfo = res.data
// this.mountedcreateSelectorQuery()
}
},
}
}
</script>
<style>
</style>