团购列表
This commit is contained in:
35
pages/order/order_groupdetail.vue
Normal file
35
pages/order/order_groupdetail.vue
Normal 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>
|
||||
Reference in New Issue
Block a user