36 lines
482 B
Vue
36 lines
482 B
Vue
<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>
|