团购详情

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",
if (res.code == 0) { success: function (data) {
this.listinfo = res.data let {lat , lng} = data.data
// this.mountedcreateSelectorQuery() let res = _this.api.groupOrderInfoDetail({
id: _this.orderId,
lat,
lng
})
if (res.code == 0) {
_this.listinfo = res.data
// this.mountedcreateSelectorQuery()
}
} }
});
}, },
} }
} }