团购详情

This commit is contained in:
duan 2024-05-09 15:51:24 +08:00
parent 678c8fa053
commit 5e78e9b69f
1 changed files with 17 additions and 7 deletions

View File

@ -17,14 +17,24 @@
}
},
methods: {
async orderorderInfo() {
let res = await this.api.groupOrderInfoDetail({
orderId: this.orderId
})
if (res.code == 0) {
this.listinfo = res.data
// this.mountedcreateSelectorQuery()
orderorderInfo() {
let _this = this
uni.getStorage({
key: "getLocationstorage",
success: function (data) {
let {lat , lng} = data.data
let res = _this.api.groupOrderInfoDetail({
id: _this.orderId,
lat,
lng
})
if (res.code == 0) {
_this.listinfo = res.data
// this.mountedcreateSelectorQuery()
}
}
});
},
}
}