团购详情

This commit is contained in:
duan
2024-05-09 15:51:24 +08:00
parent 678c8fa053
commit 5e78e9b69f

View File

@@ -17,14 +17,24 @@
} }
}, },
methods: { methods: {
async orderorderInfo() { orderorderInfo() {
let res = await this.api.groupOrderInfoDetail({ let _this = this
orderId: this.orderId 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) { if (res.code == 0) {
this.listinfo = res.data _this.listinfo = res.data
// this.mountedcreateSelectorQuery() // this.mountedcreateSelectorQuery()
} }
}
});
}, },
} }
} }